A Flash Developer Resource Site

Results 1 to 20 of 21

Thread: how to make movie start at a given frame from HTML

Threaded View

  1. #4
    up to my .as in code Chris_Seahorn's Avatar
    Join Date
    Dec 2004
    Posts
    4,389
    You're telling it to start at 20.

    <PARAM NAME=FlashVars VALUE="&jump=1&page=20&" />


    Bob gave you a bunch of ways to load the variables but I think what you are trying to do:

    I want it to just display the images from frame 10. I could grate an jpg and place it there, but i was nto wanting to have to do that.

    can i make the same movie start and play on frame 10 from other pages?
    Doesn't need the count (page++) so it's starting you at frame 21.

    I think you want:

    HTML (test_JumpToPage3.html)

    Line 12 should be:

    <PARAM NAME=FlashVars VALUE="&jump=1&page=page10&" />

    //so you don't use a numbered frame but a named one.


    and frame 1 or 2 of the Koolmoves movie should have:

    if(jump == 1){
    jump = 0;

    gotoAndPlay(page);
    }
    stop();



    This example does exactly that but instead of continuing on from frame 10 it just stops. It's Bob's example movie...it just jumps over the frames to the frame named "page10".

    http://sandbox.blogdns.com/test/test_JumpToPage3.html

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