Re: [flexcoders] sequential addition of sprite objects

2007-01-22 Thread Abdul Qabiz
If you understand how Flash Player works,you would probably do it differently. Flash Player executes the code in the frame before rendering the objects on the frame... You need to use Timer class or frame-event (enterFrame) instead of while-loop here... to update the screen (rendering or

RE: [flexcoders] sequential addition of sprite objects

2007-01-22 Thread Gordon Smith
When you calling a drawing method like drawCircle(), the Flash Player doesn't actually draw at that point. Instead, it adds this drawing command to its vector display list and later, when no ActionScript is executing, it rasterizes this display list into pixels and puts them on the screen. So you