tags:

views:

16

answers:

1

How do I get a Tkinter application to jump to the front. Currently the window appears behind all my other windows and doesn't get focus. Is there some method I should be calling?

A: 

Gui frameworks generally can't do that, because people generally don't want random applications forcing themselves to the front. If you really want to do it, I think you'll have to hook into your OS at a lower level.

Jesse Aldridge