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
Dear All,
I am new with Python. I have question on binding.
I have small pingpong application, I want to change color og the ball
whenever mouse is clicked. I have theBall and changeColor functions. I
don't know how to bind it together. Does anyone know? I am very
appreciate of your help. Thanks.