Been pulling my hair out for hours today over this. I can't open another website from my already opened flash site.
Here is the code:
GotoFB.addEventListener(MouseEvent.CLICK, gotoFB);
function gotoFB(event:MouseEvent):void
{
navigateToURL(new URLRequest("http://www.facebook.com"), "_blank");
}
This works from the flash player but not from chrome/ie/firefox..
Some popup blockers blocks
navigateToURL(..., "_blank")
, there is a bunch of workarounds of varying quality out there, mainly involving calling JavaScript'swindow.open
viaExternalInterface
instead of usingnavigateToURL(..., "_blank")
. If you google for it, you may find one that works in your case.