Mega Code Archive

 
Categories / Flex / Event
 

Use the target property not currentTarget property

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"     creationComplete="createLinkHandler()">     <mx:Script>     private function linkHandler(event:MouseEvent):void {     var url:URLRequest = new URLRequest("http://finance.google.com/finance?q=" + event.target.label);         navigateToURL(url);     }     private function createLinkHandler():void {         p1.addEventListener(MouseEvent.CLICK,linkHandler);     }   </mx:Script>     <mx:Panel id="p1" title="Click on a stock ticker symbol">         <mx:LinkButton label="ADBE" />         <mx:LinkButton label="GE" />         <mx:LinkButton label="IBM" />     </mx:Panel> </mx:Application>