Skip to main content
Inspiring
October 17, 2006
Question

how do i make a hyperlink?

  • October 17, 2006
  • 2 replies
  • 201 views
I'm not talking about using getURL() to load content from a web location into my flash document - i just want to know the actionscript to make a hyper link.

For instance:
mcThing.onRelease = function():Void {
//SOMETHING GOES HERE
}

What do i put in there to make the browser go to a new page?

thanks!
This topic has been closed for replies.

2 replies

Participating Frequently
October 17, 2006
mcThing.onRelease = function():Void {
getURL("yourpage.htm", "_blank");
}
Craig Grummitt
Inspiring
October 17, 2006
I don't know how to answer you without telling you what you specifically asked not for!

this is because getURL doesn't load content into your flash document - it makes the browser go to a new page...