A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: play mc backwards

  1. #1

    play mc backwards

    hi there,

    anyone,
    what is the easiest way to get a mc to play backwards?

    thank you.

  2. #2
    Member
    Join Date
    Nov 2001
    Posts
    47
    Create a new MC, then make a tween. Put a stop in frame 1 and the last frame of the tween. Then put the following on the MC:



    onClipEvent(enterFrame){
    if (back) prevFrame();
    }


    Then, on a button in the main timeline:

    on(rollOver){
    _root.yourMCInstanceName.back = false;
    _root.yourMCInstanceName.play();
    }
    on(rollOut){
    _root.yourMCInstanceName.back = true;
    }

    (NOTE THISIS NOT MY IDEA>>>>>JUST CUT/PASTED IT FROM AN OLD THREAD)

  3. #3
    works very well.
    thank you so much.

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