addActionTarget = "[String] widget name, [Constant] event,[Method] execute method,[String] widget name, [Constant] event,[Method] execute method" [String] is the name of the widget. Different widget targets can be called [Constant] the event to listen on [Method] the method signature. The method values are placed in the single quotes. Special characters used within the single quotes
has to be encoded using ASCII Table.
The encoding is the following:
Consider the following code snippet:
1
2
6
In the lines 4-5 multiple actions ('mousepressed' and 'action') and multiple targets(button.plus and button) are used.
The actions are separated with a comma. The action that sets the button's label to encoded character '+' is used.