Briefing
When roll_over button (info_btn) the child mc (infotext_1) starts
and animate a text outside the button .
When roll_out the child mc animate the text back to the btn.
Simple, and it works… almost.
Problem
The mouse hits the child mc after roll_out and roll_over activates. I dont want that.
info_btn.mouseChildren = false; doesnt work.
info_btn.buttonMode = true;
info_btn.mouseChildren = false;
info_btn.addEventListener(MouseEvent.ROLL_OVER, function(event:MouseEvent) {
info_btn.gotoAndPlay(2);
});
info_btn.addEventListener(MouseEvent.ROLL_OUT, function(event:MouseEvent) {
info_btn.gotoAndPlay(10);
});
Anyone? Please