Hi John,
It works. Thank you veyr much.
Cheers,
Q
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, 2006-04-06 at 16:39 -0700, beta wrote:
> Hi John,
>
> It works! thank you vey much.
>
> I have another question. I would very appreciated if you have any clue.
>
> I want the ball STOP whenever mouse is clicked anywhere, then ball KEEP
> MOVING when next mouse click is applied. Thanks.
>
Hi John,
It works! thank you vey much.
I have another question. I would very appreciated if you have any clue.
I want the ball STOP whenever mouse is clicked anywhere, then ball KEEP
MOVING when next mouse click is applied. Thanks.
Regards,
Quoc
--
http://mail.python.org/mailman/listinfo/pyth
Quoc,
the following code, verbatim, works for me:
from Tkinter import *
class Pong(Frame):
def createWidgets(self):
self.QUIT = Button(self, text='QUIT', foreground='red',
command=self.quit)
self.QUIT.pack(side=LEFT, fill=BOTH)
## The playi