有些导航按钮有效,有些则无效

发布于 2024-08-30 15:53:43 字数 401 浏览 2 评论 0原文

我的子菜单影片剪辑中的按钮不起作用。不在子菜单内的可以正常工作。
我的代码通过验证,没有收到任何错误
知道我还应该检查什么吗?

///this one doesn't work////    
aboutSub.bio.addEventListener(MouseEvent.CLICK, goBio);
function goBio(evtObj:MouseEvent) {
    gotoAndStop("bio");
}


/// this one works////    
home.addEventListener(MouseEvent.CLICK, gohome);
function gohome(evtObj:MouseEvent) {
    gotoAndStop("home");
}

the buttons within my submenue movie clip don't work. the one's not within a submenu work fine.
my code validates and i'm not getting any errors
any idea on what else i should be checking?

///this one doesn't work////    
aboutSub.bio.addEventListener(MouseEvent.CLICK, goBio);
function goBio(evtObj:MouseEvent) {
    gotoAndStop("bio");
}


/// this one works////    
home.addEventListener(MouseEvent.CLICK, gohome);
function gohome(evtObj:MouseEvent) {
    gotoAndStop("home");
}

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

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

发布评论

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

评论(1

若有似无的小暗淡 2024-09-06 15:53:43

出于测试目的,尝试将事件侦听器添加到 aboutSub MovieClip 并查看是否有效。如果没有,请检查其上方是否有另一个 DisplayObject,并确保您没有在 aboutSub 上设置 mouseEnabled = false 或 mouseChildren = false 之类的内容。

如果它确实有效,则检查 aboutSub 剪辑中按钮等上方是否没有 DisplayObjectsw (原理与第一段相同)

for testing purposes try adding an event listener to the aboutSub MovieClip and see if that works. If it doesn't then check that you don't have another DisplayObject above it and make sure that you have not set anything like mouseEnabled = false or mouseChildren = false on the aboutSub.

If it does work then check that in aboutSub clip that there are no DisplayObjectsw above the buttons etc (so same principle as the first paragraph)

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