I have the following code
window = Tk()
window.lift()
window.attributes("-topmost", True)
This code works in that it displays my Tkinter window above all other windows, but it still only solves half of the problem. While the window is in fact displayed above all other windows, the window does not have focus. Is there a way not only to make the window the frontmost window in Tkinter, but also put focus on it?
See Question&Answers more detail:os