I'm trying to reenable my Scale
widget in Python tkinter after disabling it but it doesn't work. I tried multiple options but none are working.
s.state(["normal"]);
s.configure(state='normal');
The error that I'm getting is saying:
_tkinter.TclError: unknown option "-state"
Since you use
ttk
widget, the state that you needed to reenable your widget is!disabled
.According to ttk states: