Using event object to make event handlers more generic : Event Handler « Event « Flex






Using event object to make event handlers more generic

Using event object to make event handlers more generic
      

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        
        import mx.controls.Alert;
        public function clickHandler(clickEvent:Event):void{
            Alert.show("Event Type:" + clickEvent.type);
            Alert.show("came from:" + clickEvent.currentTarget.id); 
        }
      
    </mx:Script>
    <mx:Button id="Me" label="Handle Click" click="clickHandler(event)" />
</mx:Application>

   
    
    
    
    
    
  








Related examples in the same category

1.Creating function and use it as event handlerCreating function and use it as event handler
2.A function returning String and use it in button event handlerA function returning String and use it in button event handler
3.Register handler function to Button controlRegister handler function to Button control
4.Remove handlerRemove handler
5.Conditional handlerConditional handler
6.Use the handler property to specify the function Argument StringUse the handler property to specify the function Argument String
7.Use the handlerFunction property to specify the functionUse the handlerFunction property to specify the function
8.Add handlers and then remove handlersAdd handlers and then remove handlers
9.Using ActionScript in MXML event handlersUsing ActionScript in MXML event handlers
10.Specify Event object as a parameter in the event handler functionSpecify Event object as a parameter in the event handler function
11.Define an event handler inline and binds a call to the handler function to the controlDefine an event handler inline and binds a call to the handler function to the control
12.Event handler functionEvent handler function
13.Parent container's click handler disables the target control after the target handles the eventParent container's click handler disables the target control after the target handles the event
14.Handler children clicked event from parent clicked eventHandler children clicked event from parent clicked event
15.Priority parameter and event handler eventPriority parameter and event handler event
16.Add itself to event handlerAdd itself to event handler
17.To use the Event object, you specify it as a parameter in the event handler functionTo use the Event object, you specify it as a parameter in the event handler function
18.Create two event handler functionsCreate two event handler functions
19.Bind a call to the handler function to the control that triggers the eventBind a call to the handler function to the control that triggers the event
20.Simple Event HandlerSimple Event Handler
21.Pass string into event handlerPass string into event handler
22.Use initialize event to register event handlerUse initialize event to register event handler
23.Event handler sequenceEvent handler sequence
24.Use SetEventHandler to set event handler to a targetUse SetEventHandler to set event handler to a target
25.Add SecurityErrorEvent.SECURITY_ERROR event handler
26.Write simple event handler code inlineWrite simple event handler code inline
27.Add event handler to ChangeWatcherAdd event handler to ChangeWatcher
28.Use itemDoubleClick event handler to display HitData informationUse itemDoubleClick event handler to display HitData information
29.Event Object HandlerEvent Object Handler
30.Define variable in click event handlerDefine variable in click event handler
31.Handler result event and fault event for ItemResponderHandler result event and fault event for ItemResponder
32.Using removeEventListener() method to remove event handlerUsing removeEventListener() method to remove event handler
33.Add and remove event handlersAdd and remove event handlers
34.Gets the value of the current target's x, y, and width properties in the focusIn event handler,Gets the value of the current target's x, y, and width properties in the focusIn event handler,
35.Define an event handler for the dragDefine an event handler for the drag
36.Creates the groups in ActionScript by using an event handlerCreates the groups in ActionScript by using an event handler