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");
