From: Tessa L. <tl...@cs...> - 2001-06-06 16:36:31
|
See the documentation on Java Bean properties in the Jython docs: http://www.jython.org/docs/properties.html The Pythonesque way to do it is by putting your event handling code into a method, and setting the event property on the widget itself: def handleChange(event): # whatever tf = TextField(textValueChanged=handleChange) --Tessa |