getURL not working with my button

so I have an awesome animated button that i want to make a link. i’ve been trying to script something like
mybutton geturl blah blah.
nothin’ doin’.
i’m not accessing a remote server yet so everything i’m doing is local. have i managed to make sense of this to anyone? any suggestions?

thanks
z :moustache

use something like this in ur button:

on (release) {
getURL(“index.htm”);
}

where “index.htm” is the URL

also make a search on the forums :slight_smile:

And don’t forget that one annoying little thing - when you use getURL you have to put the FULL web address, including the http://

getURL(“http://www.kirupa.com”, “_blank”)

or _parent or _self or whichever option you want. Look up getURL in the reference.

:hr: