2

我在 Flash 中有一个主页,它链接到 Dreamweaver 中的页面。在线时,我不希望在定向到 url 时打开新窗口。(现在,我有一个动作脚本可以转到 URL,并打开一个新窗口)。反正有没有保持不变?

4

3 回答 3

2

你在用navigateToURL吗?_self作为第二个参数传递。请参阅文档:

window:String (default = null)— 显示请求参数指示的文档的浏览器窗口或 HTML 框架。您可以输入特定窗口的名称或使用以下值之一:

* "_self" specifies the current frame in the current window.
* "_blank" specifies a new window.
* "_parent" specifies the parent of the current frame.
* "_top" specifies the top-level frame in the current window.

如果您没有为此参数指定值,则会创建一个新的空窗口。在独立播放器中,您可以指定新的(“_blank”)窗口或命名窗口。其他值不适用。

于 2009-03-10T19:17:01.577 回答
1

只需将链接目标设置为_self

于 2009-03-10T19:15:48.787 回答
0

尝试:

getUrl("http://theurl.com/page.html", "_self");
于 2009-03-10T19:16:07.087 回答