Open new browser window from flash.
Hey,
In this first tutorial today we are going to talk about how to use javascript to open a new browser window from flash.
The code that is required is fairly simple actually.
var request:String =
“javascript: window.open(‘http://www.sowebme.com/murtaza’,’win’,’height=400,width=600,toolbar=no,scrollbars=yes’); void(0)”;
var url:URLRequest = new URLRequest(request);
navigateToURL(url, “_self”);
Within your HTML housing the flash, you are going to need the parameter “AllowScriptAccess” set to “always”.
Feel free to download the working files here:
New Window Example