I'm very new to Flash, and am currently using Flash5, but will switch to MX if necessary.
My newbie question: I want to, on release of a button, go to a new url, and play the movie there, but start from a different frame than frame 1.
I've tried:
on (release) {
loadMovieNum ("my_movie.swf", 0);
gotoAndPlay (2);
}
that didn't work
and:
on (release) {
getURL ("http://www.whatever.com/my_page2.htm");
}
and that works to change the page, but I don't know what to do with the movie.
TIA for any help I can get here.
Cheers,
Michael

Comment