Hello,
Tk.lift doesn't seem to work on OSX (Python 2.5.1).
The below starts OK, but the window is the behind all other windows.
from Tkinter import *
root = Tk()
Button(root, text="OK", command=root.qu it).pack()
root.lift()
root.mainloop()
Any ideas how to tell the window to start as the topmost window?
Thanks,
--
Miki <miki.tebeka@gm ail.com>
Tk.lift doesn't seem to work on OSX (Python 2.5.1).
The below starts OK, but the window is the behind all other windows.
from Tkinter import *
root = Tk()
Button(root, text="OK", command=root.qu it).pack()
root.lift()
root.mainloop()
Any ideas how to tell the window to start as the topmost window?
Thanks,
--
Miki <miki.tebeka@gm ail.com>
Comment