This content has been marked as final.
Show 2 replies
-
1. repeating functions X number of times
Ned Murphy Mar 15, 2009 5:37 PM (in response to BrianatArena)for(var i:uint=0; i<myVariable; i++){
myFunction();
}
If myVariable is cast as a Number, then you may need to use ... i<uint(myVariable); ... -
2. Re: repeating functions X number of times
BrianatArena Mar 16, 2009 1:49 PM (in response to BrianatArena)Thanks Ned. You're always so helpful.


