PDA

View Full Version : Simple question for Intro


Octave
06-08-2003, 07:06 PM
I have my flash movie on "intro.htm" ... when the intro ends I want the page to change automatically to "main.htm" ... any suggestions?

I'm not sure where to look for the answer cause i dunno what the function is called.

thanks

Brian

Sualdam
06-08-2003, 07:33 PM
You need:
getURL("main.html");
Technically, it should be:
getURL("main.html","_self");
and you can replace "_self" with "_blank" to get a pop-up.

Octave
06-10-2003, 05:29 AM
much thanks :)