我正在尝试使用外部调用从 Flash 按钮关闭浏览器窗口。这就是我所拥有的,但它不起作用,我不明白为什么。
import flash.external.ExternalInterface;
private function FnBackDown(event:MouseEvent):void {
ExternalInterface.call("window_close()");
}
在我调用 flash 的 html 文件中:
<script language="JavaScript">
function window_close(){
window.close();
}
</script>
</head>