Flash Loop Question
Flash Loop Question
Out of context: Reply #2
- Started
- Last post
- 3 Responses
- st33d0
var i = 0;
while(i < 10){
trace(i++);
}
trace("you've just exited a while loop");
var i = 0;
while(i < 10){
trace(i++);
}
trace("you've just exited a while loop");