PDA

View Full Version : getURL


ChickenSlayer
03-29-2003, 01:46 PM
I've just started using flash mx and i'm trying to make a menu. Basically i just need to know how do a link.

I've got the button set up, but when i do put in the url it won't work. This is what i've done:

on (press) {
getURL(http://www.gamefaqs.com);

}


What have i done wrong?

CyanBlue
03-29-2003, 01:49 PM
Howdy and Welcome... ;)

Try this... You were missing double quotes...on (press)
{
getURL("http://www.gamefaqs.com");
}

ChickenSlayer
03-29-2003, 02:04 PM
wahoo thanks a lot man!