I am wondering if anyone has experience this problem before:
var total:Number = 2;
for(var init = 0; init < total; init++){
trace(init);
}
//outputs 0, 0
I was experiencing some other “strange” behavior so I’m wondering if my code is getting too long. Maybe I’m running into some kind of limit. Has this happened to anyone else? Anyone know of some fixes? The loop is in a _global function, could that be causing a problem? other than that, the code is on line 4420 of the actionscript coding interface. could that be the problem? I’m totally at a loss here. I guess my best bet is just to keep tinkering with the code!:rocker: