DISABLE keyword
Disables an object for events (like ON CLICK). Useful to temporarily remove interactivity. It can later be re-enabled with ENABLE.
Syntax
DISABLE object
Parameters
- object: object to enable (required)
Example
DISABLE myImage ' Events like ON CLICK will not work
Go back to list of Keywords.