From: Tessa L. <tl...@cs...> - 2001-06-06 17:50:28
|
If you're only interested in a few of the window listener events, you could instead do this: from javax.swing import * def foo(e): print 'foo', e f = JFrame(windowActivated=foo, windowIconified=foo) (depending on what you want to listen for on your windows) --Tessa |