Event Flex



    xmlns:s="library://ns.adobe.com/flex/spark" creationComplete="initApp()">
    
        
    

    
         
        private function returnResult(e:Event):void { 
            ta1.text += "returnResult() method called last (priority 1)\n"; 
        } 
        private function verifyInputData(e:Event):void { 
            ta1.text += "verifyInputData() method called first (priority 3)\n"; 
        } 
        private function saveInputData(e:Event):void { 
            ta1.text += "saveInputData() method called second (priority 2)\n"; 
        } 
        private function initApp():void { 
            b1.addEventListener(MouseEvent.CLICK, returnResult, false, 1); 
            b1.addEventListener(MouseEvent.CLICK, saveInputData, false, 2); 
            b1.addEventListener(MouseEvent.CLICK, verifyInputData, false, 3); 
        }