quote:
Originally posted by Spunky
quote:
Originally posted by Felu
Also either declare truedown as a global variable or remove the var before it in the function
Declare it globally else you won't be able to use it in the OnEvent_Timer function
If you assign a value to a variable inside a function but don't declare it, it becomes a global variable.
I mean like
jscript code:
var globalvar = 1; //Global variable
function test(){
globalvar1 = 1; //Global variable
var localvar2 = 1; //Local to the function test
}