A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: MovieClip-Help

  1. #1

    Arrow

    Does any one know how to loop a certain area of a movieclip, and then after a few loops play further...?

    :P %) B)

  2. #2

    sure

    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?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center