;

PDA

Click to See Complete Forum and Search --> : Actionscript


simpelendidi
07-27-2003, 03:08 PM
Say on frame 3 I have 2 buttons. When you click on one of them, the movie plays until frame 7 for example. Now on frame 7 I want the movie to go for button 1 to frame 10 and for button 2 to frame 20.

I know this script for HTML redirection. How can I adjust it for frame redirection.


button action

on(release)
{
sURL = "....htm";
}

frame action (in the example frame 7)

getUrl(sURL, "_self");

bridelh
07-27-2003, 09:10 PM
Try:
gotoAndPlay(20);
or
gotoAndPlay("myFrameName");

Hilary

--

simpelendidi
07-28-2003, 05:01 AM
Thanks, I found the it.