///////////////////////////////////////////////////
// Actual AS3 clickable-link code:
my_btnaddEventListener(MouseEventCLICK, myBtnClicked);
function myBtnClicked(e:MouseEvent):void {
var url:String = "http://wwwexamplecom/";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_blank'

;
} catch (e:Error) {
trace("Error occurred!");
}
}
///////////////////////////////////////////////////
// Lazy shorthand Reminder: navigateToURL SHOULD be in a try/catch
my_btnaddEventListener(MouseEventCLICK, myBtnClicked);
function myBtnClicked(e:MouseEvent):void {
navigateToURL(new URLRequest("http://wwwexamplecom/"));
}[/b]