ActionScript - MouseOut 事件

发布于 2024-08-13 18:26:36 字数 488 浏览 7 评论 0原文

我正在尝试让影片剪辑正常播放。 MouseOver 的第一部分工作正常,但 MouseOut 没有得到响应。

这是代码:

stop();

callout_btn.addEventListener(MouseEvent.MOUSE_OVER, playCallout, false, 0, true);
callout_btn.addEventListener(MouseEvent.MOUSE_OUT, resetCallout, false, 0, true);

function playCallout(evt:MouseEvent):void {
trace("Moused Over Callout Button");
play();
}
function resetCallout(evt:MouseEvent):void {
trace("Mouse has moved off button");
gotoAndStop(1);
}

任何帮助将不胜感激。谢谢。

I am trying to get a movie clip to play properly. The first part with MouseOver works fine, but the MouseOut doesn't get a response.

Here's the code:

stop();

callout_btn.addEventListener(MouseEvent.MOUSE_OVER, playCallout, false, 0, true);
callout_btn.addEventListener(MouseEvent.MOUSE_OUT, resetCallout, false, 0, true);

function playCallout(evt:MouseEvent):void {
trace("Moused Over Callout Button");
play();
}
function resetCallout(evt:MouseEvent):void {
trace("Mouse has moved off button");
gotoAndStop(1);
}

Any help would be appreciated. Thanks.

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

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

发布评论

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

评论(1

三五鸿雁 2024-08-20 18:26:36

也许因为您使用的是弱引用(第三个参数),所以该对象在 MOUSE_OUT 之前被垃圾收集。

maybe since you are using weak references (the 3rd parameter), the object is garbagecollected before the MOUSE_OUT.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文