I have a simple Python script that loads a GUI (created with Tkinter) when run. I used py2app to convert the Python script into a double-click app for OSX. When the app is clicked, Python executes the script. However, Python (and the GUI) load minimized. The user has to click on the Python icon in the tray in order to bring the GUI into the foreground.
I have tried adding lift() to the main Tkiner window but it doesn't seem to have any effect (I've tried similar methods with no success in bringing the window to the foreground). After the app is double-clicked, it is hard for users to tell what's going on if the GUI doesn't pop-up (especially if they are expecting some kind interface to appear). I am running Lion and didn't have this problem on Leapord.
Any help would be greatly appreciated.
Thanks.
.iconify()or.withdraw()on your window? Either way, try calling.deiconify()on it, that should force it to show. – D K Jan 31 '12 at 22:24