![]() |
|
|
+ Search |
![]()
|
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()