I have a script that relies on ENTER_FRAME event to run every time. I have noticed on some slower computers there can be some lag when a flash movie is playing.

Does ENTER_FRAME run on every frame, even if its on a slow computer? If the flash movie lags, does the ENTER_FRAME event still run and the rendering just try to catch up?

Is running code on ENTER_FRAME a reliable way to execute code every time a frame is entered?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Yep. Every frame, no exceptions. If something is slowing a movie down (either heavy scripts or heavy graphics), it Event.ENTER_FRAME handlers are still being executed before a frame is rendered.

Hence, it's generally a good idea to use a Timer instance with TimerEvent.TIMER, even if it's delay is set to be equal to 'ideal' frame duration for your movie's fps. Because timer handler is not bound to be triggered at exactly uniform rate.

See the following link for more in-depth explanation: The Elastic Racetrack

link|improve this answer
What do you mean, " it's generally a good idea to use a Timer instance with TimerEvent.TIMER" Not sure I follow? – – zechdc Jul 6 '11 at 20:24
2  
I maintain that neither is more accurate. The truly important part is to keep track of delta time between updates and use delta time to update your positions instead of a fixed value "per frame." The delta time is simply "guaranteed" to be roughly the same every time the function runs if it's a timer, whereas in the enter frame loop it's going to be however long it takes for the entire rendering process, which means your delta time can vary wildly. – scriptocalypse Jul 6 '11 at 23:28
3  
It is not generally a good idea to use a Timer with your ideal framerate, because when the real framerate slows down, your Timer handler will be doing iterations whose results will never get drawn to the screen. Do your logic in an EnterFrame handler, and in that handler use getTimer() to check how long it's been since the last frame update, and act accordingly. – fenomas Jul 7 '11 at 7:32
1  
Nox, no matter what you do with timer events or getTimer, you are guaranteed to get a frame event before each redraw, hence that's the correct place to update visuals. Whether to measure the time delta each frame, and what to do with that delta, depends on the content and what your goals are. But there is no value whatsoever to running the logic that updates the screen more or less frequently than the screen gets redrawn. – fenomas Jul 12 '11 at 2:55
1  
Also: Flash Player tries to maintain the amount of calls to TIMER event handler. - this is not correct. At a regular interval (driven by the container, but typically every 10-50ms or so) Flash will check whether the relevant interval has elapsed since the last timer event, and if so issue one. Then it does the same for frames, then it waits another 10-50ms and repeats. It doesn't make any attempt to maintain any particular order of events or event types. – fenomas Jul 12 '11 at 3:31
show 5 more comments
feedback

if you have a framerate set to 30fps, then the event will fire 30 times per second, as long as you don't put a load on the processor, making the frame rate drop. Therefor, if the framerate is fluctuating, you might get more consistent results with a timer Event.

on a side note, be aware that... Using many Event handlers can create performance issues too (if you have too many) Every time it is called, flash has to create an event object at the very least. That means you have memory that needs to be allocated every time the event fires. That memory then needs to be garbage collected at a later time, and the garbage collection will also use resources to execute.

If you have have many movie clips or sprites it could be worthwhile to have one controller that manages all of them, rather than each one having it's own EnterFrame handler.

link|improve this answer
1  
It's true that during heavy loads Timer events may be timed more consistently, but that's not useful - whatever you do in response to those events will not be drawn to the screen until the next frame. For any logic that updates what the user sees, do it in a frame event. (Timers are really more useful for things you want to do less often than the framerate, like every few seconds or minutes.) – fenomas Jul 7 '11 at 7:35
feedback

The general answer to general question.

If you want to improve performance of Flash Player then consider following points,

  1. Do not use strokes unless if it is required. (Strokes are more cpu
    intensive)

  2. Use less gradient colors if possible.

  3. Use optimized bitmaps if any.

  4. Make effective use of addChild(yourObject), addChildAt(yourObject, index), removeChild(yourObject), removeChildAt(index).

  5. Listen to Event.ADDED_TO_STAGE and Event.REMOVED_FROM_STAGE respectively.

  6. Listen to addEventListener(somelistener, somefunction);
    removeEventListener(somelistener, somefunction);

  7. Listen to Event.ACTIVATE and Event.DEACTIVATE.

  8. If objects are loaded externally then make sure to use
    unloadAndStop() to completely remove unnecessary objects from the stage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.