A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: [as2][flash5] Reverse play timeline till stop

  1. #1
    Junior Member
    Join Date
    Nov 2009
    Posts
    10

    [as2][flash5] Reverse play timeline till stop

    Hi

    I have problem with this one:

    I have 3 objects. One is a Movieclip, and other 2 are buttons (forward and backward)

    Like so:

    < MC >

    Inside MC there are several animations with stop(); where it should stop till clicking Next button to play till the next stop.
    [stop();____][stop();____][(..)
    [* --------->][* ---------->][(..)

    I would like the backward button to play the whole sequence but backwards...

    thank you in advance

    How can I tell the backward button, to play the animation in the MC from the current state, to the last stop();?


    edit: got it lol so stupid, it was so easy prevFrame, I thought that there was a dedicated function for rewinding
    Last edited by hello6470; 04-28-2011 at 08:36 AM.

  2. #2
    Junior Member
    Join Date
    Nov 2009
    Posts
    10
    Oh wow and the question is now, how to make the prevFrame stop on specific frames ?

    code for the prev button:

    on (press) {
    stop();
    onEnterFrame = function () {
    contenidoCentro.prevFrame();
    }
    }

    on (release) {
    if (contenidoCentro._currentframe == "1") {
    delete onEnterFrame;
    }
    }


    contenidoCentro is the mc with tweens with stop(); on every 15 frame



    the forward button has delete onEnterFrame to let got the rewinding.

    tried putting delete onEnterFrame on specific frames in the timeline but didn't work either :<

Tags for this Thread

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