I'm sorry if I'm being vague in any way as I'm nooby at AS3.0 and stackoverflow.
I simply wanna push the i
variable to add to the variable _bullets
.
var i:int = 0; //initializing the i variable
_bullets.push(i);
//Loops thought all the bullets on stage
for (var i:int = 0; i > _bullets.length; i++)
{
//Some code...
}
The result i wanna achieve is that the for-loop now has something to loop through. If more information is needed I will do my best to provide it.