从 As3 打开网页以替换当前的 iFrame

发布于 2024-07-13 22:14:18 字数 48 浏览 6 评论 0原文

如何从 As3 打开网页,以便它替换当前的 iFrame(和 Flash 对象)。

How Can I open a web page from the As3 so that it replaces current iFrame (and Flash object).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的旅程 2024-07-20 22:14:18

您想要在 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" );

Do you want to open the web page into the iframe or do you want to replace the whole page containing the iframe?

The former:

import flash.net.*;    
navigateToURL( new URLRequest("url-of-the-page-to-be-opened"), "_self" );

The latter:

import flash.net.*;    
navigateToURL( new URLRequest("url-of-the-page-to-be-opened"), "_top" );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文