54.8k views
3 votes
which actionscript will cause a movie to end on a particular frame when that frame is reached in the timeline

User Casha
by
7.0k points

1 Answer

1 vote

Final answer:

In ActionScript, you can use the 'gotoAndStop()' method to make a movie end on a particular frame when that frame is reached in the timeline.

Step-by-step explanation:

In ActionScript, you can use the 'gotoAndStop()' method to make a movie end on a particular frame when that frame is reached in the timeline. This method allows you to specify the frame number as an argument, and when called, it will cause the movie to stop on that frame. Here is an example:

gotoAndStop(10);

This code will make the movie go to frame 10 and stop there.

User Poisson
by
7.2k points