button click : Click Event « Event « Flex






button click

button click
             
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    
    <mx:HBox width="400" height="300">
    
        <mx:Script>
            
    
                private function buttonClick(event:Event):void
                {
                    trace(event.target.id);
                    if(event.target.id == "buttonOne")
                    {
                        trace(" button one was clicked")
                    }
                    else
                    {
                        trace(" button two was clicked")
                    }
                }
    
          
        </mx:Script>
    
        <mx:Button click="buttonClick(event)" label="Click Me One" id="buttonOne"/>
        <mx:Button click="buttonClick(event)" label="Click Me Two" id="buttonTwo"/>
    </mx:HBox>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Click event example (MXML)Click event example (MXML)
2.Listen to a Button ClickListen to a Button Click
3.Nested inner function is called when the button is clickedNested inner function is called when the button is clicked
4.Click event attribute can take ActionScript code as its valueClick event attribute can take ActionScript code as its value
5.ActionScript event handling logic inside the MXML tag's click eventActionScript event handling logic inside the MXML tag's click event
6.Intercept a click eventIntercept a click event
7.Double click eventDouble click event
8.Mark click event as its own tagMark click event as its own tag
9.The click event attribute can take ActionScript code directly as its valueThe click event attribute can take ActionScript code directly as its value
10.Use Event object to get a reference to the clicked ColumnSeries.Use Event object to get a reference to the clicked ColumnSeries.
11.Define custom behavior for the click event of the LinkElement object.Define custom behavior for the click event of the LinkElement object.