I’m not sure on how to articulate this…
I have a Tkinter window, and I need to hide half of this window when a button is pressed.
However, I need the left-most side to be hidden, so that the window is now half the size it originally was,
and shows the right half of the original window.
All of Tkinter’s resize functions span from the left side of the window.
Changing the geometry values can only show the left side whilst hiding the right;
I need the inverse.
Does anybody know how to go about doing this?
(I don’t want the user to have to drag the window border,
I need the button to automate it).
Specs:
- Python 2.7.1
- Tkinter
- Windows 7
does this do what you want ?