1

我正在制作一个页面,其中我使用了一些 Flash 组件作为按钮,我想链接到另一个 HTML 页面但不知道该怎么做。有人能帮我吗?

4

2 回答 2

6

你必须在你的按钮上放置一个事件监听器来监听点击事件。

yourButton_mc.addEventListener(MouseEvent.CLICK, onClick, false, 0, true);
function onClick(e:MouseEvent):void{
    navigateToURL(new URLRequest("page.html"), "_self"); // change "_self" to "_blank" if want to it open in other tab or window. More info in the links I wrote below.
}

这里有很好的链接事件资源。

于 2012-08-02T17:44:42.457 回答
2

在 Flash 中,单击您将使用的按钮并为其指定一个实例名称(在属性面板下),然后相应地更改代码。

// URLRequest variable(where to navigate)
var pageOnAnySiteURL:URLRequest = new URLRequest("www.example.com/useGoogle");

// Navigation function
function navigateFunc(event:MouseEvent):void {
   navigateToURL(pageOnAnySiteURL, "_blank");
}

// Fire off that event when button is clicked in FLash
buttonInstanceName_mc.addEventListener(MouseEvent.CLICK, navigateFunc);
于 2012-08-02T17:49:23.857 回答