hello, i am building an expandable menu (you roll over the mouse, the menu slides showing the links, you take it off, the menu contracts to its original position). i am using tween classes on the menu buttons (which are actually movie clips) to change the appearance once you hover them.
the problem is, i have all the buttons inside one movieclip and when i apply a tween class to do the slide in and out effect, they stop working. is there a way for me to work around it? here are the codes:
// navbar menu (this is the whole mc containing the navigation)
menu.onRollOver = function() {
menu.slideTo(-6.3,null,0.5,“easeInQuad”,0);
};
menu.onRollOut = function(){
menu.slideTo(-753.3,null,0.5,“easeInquad”,0);
}
and the buttons would look like this,
// home button (actually a mc inside the navbar menu mc)
home.onRollOver = function(){
home.colorTo(0xFFFFFF,0.3,“linear”);
}
home.onRollOut = function(){
home.colorTo(null,0.2,“linear”);
}
thank u.