Re: [Tkinter-discuss] How to eliminate flickers when swapping frames?

2018-03-28 Thread Michael Lange
Hi, On Wed, 28 Mar 2018 13:07:54 -0700 Nam Nguyen wrote: > This happens in Tcl/Tk too. I'll follow up with the Tk folks and come > back if there's any fix or workaround. Sure, I never doubted that it has nothing particularly to do with Tkinter. Regards Michael .-.. .. ...- . .-.. --- -. --

Re: [Tkinter-discuss] How to eliminate flickers when swapping frames?

2018-03-28 Thread Nam Nguyen via Tkinter-discuss
This happens in Tcl/Tk too. I'll follow up with the Tk folks and come back if there's any fix or workaround. #!/usr/bin/env tclsh package require Tk bind . {} {destroy .} wm minsize . 1280 800 frame .f_1 button .f_1.b -text {Frame 1} -command {destroy .} pack .f_1.b -expand true -fill both fram

Re: [Tkinter-discuss] How to eliminate flickers when swapping frames?

2018-03-28 Thread Michael Lange
Hi, On Wed, 28 Mar 2018 01:18:50 + Nam Nguyen wrote: > Is my code out of whack or is it "standard" enough to your seasoned > eyes? Is there any guess as to a fix to this flickering, be it with my > code, or Tk itself? of course you could address the "mouse over widget" issue with something