Editor
The editor in which actions are written is called the action editor. The Action Editor consists of a function list and a main program (called the Action Board).
Edit area | Description |
---|---|
Function List | Lists action boards and created user functions |
Action Board | Program description of action processing |
Opening
- Right-click on the UI component that will trigger the event.
- Select
"Actions"
from the context menu. - The action editor will open.
Editing
Actions are described on the action board. Pressing the [Ctrl + Space]
keys while writing code will display candidates. For example, pressing [Ctrl + Space]
followed by $ui. will list the component IDs present in the UI. In addition, "."
followed by [Ctrl + Space]
to list the properties of the component.
Tips
Saving
Click on the "Save"
button in the upper right corner of the Action Editor or press [Ctrl + S]
to save the action.
Return to UI Editor
To return to the UI editor, click the "Close (×)"
button to the right of the "Save"
button.
Multiple Event Transmission
Controls Allow/ Restrict of multiple event transmission of the same action.
Option | Description |
---|---|
Allow | Event is sent as many times as the same action is executed consecutively. |
Restrict | Requests that are in the process of sending events are canceled even if the same action is executed consecutively. |
Tips