10.12. Order of ExecutionSome movies have code dispersed across multiple timelines and multiple clip event handlers. It's not uncommon, therefore, for a single frame to require the execution of many separate blocks of code -- some in event handlers, some on frames in clip timelines, and some on the main timelines of documents in the Player. In these situations, the order in which the various bits of code execute can become quite complex and can greatly affect a program's behavior. We can prevent surprises and guarantee that our code behaves as desired by becoming familiar with the order in which event handlers execute relative to the various timelines in a movie. Asynchronous event handlers execute independently of the code on a movie's timelines. Button event handlers, for example, are executed immediately when the event that they handle occurs, as are handlers for the mouseDown, mouseUp, mouseMove, keyDown, and keyUp events. Handlers for the movie-playback events, however, execute in order, according to the progression of the movie, as shown in Table 10-3. Table 10-3. Movie Clip Event Handler Order of Execution
It's easier to see the effect of the rules in Table 10-3 with a practical example. Suppose we have a single-layer movie with four keyframes in the main timeline. We attach some code to each keyframe. Then, we create a second layer where we place a movie clip at frame 1, spanning to frame 3, but not present on frame 4. We add load, enterFrame, and unload handlers to our clip. Finally, inside the clip, we create three keyframes, each of which also contains a block of code. Figure 10-2 shows what the movie looks like. Figure 10-2. A code execution order test movieWhen we play our movie, the execution order is as follows: ========FRAME 1======= 1) Main timeline code executed 2) load handler executed 3) Clip-internal code, frame 1, executed ========FRAME 2======= 1) enterFrame handler executed 2) Clip-internal code, frame 2, executed 3) Main timeline code executed ========FRAME 3======= 1) enterFrame handler executed 2) Clip-internal code, frame 3, executed 3) Main timeline code executed ========FRAME 4======= 1) unload handler executed 2) Main timeline code executed The execution order of the code in our sample movie demonstrates some important rules of thumb to remember when coding with event handlers:
Copyright © 2002 O'Reilly & Associates. All rights reserved. |
|