Help! This should be a simple thing, but I can’t seem to figure it out:
var curr_index;
for (var i=0; i<total; i++) { //total is an integer defined elsewhere
curr_index.iValue = i;
trace(i);
trace("iValue:" + curr_index.iValue);
}
Returns this in output when executed:
0
iValue:undefined
1
iValue:1
2
iValue:2
3
iValue:3
Why is iValue undefined and not 0? How can I fix this? I know AS2 and FP7+ defaults undeclared variables as NaN or undefined, but I believe it is being set to ‘i’, which should start off as 0.
This is AS2.0 running on FP8 or 9.
Thanks