elfis
11-09-2003, 10:38 AM
Hi !! I am kinda confused about this - cant exchange the var in function and back .. var someVar:Number = 1
this.onEnterFrame = function() {
someVar = 3
};
trace(someVar);//traces "1" ..
so .. how to get "3" to be traced ??!?
tnx !!
this.onEnterFrame = function() {
someVar = 3
};
trace(someVar);//traces "1" ..
so .. how to get "3" to be traced ??!?
tnx !!