Display the current phase and current target's ID : Event Target « Event « Flex






Display the current phase and current target's ID

Display the current phase and current target's ID
            
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
    private function showInfo(e:MouseEvent):void {
        trace(e.eventPhase + ":" + e.currentTarget.id);
    }
  </mx:Script>
    <mx:Button id="b1" label="Click Me" click="showInfo(event)" />
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Get current target from eventGet current target from event
2.Pass current event target text to functionPass current event target text to function
3.Get event target labelGet event target label
4.Display current phase and information about the current targetDisplay current phase and information about the current target
5.Use the target property not currentTarget propertyUse the target property not currentTarget property
6.Event target idEvent target id
7.Use Event object to access methods and properties of the target component, or the component that dispatched the event.Use Event object to access methods and properties of the target component, or the component that dispatched the event.
8.Check event current target class nameCheck event current target class name
9.Get event type, event target and event target idGet event type, event target and event target id
10.Check event target id
11.Let current event target show the drop feedbackLet current event target show the drop feedback