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

Re: why does a disabled button respond to clicks

2007-12-24 Thread Ronnie van 't Westeinde
Hi, Your code doesn't work because you're directly binding to a mouse click event. The proper (high-level) way of configuring which command is called when the button is pressed is simply to configure the button with the command parameter: button.configure(command=some_function) Your application m