PDA

View Full Version : Very n00b getURL question


ToddziLLa
09-23-2004, 08:45 PM
Sorry for the n00bish nature of this question, but here is the code I have on one of my buttons inside a MC;

on (release) {
getURL(http://www.SITE.com/index2.htm);
}

The error code I receive is;

**Error** Symbol=intro, layer=Layer 5, frame=110:Line 2: ')' or ',' expected
getURL(http://www.SITE.com/index2.htm);

Total ActionScript Errors: 1 Reported Errors: 1

I'm frustrated. Someone please help!

Xeef
09-23-2004, 08:52 PM
getURL("http://www.SITE.com/index2.htm");

ToddziLLa
09-23-2004, 09:06 PM
Duh. Thank you for your help.