actionscript 3 - Some nav buttons working, others not -


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

///this 1 doesn't work////     aboutsub.bio.addeventlistener(mouseevent.click, gobio); function gobio(evtobj:mouseevent) {     gotoandstop("bio"); }   /// 1 works////     home.addeventlistener(mouseevent.click, gohome); function gohome(evtobj:mouseevent) {     gotoandstop("home"); } 

for testing purposes try adding event listener aboutsub movieclip , see if works. if doesn't check don't have displayobject above , make sure have not set mouseenabled = false or mousechildren = false on aboutsub.

if work check in aboutsub clip there no displayobjectsw above buttons etc (so same principle first paragraph)


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -