Copy link to clipboard
Copied
I have an animation that should loop. But a part of it should run only once. How do I achieve this?
Thanks and best regards, Katja
Copy link to clipboard
Copied
any timeline can be controlled with code, either as3 or js.
if that doesn't solve the problem, is that what you're trying to control and which language are you using?
Copy link to clipboard
Copied
One way you can achieve your desired result is to use a series of MovieClips. To play an animation without it looping, you can add this.stop() to the last frame of your MovieClip. If you don't want a MovieClip to loop, don't include this.stop() inside of your MovieClip.
If you use this design method, you will need a way of navigating from one MovieClip to another after the non-looping animation has finished (e.g. this.parent.gotoAndStop(2)).
Find more inspiration, events, and resources on the new Adobe Community
Explore Now