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.
如何从 As3 打开网页以替换当前的 iFrame(和 Flash 对象)。
您想将网页打开到 iframe 中还是要替换包含 iframe 的整个页面?
前者:
import flash.net.*; navigateToURL( new URLRequest("url-of-the-page-to-be-opened"), "_self" );
后者:
import flash.net.*; navigateToURL( new URLRequest("url-of-the-page-to-be-opened"), "_top" );