Used to interact with the current script. This object is only available when executing a script, not when executing code using ActExec!
Calls a procedure from the script. The procedure will be executed when the current action is finished.
[Added in Actionaz 3.8.0.]
Script.callProcedure(name);
Contains the next script line to be executed.
Script.nextLine = 1; //Set the next line to be the first line Console.print("The next line is " + Script.nextLine); //Show the next line
This variable can be used as "goto".
Contains the current script line. Read-only. [Added in Actionaz 3.7.0.]
Console.print("The current line is " + Script.line); //Show the current line