/
GLOBAL

GLOBAL

 


Allows creation and/or changing the value of a global script variable that is visible to all scripts of this application instance. If the variable does not exist, it will be created. If a variable by the same name already exists, it's value will be set to the new value.

Usage:
 global varname,varvalue

            or

global "varname,varvalue"


Note: 'varname' and 'varvalue' are separated by commas and must be enclosed by the delimiter (default is double quotes) if they contain spaces. Global variables are visible to all scripts. Changing the value of the variable in one script will be reflected in subsequent uses in another script. If you change the value of the variable in the second script, the first script will be able to pick up the changed value on subsequent uses. This allows you to share data between scripts.

 

Next Command


 

Related content

System Variables - Built-In Script Variables
System Variables - Built-In Script Variables
More like this
Scripting Usage Instructions
Scripting Usage Instructions
More like this
VAR
More like this
LABEL
More like this
Script Syntax and Guidelines
Script Syntax and Guidelines
More like this
Script Commands and Usage
Script Commands and Usage
More like this