Hi,
how can I return true from a script? I tried
return 1
in the last line of the script but the script returns false though...
![]()
I need this because girder should start a command depending if the script returned true or false
Hi,
how can I return true from a script? I tried
return 1
in the last line of the script but the script returns false though...
![]()
I need this because girder should start a command depending if the script returned true or false
Don\'t get captured...
Set the special variable, result, to 0 (FALSE) or 1(TRUE).
For example:
On the GVMS command that contains this script, you can then choose to execute a command on either or neither the TRUE or FALSE condition.Code:result = (A_Variable == 25)
Mark F
thank you!
Don\'t get captured...