Re: why does a disabled button respond to clicks

2007-12-25 Thread damonjulian
thank you for the reply..that solves my problem damon -- http://mail.python.org/mailman/listinfo/python-list

why does a disabled button respond to clicks

2007-12-23 Thread damonjulian
hi ,i created 3 buttons such that if button1 is clicked it will disable button2 ,and clicking button3 will restore state of button2 to normal, to my dismay i find that button2 still responds to clicks even if it is greyed out here is the code..am i doing something wrong? is there a way to truly d

Re: disabling button

2007-12-22 Thread damonjulian
if you disable the button it can still respond to clicks? it only greys out.. or is there a problem with my code here? class MyApp: def __init__(self,parent): self.mainframe=Frame(parent) self.mainframe.pack() self.button1=Button(self.mai