faqts : Computers : Programming : Languages : Python : Tkinter

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

25 of 150 people (17%) answered Yes
Recently 8 of 10 people (80%) answered Yes

Entry

how to make a splash screen before app.mainloop()

Apr 22nd, 2002 07:44
Mark Paschal, fabrice cognet, http://www.pythonware.com/library/tkinter/introduction/toplevel-window-methods.htm#AEN9814 http://www.faqts.com/knowledge_base/view.phtml/aid/5582/fid/264


import Tkinter
main = Tkinter.Tk()
main.withdraw()
splash = Tkinter.Toplevel()
splash.overrideredirect(1)
# Add the image to display to the splash window.
doAppLoading(main)
splash.destroy()
main.deiconify()
main.mainloop()