Question
create clickable link
I need to create something like this:
_myButton.addEventListener(MouseEvent.CLICK, onMouseClick);
function onMouseClick(e:MouseEvent):void
{
var request:URLRequest = new URLRequest("http://www.inspired-evolution.com");
navigateToURL(request,"_blank");
}
except not with a button click.
Instead I just need to create the link within text eg:
LinkText.text="Click here to download the doucment";
how can I accomplish this?