[Tkinter-discuss] Minimizing a Python/Tk application

Metz, Bobby W, WWCS bwmetz at att.com
Sat Sep 16 01:45:51 CEST 2006


use the withdraw() function, e.g.

from Tkinter import *
root = Tk()
root.withdraw()				# Hide the window
root.deiconify()				# Unhide the window

Bobby

-----Original Message-----
From: tkinter-discuss-bounces at python.org
[mailto:tkinter-discuss-bounces at python.org]On Behalf Of Gerardo Juarez
Sent: Friday, September 15, 2006 3:24 PM
To: tkinter-discuss at python.org
Subject: [Tkinter-discuss] Minimizing a Python/Tk application



Hi,

I want a Python/Tk application to minimize itself as soon as it starts
(it 
acts in the background). Is there a way to make this happen?

An another question: how can I make this application appear on the tool
bar, next to the volume control, anti-virus software and similar
applications? I have searched and cannot find anything related.

Thanks in advance,
Gerardo


_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss at python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss


More information about the Tkinter-discuss mailing list