A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Rewind button

  1. #1
    Senior Member
    Join Date
    Jun 2000
    Posts
    100
    Hey all,

    I was wondering, do any of you know if there is a way to make a button in Flash 4 that will show the frames going backward at double or triple the rate of the movie like a VCR's scan-rewind button. I need to be able to do this without having to copy every third frame of the movie, reversing them, then simply having it play through them. The rewind button also needs to be able to start playing as soon as the button is released.

    Thanks,
    Ralph M.

  2. #2
    Senior Member
    Join Date
    Aug 2000
    Location
    New Brunswick, Canada
    Posts
    120
    Put something like the following in a new layer
    (First frame where beceoms active)
    Label it Reverse
    action:
    If (Rev =1) THEN
    Go To and Play the currentframe -3 (or 4, play around for speed)
    end if

    in the next frame put
    Call(Reverse)

    highlight this frame and do a copyframe. Then highlight all the frames to the end (or to the end of the reversible part) and do pasteframe. (This should paste a copy of the frame with the call in each one of those frames.)

    Dont forget to set Rev = 0 in Frame 1
    And in your button whicih triggers the revers just have it set the variable Rev to 1.

  3. #3
    Senior Member
    Join Date
    Aug 2000
    Posts
    263
    rworld,

    Chameleon gave an idea that will work but a cleaner
    way would be to add a mc that would do the reversing.
    It could be modified to reverse any mc in the movie.


    Example of reverse mc
    First frame:
    Stop

    Second frame:
    Begin Tell Target ("/")
    Go to and Stop (_currentframe - 3)
    End Tell Target

    Third frame:
    Go to and Play (_currentframe - 1)

    Example for button to control reverse mc
    On (Press)
    Begin Tell Target ("/reverse")
    Play
    End Tell Target
    End On
    On (Release)
    Begin Tell Target ("/reverse")
    Go to and Stop (1)
    End Tell Target
    Play
    End On

    This example has level0 being reversed during
    press of the key and playing when released.

    Hope this helps.
    MA

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