Block changes Button's label property when the user clicks the button : Label « Components « Flex






Block changes Button's label property when the user clicks the button

Block changes Button's label property when the user clicks the button
            

<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->



<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:s="library://ns.adobe.com/flex/spark">
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <fx:Script>
         
        private function setLabel():void { 
            if (myButton.label=="Click Me") { 
                myButton.label = "Clicked"; 
            } else { 
                myButton.label = "Click Me"; 
            } 
        } 
      
    </fx:Script>
    <s:Button id="myButton" label="Click Me" click="setLabel();" />
</s:Application>

   
    
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Set Labels for VSliderSet Labels for VSlider
2.TextField CSS ClassTextField CSS Class
3. tag represents a Label control<mx:Label> tag represents a Label control
4.Label with Label with <mx:Label>
5.Set all Label components to use the Blue colorSet all Label components to use the Blue color
6.Apply a drop shadow to a Label control by using expanded MXML syntax and inline syntaxApply a drop shadow to a Label control by using expanded MXML syntax and inline syntax
7.Styling LabelStyling Label
8. represents a Label control<s:Label> represents a Label control
9.Use ActionScript to declare two Label controlsUse ActionScript to declare two Label controls
10.Defines myName and myHometown variables and binds them to the text of Label controls in the initVars() methodDefines myName and myHometown variables and binds them to the text of Label controls in the initVars() method
11.Use bindable string variable to set the Label textUse bindable string variable to set the Label text
12.Binds variables to LabelBinds variables to Label
13.Create a region that is 50 pixels wide for the axis labels, titles, and tick marksCreate a region that is 50 pixels wide for the axis labels, titles, and tick marks
14.Set the labelGap property of a chart's axesSet the labelGap property of a chart's axes
15.Binding ActionScript variable to Label controlBinding ActionScript variable to Label control
16.Set Label text with attribute and nested tagSet Label text with attribute and nested tag
17.Define a Label tagDefine a Label tag
18.Selectable LabelSelectable Label
19.Truncate Label To Fit the widthTruncate Label To Fit the width
20.Label with ConstraintsLabel with Constraints
21.Format float number for LabelFormat float number for Label
22.Label ControlLabel Control
23.Label Control Link EventLabel Control Link Event
24.Apply a drop shadow to Label controls by using expanded MXML syntax and inline syntaxApply a drop shadow to Label controls by using expanded MXML syntax and inline syntax
25.Specify the value of the labelFunction property for one of the vertical axis renderers.Specify the value of the labelFunction property for one of the vertical axis renderers.
26.Use ActionScript to change value of Button's label property when button clickedUse ActionScript to change value of Button's label property when button clicked
27.Creates a Button control with a label and an icon:Creates a Button control with a label and an icon:
28.Button labelButton label
29.Set label for a Button with child tagSet label for a Button with child tag
30.label for check box and buttonlabel for check box and button
31.A Button control with the label "Hello world!":A Button control with the label
32.Truncate To Fit by setting truncateToFit to trueTruncate To Fit by setting truncateToFit to true
33.Celsius and Fahrenheit converterCelsius and Fahrenheit converter
34.Inline Celsius and Fahrenheit converterInline Celsius and Fahrenheit converter
35.without an explicit function callwithout an explicit function call