Event Flex


    xmlns:s="library://ns.adobe.com/flex/spark" initialize="addListeners()">
    
         
        import mx.controls.Alert; 
        private function customLogEvent(e:Event):void { 
            Alert.show("Y: " + MouseEvent(e).localY + "\n" + "X: " + MouseEvent(e).localX); 
        } 
        private function addListeners():void { 
            b1.addEventListener(MouseEvent.CLICK, customLogEvent); 
        }