[Tkinter-discuss] Minimizing a Python/Tk application

Gerardo Juarez gerardo at computo-industrial.com.mx
Wed Sep 20 18:51:39 CEST 2006


Thanks, it works, but, once the application is minimized I don't have any 
way to access it -to tell it to deiconify itself for example. I doesn't 
use a console window. Is killing it the only option?

Gerardo

On Fri, 15 Sep 2006, Metz, Bobby W, WWCS wrote:

> use the withdraw() function, e.g.
> 
> from Tkinter import *
> root = Tk()
> root.withdraw()				# Hide the window
> root.deiconify()				# Unhide the window
> 
> Bobby
> 



More information about the Tkinter-discuss mailing list