Skip to content

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 areaDescription
Function ListLists action boards and created user functions
Action BoardProgram description of action processing

Opening

  1. Right-click on the UI component that will trigger the event.
  2. Select "Actions" from the context menu.
  3. 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.

OptionDescription
AllowEvent is sent as many times as the same action is executed consecutively.
RestrictRequests that are in the process of sending events are canceled even if the same action is executed consecutively.

Tips