6. Suppose
that we have 15 frames with different contents and only frame 1 contains ActionScript
code. What will happen if the existing code in frame 1 is the following one?
gotoAndPlay(15);
goto("ae"2313"asd");
Note:
We know that the code of the second line is ERRONEOUS and that Flash 8 is going
to detect that error.
a) The
movie will go directly from the frame 1 to the 15 (as "gotoAndPlay(15)"
action indicates ignoring the second code line, because it contains an error.
b) The
movie will be stopped in the frame 1, because after finding an error in this frame
it will not allow the movie to go on.
c) The
movie will ignore all the existing code in the frame 1 (by having an error) and it
will pass from the frame 1 to the 2, soon to the 3 and so on successively...
|