I need to change the state of a Button
from DISABLED
to NORMAL
when some event occurs.
The button is currently created in the DISABLED state using the following code:
self.x = Button(self.dialog, text="Download", state=DISABLED,
command=self.download).pack(side=LEFT)
How can I change the state to NORMAL
?