Hi,
Hyper links are achieved with the getURL method. The method can be called from a keyframe, a movieclip, or a button. From a keyframe, it is simply the getURL method by itself passed a web address...
getURL("http://somesite.com");
... from a button or movieclip...
myButton.onRelease=function(){
getURL("http://somesite.com");
}
Another option is using an HTML enabled textfield and using a link in the text with an HTML href command.
hope it helps
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
Bookmarks