PDA

View Full Version : ANIMATED FLASH BANNER


SAB0TAGE
08-15-2008, 03:44 PM
I made a little flash animation. ( a short .swf )This company wants to use it as a banner. They said it keeps looping. I'm not great at action scripting but is there a way to put a "stop after one time" command in there? I'm using Flash CS3.

SAB0TAGE
08-19-2008, 03:28 PM
?? no ?? :(

ElusiveMoose
08-20-2008, 06:17 AM
If I understand you correctly, all you would need to do is add a blank keyframe at the end of your animation, and then enter the command

stop();

on that frame.

That would stop the timeline and any graphic symbol animation, but movieclip animations would continue playing.

If you need to stop the movieclips as well, you have to give each instance a name and then tell them to stop.

Hope that's what you needed. :D

EDIT: Actually, just thinking about it, you could just uncheck the "loop" option in your publish settings, which would do the same as the stop(); on the last frame.

SAB0TAGE
08-20-2008, 12:58 PM
Thanks! I'll give it a try.