A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: [F8] looping help?

  1. #1
    Member
    Join Date
    May 2006
    Posts
    34

    [F8] looping help?

    can any one tell me a easy code to make my movie loop only three times then Stop?

  2. #2
    Senior Member
    Join Date
    Nov 2005
    Location
    Michigan
    Posts
    119
    On the first frame of your movie put this code:
    code:

    onLoad = function(){
    loopCount = 0;
    }


    Then on the last frame of your movie put this code:
    code:

    loopCount++;
    if(loopCount == 3){
    stop();
    }


  3. #3
    Member
    Join Date
    May 2006
    Posts
    34
    thanks

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