Opening a URL from Flash using navigateToURL (AS3)

26.5k Views Asked by At

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..

3

There are 3 best solutions below

0
On

Some popup blockers blocks navigateToURL(..., "_blank"), there is a bunch of workarounds of varying quality out there, mainly involving calling JavaScript's window.open via ExternalInterface instead of using navigateToURL(..., "_blank"). If you google for it, you may find one that works in your case.

0
On

File->Publish Settings->Local playback security->Access network only

Voila...

4
On

Had some problems with navigateToUrl in recent chrome-update in my Flex-app. Had to use this workaround:

ExternalInterface.call("window.open", url, target);