I\'m using Python 2 with Tkinter and PyObjC, and then I\'m using py2app.
Tkinter
PyObjC
py2app
The program is working fine, but the window starts a
I know this is an old question but I found it weird that no one came up with the simple solution I had,
app = SampleApp() app.attributes('-topmost', True) app.update() app.attributes('-topmost', False) app.mainloop()