InstancesEventListener addEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Adds an event listener.
Parameter | Type | Description |
eventType | string | The event type. |
handler | File JavaScript Function | The event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
void clear ()
Clears all script arguments.
string get (name:
string)
Gets the value of a script argument.
Parameter | Type | Description |
name | string | The name of the script argument. |
Array of ScriptArg getElements ()
Resolves the object specifier, creating an array of object references.
string getValue (name:
string)
Gets the value of a script argument.
Parameter | Type | Description |
name | string | The name of the script argument. |
bool isDefined (name:
string)
Verifies whether the script argument is defined.
Parameter | Type | Description |
name | string | The name of the script argument. |
bool removeEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Removes the event listener.
Parameter | Type | Description |
eventType | string | The registered event type. |
handler | File JavaScript Function | The registered event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
void restore ()
Restores all script arguments.
void save ()
Saves the script arguments.
void set (name:
string, value:
string)
Sets the value of a script argument.
Parameter | Type | Description |
name | string | The name of the script argument. |
value | string | The value. |
void setValue (name:
string, value:
string)
Sets the value of a script argument.
Parameter | Type | Description |
name | string | The name of the script argument. |
value | string | The value. |
string toSource ()
Generates a string which, if executed, will return the ScriptArg.
string toSpecifier ()
Retrieves the object specifier.
|