--- In [email protected], "toofah_gm" <[EMAIL PROTECTED]> wrote: > > It seems to me and my co-workers that the Flex compiler is broken when > it comes to local variable scoping within methods. > > For example: > > for (var i:int=0; i<count; i++) > { > // do something > } > > for (var i:int=0; i<count; i++) > { > // do something else > }
If you were to trace i after the loop, wouldn't you get count+1?

