-
_root.gotoAndPlay Help
Ok will i made my site a intro and i trying to link it so my main site that is a flash too umm i think i did the link right
Code:
on (release) {
bb1.useHandCursor = false;
_root.gotoAndPlay("/flash/main_v8.swf");
}
http://original-gamers.net/intro -- That is the intro page
http://original-gamers.net/ -- That is the Main Site
if anyone can help me much <3
-
gotoAndPlay takes you to another frame in your SAME movie rather than loading another movie
if you want to load in your main site and replace your intro, use:
_root.loadMovie("./flash/main_v8.swf");
otherwise, if you want to load your ACTUAL html (or whatever) page replacing whatever page you are on then you should use:
getURL("http://www.yoursite.com/yourpage.htm","_self");
and if you want it to load a new popup window with your main page, replace "_self" with "_blank"