Use this[control label] to reference controls declared : Spark component « Components « Flex






Use this[control label] to reference controls declared

Use this[control label] to reference controls declared
           

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
    public function changeLabel(s:String):void {
        s = "myButton" + s;
        this[s].setStyle("fontStyle","italic");
        this[s].setStyle("fontSize","18");
    }
  </mx:Script>
    <mx:Button id="myButton1" click="changeLabel('2')" label="Change Other Button's Styles" />
    <mx:Button id="myButton2" click="changeLabel('1')" label="Change Other Button's Styles" />
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Basic format of an MXML application that uses the Spark component setBasic format of an MXML application that uses the Spark component set
2.Use MX DataGrid with Spark Application, VerticalLayout, and Button componentsUse MX DataGrid with Spark Application, VerticalLayout, and Button components
3.Use id to reference controlUse id to reference control
4.Id property for ButtonId property for Button
5.Create a Spark Button control in MXML.Create a Spark Button control in MXML.
6.Set control to visibleSet control to visible
7.nonzero padding and gapsnonzero padding and gaps
8.Percetage widthPercetage width
9.Set min widthSet min width
10.Get UI controls's widthGet UI controls's width
11.Visible propertiesVisible properties
12.Percentage-based sizing
13.Using various Alpha propertiesUsing various Alpha properties
14.Using the id property with MXML tagsUsing the id property with MXML tags
15.Set component properties as tag attributesSet component properties as tag attributes
16.Set the property using the value of the static constant
17.Explicitly specify the default propertyExplicitly specify the default property
18.Use ActionScript String to insert a newline characterUse ActionScript String to insert a newline character
19.Convert calculation result to String and set to LabelConvert calculation result to String and set to Label
20.Id property for ControlId property for Control
21.Call the initDate() function and writes a message in flexlog.txtCall the initDate() function and writes a message in flexlog.txt
22.Log the component sizes to flashlog.txtLog the component sizes to flashlog.txt
23.Use width and height properties to explicitly set its sizeUse width and height properties to explicitly set its size
24.Convert object to Flex Display ObjectConvert object to Flex Display Object
25.Create Components From DescriptorsCreate Components From Descriptors
26.Use percentage to control the widthUse percentage to control the width
27.Setting enabled to false makes a component unavailable.Setting enabled to false makes a component unavailable.
28.visible controls whether an item is visible on stagevisible controls whether an item is visible on stage
29.Border properties set in MXML mark-upBorder properties set in MXML mark-up
30.Use child tags with the dot notation to define property overridesUse child tags with the dot notation to define property overrides
31.Use the x and y properties to reposition a Button controlUse the x and y properties to reposition a Button control
32.Set Pane and Button propertiesSet Pane and Button properties
33.A linker dependency on the Button controlA linker dependency on the Button control