Possible Duplicate:
Make Tkinter jump to the front
I am seeking a solution to put in front plan a Tkinter Window ... But when I launch other programs, they come in first plan, hiding my window.
It's just about creating a Window that gonna be put always in the first plan
I've tried some tricks but nothing works ! Thx !
EDIT:
from Tkinter import *
def quit():
fen = Toplevel(root)
fen.grab_set()
fen.focus_set()
b = Button(fen, text = "Ok", command = root.quit).pack()
root = Tk()
bouton = Button(root, text = "Quit", command=quit).pack()
root.mainloop()
But not working ...