moopa
05-18-2008, 07:15 PM
I have a movieClip in the library called btnGetStarted. This movie comprises of other movieclips:-
outer
inner
textLabel
If i put an instance of btnGetStarted on the stage and do something like:-
btnGetStarted.buttonmode = true;
btnGetStarted.addEventListener(MouseEvent.MOUSE_OV ER,btnGetStartedOverHandeler);
public function btnGetStartedOverHandeler(e:MouseEvent):void
{
trace("Mouse over");
}
when the mouse moves over each element the event will end and if the mouse goes over the textLabel (dynamic text) it will stop.
Why is this??
Thanks
outer
inner
textLabel
If i put an instance of btnGetStarted on the stage and do something like:-
btnGetStarted.buttonmode = true;
btnGetStarted.addEventListener(MouseEvent.MOUSE_OV ER,btnGetStartedOverHandeler);
public function btnGetStartedOverHandeler(e:MouseEvent):void
{
trace("Mouse over");
}
when the mouse moves over each element the event will end and if the mouse goes over the textLabel (dynamic text) it will stop.
Why is this??
Thanks