I have a root folder called "mysite" inside is my home page's swfs & html
files, and 3 folders with their websites and files. In this example one site's
folder is called "blade" and the first page is an animation called "intro".
From my home page the script on my button that calls the blade website is "on
release get url blade/intro.html." This script is not right because nothing
happens when I click my button. I don't know the correct path name when
navigating into a folder to call a html file. Any suggestions??
Shan-Dysigns - 19 Jul 2008 22:34 GMT
Use an absolute path instead.
on(release) {
getURL("http://www.domainanme.com/folderName/intro.html", "_blank");
}