Ok, i have a flash menu i want to use. I want to make the buttons go to pages like a regular hyperlink. The thing is i dont have my site registered (or uploaded) yet but I know there is a way to link to a page, just by using the name of the website and somehow linking it to the same directory as the current page…
Its hard to explain but its like in FrontPage, how you can link to sites and when you preview it, you can follow the links even though they aren’t uploaded on the internet.
//for local files that load from the same DIR
my_button.onRelease = function() {
getURL("whatever.htm", _self)
}
//for local files that load from a different DIR
my_button.onRelease = function() {
getURL("/whatever/whatever.htm", _self)
}
//OR for external files
my_button.onRelease = function() {
getURL("http://www.whatever.com/whatever.htm", _self)
}
[AS]
//for local files that load from the same DIR
my_button.onRelease = function() {
getURL(“whatever.htm”, _self)
}
[/AS]
But upload all the files to my webserver (and keep them in the same directory), will the link still work or will i have to add the full web address (ie www.msn.com/whatever.htm) to the link? THanks for all the help