Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

skip intro and stop loading mc

Status
Not open for further replies.

technoknow

Technical User
Joined
Apr 19, 2002
Messages
121
Location
US
I'm trying to code a "skip intro" button so that the visitor can go right to the site. I have it working except that the mc keeps loading. Should I have a movie unload, does that work even if the movie isn't completey loaded? Here is my skip code:
skip.onRelease = function() {
stop();
uUrl = "navigation.html";
wdth = "768";
hdth = "580";
getURL ("javascript:window.open('"add uUrl add" ','nName','width=" add wdth add ",height=" add hdth add ",top='+((screen.availHeight/2)-(" add hdth/2 add"))+',left='+((screen.availWidth/2)-(" add wdth/2 add "))); void(0);");
//getURL("index.html","_parent");
gotoAndStop(2);
}
Thanks,
TechNoKnow
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top