Does any one know how to loop a certain area of a movieclip, and then after a few loops play further...?
:D :P :) :( %) ;) B)
Printable View
Does any one know how to loop a certain area of a movieclip, and then after a few loops play further...?
:D :P :) :( %) ;) B)
let's say your animation loops from frame 1 to 5, 4 times, and then continues to loop from frame 6 to 10.
in frame 4, do something like:
loops = loops + 1;
if (loops<4) {
goToAndPlay(1);
}
and then, in frame 10, simple do this:
goToAndPlay(6);
got it? :)