Hi I have 2 mxml files in which ....
CustComp.mxml
<mx:LinkButton id="linkbutton" label="ClickMe" click="onLinkClicked()" mouseOver="onMouseOver()" mouseOut="onMouseOut()" />
private function onLinkClicked():void{
dispatchEvent(new CustomEvent("onClick");}
private function onMouseOver(event:CustomEvent):void{
dispatchEvent(new CustomEvent("onMouseOver");}
private function onMouseOut(event:CustomEvent):void{
dispatchEvent(new CustomEvent("onMouseOut");}
Main.mxml
var customComp:CustComp = new CustComp();
customComp.addEventListener(CustomEvent.MOUSE_CLICK1,onLinkClicked111);
customComp.addEventListener(CustomEvent.MOUSE_OVER1,onMouseOver111);
customComp.addEventListener(CustomEvent.MOUSE_OUT1,onMouseOut111);
private function onLinkClicked111(event:CustomEvent):void{
trace("click event");}
private function onMouseOver111(event:CustomEvent):void{
trace("mouse over event");}
private function onMouseOut111(event:CustomEvent):void{
trace("mouse out event");}
When i am making a mouse over or mouse out on link button in component,the event is getting dispatched to main.mxml and respective functions are getting called perfectly.But When i click the button, onLinkClicked111() function is called once and onMouseOut111(), onMouseOver111() are repeatedly getting called until i make my cursor move away from link button. Please help me out as what should i do to make sure that when i click, only onLinkclicked111() function should get called not mouseOver111() or mouseOut111()
Not sure what you really need, but here is simplified example