III. Event-Handling
Chapter 11. Events
Stuck
Method signature
addActionTarget = "
[String] widget name,
[Constant] event,
[Method] execute method"
[String] is the name of the widget
[Constant] the event to listen on
[Method] the method signature
Examples
A stuck event occurs when a button that is set to sticky (setSticky="true") is toggled down.
To demostrate the stuck event we will create a popup on a stuck event,
and a popdown on an unstuck event
<Widget setShape="0,0,100,80">
<Widget setShape="10,10,80,25" setLabel="Stuck" setName="popup" setBorder="flat" setVisible="false"/>
<Button setShape="10,40,80,25" setLabel="Toggle me" setSticky="true"
addActionTarget="popup,stuck,setVisible='true',popup,unstuck,setVisible='false'"/>
</Widget>
The Widget, 'popup', will execute the method 'setVisible'
On the stuck event we execute popup.setVisible="true", the Widget Pops up
On the unstuck event we execute popup.setVisible="false", the Widget Pops down
To handle more than one event, we append them to the addActionTarget, the addActionTarget accepts parameters in tuples (3,6,9,etc...)
Back
Next