function gotoAdobeSite(event:MouseEvent):void
{
OnCommandEvent(tt.text);//这里有一个文本是FLASH里的
}
function OnCommandEvent(CommandText:String):void
{
/* var adobeURL:URLRequest = new URLRequest(CommandText);
navigateToURL(adobeURL);*/
}
linkButton.addEventListener(MouseEvent.CLICK, gotoAdobeSite);
完成