setGlobal

setGlobal ( string varName , string _objectToSet ) : void

Set a global variable with the indicated name. Note the variable must be global in the script (not declared with "def"). Usefull to pass variable between FOR_PAGE, INITIAL and FINAL scripts. Call this function once, after you can use the variable between scripts, its value which be transmited.

See also

getGlobal

Parameters

varName

Name of the variable

_objectToSet (optional)

optional. If nothing is indicated, the variable of the same name is taken in the current script. You must use this parameter for local variables (defined by def)