|
-
up to my .as in code
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
Last edited by Chris_Seahorn; 12-11-2005 at 10:34 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|