Binding ActionScript variable to Label control : Label « Components « Flex






Binding ActionScript variable to Label control

Binding ActionScript variable to Label control
           
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:Script>
    
      [Bindable]
      private var me:String="Rich Tretola"; 
  
  </mx:Script>
  <mx:Panel title="Simple Binding"  width="500" height="90" layout="horizontal">    
      <mx:Label text="{me}"/>
  </mx:Panel>
</mx: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.Set Label text with attribute and nested tagSet Label text with attribute and nested tag
16.Define a Label tagDefine a Label tag
17.Selectable LabelSelectable Label
18.Truncate Label To Fit the widthTruncate Label To Fit the width
19.Label with ConstraintsLabel with Constraints
20.Format float number for LabelFormat float number for Label
21.Label ControlLabel Control
22.Label Control Link EventLabel Control Link Event
23.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
24.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.
25.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
26.Creates a Button control with a label and an icon:Creates a Button control with a label and an icon:
27.Block changes Button's label property when the user clicks the buttonBlock changes Button's label property when the user clicks the button
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