Go to documentation repository
The Int_var method sets and returns values of global variables of integer type.
Attention!
Method call syntax:
function Int_var (globalvar : String) : int
Globalvar – required argument. The name of the global variable. It takes the following values: type – String, satisfying the rules for the names of the string parameters in the Windows registry.
Note.
Usage examples
To check the method operation in the following test example the value 1 sets to the "2" global variable and then increases per 1 and displays on the script debug window.
if(Event.Action =="RUN") { Int_var(2) = 1; Int_var("2")++; DebugLogString(Int_var("2").toString()); }