Any advice as to how I can call a function once a while loop has been completed?
//while (i
To be more clear, How can I tell when a while loop is no longer true?
var i = 0;while(i < 10){trace(i++);}trace("you've just exited a while loop");
thanks st33d