Event Flex

    layout="vertical" creationComplete="initFunc()">
    
        
        import mx.controls.Alert;
        public function initFunc():void
        {
            myButton.addEventListener("click",respondToEvent,false,100);
            myParentHBox.addEventListener("click",parentEventResponse, false,0);
        }
        public function respondToEvent(e:Event):void{
            var msg:String = "hi";
            Alert.show(msg,"First Event Listener");
            e.stopPropagation();
        }
        public function respondToEventClick(e:Event):void
        {
            Alert.show("fire second ","Second Event Listener");
        }
        public function parentEventResponse(e:Event):void
        {
            Alert.show("You should never see this alert","Parent Event Response");
        }