A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: rewind when rolloff mc

  1. #1
    Senior Member
    Join Date
    Apr 2001
    Posts
    167
    hi

    please could someone help me with this as i'm pretty sure it can be done! i have a series of mclips.. . when i rollover i want them to play, when i rolloff i want the movie clip where ever it is to automatically play backwards from that point back to the first frame.. .

    many thanks in advance.. .

    tasvin

  2. #2
    Senior Member Flamboyant Flasher's Avatar
    Join Date
    Dec 2001
    Posts
    1,253
    I could send you a fla and a concomitant tutorial for the reverse issue you're looking for...basically, the code is soemthing liek this...

    on (release) {
    // call our play in reverse function in the code clip
    _root.code.PlayRev()
    }


    depending on how your animation is setup will determine the precise code you will need. In any event, the working fla. and tutorial can be yours...post ur e-mail...

  3. #3
    Senior Member
    Join Date
    Apr 2001
    Posts
    167
    hey, thanks very much for that, my email address is yeahmon@hotmail.com.. . thanks for your time!

    tasvin

  4. #4
    Senior Member Flamboyant Flasher's Avatar
    Join Date
    Dec 2001
    Posts
    1,253
    sent...the tut is in the fla...

  5. #5
    Junior Member
    Join Date
    Jun 2001
    Posts
    25

    Me too PLz !!!

    Hi FF,
    Could u send me the tut on reversing frames too ??
    mail address is sam2kool@rediffmail.com
    Thanks
    Sam

  6. #6
    curmudgeon swampy's Avatar
    Join Date
    Jan 2001
    Location
    [wakey]
    Posts
    2,775
    button:

    Code:
    on(rollover){
    reverse=false	
    	
    }
    on (rollOut){
    reverse=true	
    }
    mc:
    Code:
    onClipEvent (load) {
    	reverse = false;
    }
    onClipEvent (enterFrame) {
    	if (reverse && _currentframe>1)
    	{
    		prevFrame ();
    	}
    	else
    	{
    		play ();
    	}
    }

  7. #7
    Senior Member Flamboyant Flasher's Avatar
    Join Date
    Dec 2001
    Posts
    1,253
    Sam2kool: I sent you a fla. and a tut...

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