[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: You're welcome. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread Anthony Zeeman
Anthony Zeeman added the comment: Cheryl, thank you for your help. On Sunday, March 3, 2019, 7:02:47 p.m. EST, Cheryl Sabella wrote: Cheryl Sabella added the comment: That's because state isn't an option.  :-) I should have included the link to the ttk scrollbar manpage. https://www

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: That's because state isn't an option. :-) I should have included the link to the ttk scrollbar manpage. https://www.tcl.tk/man/tcl/TkCmd/ttk_scrollbar.htm You'll see on that page that 'state' is listed as a Widget Command and not an Option: STANDARD OPT

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread Anthony Zeeman
Anthony Zeeman added the comment: Cheryl, here is the option listing from the ttk scrollbar configure method: TTK Scrollbar options: {'command': ('command', 'command', 'Command', '', '140274415153928offsetChanged'), 'orient': ('orient', 'orient', 'Orient', , ), 'takefocus': ('takefocus', 'tak

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread Cheryl Sabella
Cheryl Sabella added the comment: You need to use the ttk Scrollbar to access state. The standard tk Scrollbar doesn't have it. Take a look at the doc page for ttk: https://docs.python.org/3/library/tkinter.ttk.html And the New Mexico Institute pages for ttk: https://infohost.nmt.edu/tcc/he

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread SilentGhost
Change by SilentGhost : -- nosy: +gpolo, serhiy.storchaka type: -> enhancement versions: +Python 3.8 ___ Python tracker ___ ___ Pyt

[issue36171] tkinter scrollbar missing 'state' option

2019-03-03 Thread Anthony Zeeman
New submission from Anthony Zeeman : The scrollbars in both tkinter and Tkinter don't have the 'state' option and cannot be disabled. -- components: Tkinter messages: 337041 nosy: azeeman priority: normal severity: normal status: open title: tkinter scrollbar missing 'state' option __