hey i have this rectangular menu that’s positioned on the bottom of the stage, just 20 pixels above [it’s 170 height so 150 arent visible]. when i rollover the mouse the menu rises showing the buttons, and hides if i rollout the mouse.
The code is this and it does the purpose:
menu.onRollOver = function() {
menu_up();
};
menu.onRollOut = menu.onReleaseOutside=function () {
menu_down();
};
the thing is the buttons inside my menu movieclip[really they are inside a movieclip inside menu movie clip] dont work if i use this rollover events on the menu.
can anybody plz help?