hi, i`m trying to open a popup window from flash.
this is what I have in HTML.
function WindowOpen(url, name) {
window.open(url, name, "width=900, height=600, resizable=no, scrollbars=no");
}
and this is what I have in flash
function clickLINK(e:MouseEvent):void {
var jscommand:String = "WindowOpen('http://www.adobe.com','win');";
var request:URLRequest = new URLRequest("javascript:" + jscommand + " void(0);");
navigateToURL(request, "_blank");
}
why is this not working?
help me please.