Results 1 to 7 of 7

Thread: playing backwards after a "load movie" command

  1. #1
    Join Date
    Jun 2008
    Posts
    41
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default playing backwards after a "load movie" command

    Hello,

    First I'd like to say that I am so happy to have found this forum. I really hope that we can help each other here (for now i am not so good at scripting but I have the will )

    My question is:

    I have this movie clip. I click somewhere on it. A "load movie" action has been taken. How do I make the current movie clip to play backwards before it loads the other movie clip? (there will be options for many clips to be loaded and I don't want after clicking on all of them to play backwards the current movie clip, just some of them).

    Thank you!
    niksan.

  2. #2
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Hello Niksan,

    By "play backwards" do you literally mean to play in reverse? What's the content of these loaded movieclips? Is it video or other SWFs?

  3. #3
    Join Date
    Jun 2008
    Posts
    41
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    hello medyman,

    i mean litterally reverse play the content of the current movie clip. And yes, I mean other SWFs.

  4. #4
    Join Date
    Jun 2008
    Posts
    41
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    other people's opinions:?

  5. #5
    Join Date
    Jun 2008
    Posts
    41
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    medyman u there?

  6. #6
    Join Date
    Mar 2007
    Location
    Currently: New York/Philadelphia
    Posts
    2,735
    Thanks
    3
    Thanked 519 Times in 507 Posts

    Default

    Quote Originally Posted by niksan8787 View Post
    medyman u there?
    Yes. Believe it or not, I actually have other things to do with my time then hang around this forum.

    Anyway, the only way that I know of (and theoretically, the only way possible to do this) is by using something like the rewind prototype method.

  7. #7
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    Here is a test for you. 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:


    Code:
    onClipEvent(enterFrame){
    if (back) prevFrame();
    }
    Then, on a button in the main timeline:

    Code:
    on(rollOver){
    _root.yourMCInstanceName.back = false;
    _root.yourMCInstanceName.play();
    }
    on(rollOut){
    _root.yourMCInstanceName.back = true;
    }
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •