我正在尝试从 Flash 中打开具有特定 URL 的浏览器窗口。下面的代码适用于 IE 和 FF,但不适用于 Chrome。我看不到任何事情发生,并且在 chrome 的 javascript 控制台上看不到任何输出。任何帮助,将不胜感激
private function newWin():void {
var jscommand:String = "window.open('http://www.slashdot.org','win','height=200,width=300,toolbar=no,scrollbars=yes')";
var urlX:URLRequest = new URLRequest("javascript:" + jscommand + ";");
ExternalInterface.call("window.open","http://www.slashdot.org","win","height=200,width=300,toolbar=no,scrollbars=yes");
}
]]></fx:Script>
<s:Button label="Go to adobe.com 5"
click="newWin()" />