ACTION
This element represents an action that can be triggered by the end user with an action button, or by other events, using the ACTION_TRIGGER element.
Attributes brief detailed show all inherited
Name | Description | Default | |
---|---|---|---|
type | The type of action to execute | Empty. | |
name | Displayed named of the action | Empty. | |
comment | Comment about the action | Empty. | |
enabled | activation status of the action | Empty. |
See Attributes Common to All Elements.
Specific Attributes
Examples
The following example creates a button that displays a message box saying "Hello World!":
- <?xml version="1.0" encoding="utf-8" ?>
- <SKIN>
- <ACTION id="my_action" type="DisplayMessageBox" message="Hello World!" />
- <IMAGE_ACTION_BUTTON action_id="my_action" image="my_image" />
- </SKIN>