Event Object Handler : Event Handler « Event « Flex






Event Object Handler

Event Object Handler
           
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
  
  <mx:Script>
    
      private function clickHandler(event:Event):void
      {
        myLabel.text='You clicked the button';
      }
  
  </mx:Script>
  
  <mx:Label id="myLabel"/>

  <mx:Button label="Click Me" click="clickHandler(event)"/>
  
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Using event object to make event handlers more genericUsing event object to make event handlers more generic
2.Creating function and use it as event handlerCreating function and use it as event handler
3.A function returning String and use it in button event handlerA function returning String and use it in button event handler
4.Register handler function to Button controlRegister handler function to Button control
5.Remove handlerRemove handler
6.Conditional handlerConditional handler
7.Use the handler property to specify the function Argument StringUse the handler property to specify the function Argument String
8.Use the handlerFunction property to specify the functionUse the handlerFunction property to specify the function
9.Add handlers and then remove handlersAdd handlers and then remove handlers
10.Using ActionScript in MXML event handlersUsing ActionScript in MXML event handlers
11.Specify Event object as a parameter in the event handler functionSpecify Event object as a parameter in the event handler function
12.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
13.Event handler functionEvent handler function
14.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
15.Handler children clicked event from parent clicked eventHandler children clicked event from parent clicked event
16.Priority parameter and event handler eventPriority parameter and event handler event
17.Add itself to event handlerAdd itself to event handler
18.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
19.Create two event handler functionsCreate two event handler functions
20.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
21.Simple Event HandlerSimple Event Handler
22.Pass string into event handlerPass string into event handler
23.Use initialize event to register event handlerUse initialize event to register event handler
24.Event handler sequenceEvent handler sequence
25.Use SetEventHandler to set event handler to a targetUse SetEventHandler to set event handler to a target
26.Add SecurityErrorEvent.SECURITY_ERROR event handler
27.Write simple event handler code inlineWrite simple event handler code inline
28.Add event handler to ChangeWatcherAdd event handler to ChangeWatcher
29.Use itemDoubleClick event handler to display HitData informationUse itemDoubleClick event handler to display HitData information
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