Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何从 iframe 中的 Flash AS3 关闭浏览器窗口?
非常感谢任何帮助/想法,Ss888。
这是做不到的。至少不是直接的。
您可以做的是使用ExternalInterface该类或navigateToUrl调用 JavaScript。
ExternalInterface
navigateToUrl
navigateToURL(new URLRequest('Javascript: window.close();'), '_self');
此时,由浏览器来提示或允许/忽略window.close()请求。
window.close()