Question:
Having troubles with action script... Anyone know legit script for linking within a flash site?
2009-02-04 14:10:50 UTC
New to building sites with flash. I've found a half dozen variations for actionscript to link the pages together but none of them work. If you look at teamfoundationatl.org, you'll see my problem. The index page works but the nav bar brings up blank pages.
Three answers:
James
2009-02-04 14:17:07 UTC
Are you using this?



on(release){

getURL("www.example.com");

}



If you put down what AS you are already using it will help us to correct it.
duchane
2016-12-14 13:22:45 UTC
i could recommend you persist with AS2 on account that AS3 is extremely stepped forward even for a settlement Flash developer. Assuming you have a button and you have given it an occasion call like "home_btn". you may specify which physique to play in the timeline by utilizing utilizing: home_btn.onRelease = function() { gotoAndPlay("domicile"); // you're able to be able to desire to have a physique named "domicile" }
Worshipme
2009-02-04 14:23:24 UTC
Here i found this for you:

Delete any items with \\ //.



// script for flash site linking. //

on(release){ // this part is when will it will activate the link in this case when you release your mouse button. \\

getURL("http://www.about.com"); // here is the link it will go to. enter it within the " ". \\

} // leave this parenthese mark here at the end of the script \\


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...