how do i stop my flash movie from automatically replaying using action script 3?
i created an animation but i have not clue as to how to stop it. i know there are some functions in the actions panel but i am not very familiar with action script 3 (or 2 for that matter). does anyone know how to keep the movie from replaying or know a good tutorial site? also, how to add play/replay buttons? thanks
*adobe flash cs3
{owner} {imageurl}
Related posts:
- How to Create a Flash Movie for Deliverying to Web Enjoying With Your Family and Friends Each one of these programs has a different focus. Some...
- Stop Motion Animation – A How to Tutorial Have you ever wondered how to make those cool stop...
- Flv To Mov: Convert Video From Flv(Flash Video) To Mov(Quicktime Movie) With Flv To Video Converter FLV to MOV (QuickTime movie)This tutorial is to show you...
- Macromedia Flash 8 Tutorial – Making First Movie (For the beginners) Macromedia Flash 8 Tutorial - Making First Movie (For...
- Final Sync – Automatically Synchronize Your Files! FinalSync A Professional File Synchronization And File Backup Software...
Related posts brought to you by Yet Another Related Posts Plugin.
Comments
2 Comments on how do i stop my flash movie from automatically replaying using action script 3?
-
llaslek on
Wed, 9th Dec 2009 12:42 pm
-
James on
Wed, 9th Dec 2009 1:25 pm
Simple on the final frame of the animation add the following action script:
stop();
this should stop the movie on that frame and not loop
The following is ActionScript2. 0. . .
Place. . .
stop();
. . . on the frame you wish the animation to stop on.
To make a play button:
1. Draw your button
2. Hit F8, select Button, rename it if you want, then click OK.
3. Open the actions panel and type:
on(release){
_root. play();
}
To make the replay button replace. . . “_root. play();” with “_root. gotoAndPlay(1);”
Have fun! =]
Tell me what you're thinking...
and oh, if you want a pic to show with your comment, go get a gravatar!
