Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #41231

Re: Pygame mouse cursor load/unload

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!news.osn.de!diablo2.news.osn.de!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <ian.g.kelly@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status UNSURE 0.217
X-Spam-Level **
X-Spam-Evidence '*H*': 0.58; '*S*': 0.01; 'class,': 0.07; 'throw': 0.09; 'subject:Pygame': 0.16; 'wrote:': 0.17; 'alex': 0.17; 'header:In-Reply-To:1': 0.25; 'message-id:@mail.gmail.com': 0.27; 'subject:/': 0.28; 'position.': 0.30; 'up.': 0.31; 'code': 0.31; 'getting': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'pm,': 0.35; 'continue': 0.35; 'but': 0.36; '12,': 0.36; 'should': 0.36; 'skip:p 20': 0.36; 'why': 0.37; 'rather': 0.37; 'subject:: ': 0.38; 'some': 0.38; 'to:addr:python.org': 0.39; 'list,': 0.39; 'think': 0.40; 'back': 0.62; 'skip:n 10': 0.63; 'results': 0.65; 'quality': 0.69; 'square': 0.75; '2013': 0.84; 'all!': 0.84; 'to:name:python': 0.84; 'draws': 0.91
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=xGzuxpxG/exv/tFP1ui1SQY3Y+WCqYjx6yiMCl2pNdk=; b=HjcoLrz2yQiprwygvrc+24ppCdE2l3kofj124tMC4C5PcvUWZ+U80OALFFcPrFrdcS v8QDzN9ap2X1fm4qfPKedHAU4XT/tJbOzwpD0PCQGsjRk2x3Tpf+IYXZ6F7iBQPZGs6V gzWQtDk3NVpvPwnmNoNXWjuerpddBakWUAqWcXbQRtxlfNiBjxuTbUGmyuot0Da5WfKN Jyxsgin+Z14+32TBn7IOWGRe7Eo5Gef/ZHb+VSCHdH4ebL5WuHKCP08HIPBAJMo3u9lA 3xhfU5qqrVg3jxLcVkkmTRUuz6Y+eUQRdOx4o2B0pzjckHlCByuLQn+LMgXRGb7+JZVy 4QNg==
X-Received by 10.52.177.163 with SMTP id cr3mr6548359vdc.94.1363143683779; Tue, 12 Mar 2013 20:01:23 -0700 (PDT)
MIME-Version 1.0
In-Reply-To <f4a50ed7-bf5c-4214-9a99-42fddaf3a4e4@googlegroups.com>
References <d6374016-8863-4e8b-9ec9-17a826ca2eee@googlegroups.com> <f4a50ed7-bf5c-4214-9a99-42fddaf3a4e4@googlegroups.com>
From Ian Kelly <ian.g.kelly@gmail.com>
Date Tue, 12 Mar 2013 21:00:43 -0600
Subject Re: Pygame mouse cursor load/unload
To Python <python-list@python.org>
Content-Type text/plain; charset=ISO-8859-1
X-Mailman-Approved-At Thu, 14 Mar 2013 15:35:02 +0100
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.3311.1363271703.2939.python-list@python.org> (permalink)
Lines 19
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1363271703 news.xs4all.nl 6945 [2001:888:2000:d::a6]:58337
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:41231

Show key headers only | View raw


On Tue, Mar 12, 2013 at 5:33 PM, Alex Gardner <agardner210@gmail.com> wrote:
> Sorry but im back to square one.  My paddle isn't showing up at all! http://pastebin.com/PB5L8Th0

    paddle_rect.center = pygame.mouse.get_pos()

This updates the paddle position.

    screen.blit(beeper, paddle_rect)

This draws the paddle at that position.

    screen.blit(bpaddle, paddle_rect)

This draws the blank paddle at that same position.  Try to think about
why this results in the paddle not showing up.

If this is for a class, I think you should spend some quality time
with the TA rather than continue to throw non-functional code at this
list, which is clearly getting you nowhere.

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-02 17:56 -0800
  Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-02 20:08 -0700
    Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-02 19:52 -0800
    Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-02 19:52 -0800
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-03 14:04 -0800
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-03 14:09 -0800
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-03 16:47 -0700
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-09 16:20 -0800
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-09 16:25 -0800
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-10 13:23 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-10 15:25 -0700
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-10 19:26 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-11 09:57 -0700
    Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-11 10:00 -0700
      Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-11 10:04 -0700
      Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-11 11:24 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-11 10:33 -0700
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-11 12:01 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-11 13:43 -0700
    Re: Pygame mouse cursor load/unload MRAB <python@mrabarnett.plus.com> - 2013-03-11 20:54 +0000
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-11 15:23 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-12 16:33 -0700
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-12 21:00 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-14 15:16 -0700
    Re: Pygame mouse cursor load/unload Ian Kelly <ian.g.kelly@gmail.com> - 2013-03-14 16:31 -0600
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-14 15:56 -0700
  Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-18 13:24 -0700
    Re: Pygame mouse cursor load/unload Alex Gardner <agardner210@gmail.com> - 2013-03-18 16:05 -0700

csiph-web