Some nav buttons working, others not
Posted
by boz
on Stack Overflow
See other posts from Stack Overflow
or by boz
Published on 2010-04-29T00:25:49Z
Indexed on
2010/04/29
9:37 UTC
Read the original article
Hit count: 373
flash-cs4
|actionscript-3
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");
}
© Stack Overflow or respective owner