--- In [email protected], "seulaterbuddy" <[EMAIL PROTECTED]> wrote: > > no, lets say count was 10. > > > for (var i:int=0; i < 10; i++) > { > // do something > } > > at the end of the loop I = 9, then it would i++, so at the very end > it would be 10.
You're right, I was thinking <=. But the point _is_ that after the loop, i still has a value and you can still use it if you were to need to.

