HyperLinking in Flash

How do you hyperlink in flash?
Lets say I have a button…
when it’s clicked i want to go to ww.yahoo.com

thanks

[SIZE=1]<-- USE IT!! ;)[/SIZE]

Use the getURL action.
http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary377.html

on(release){
getURL(“http://www.yahoo.com”, “_blank”);
}

copy that and paste it on your button actions