Apply style to Button by using the setStyle() method : Button Properties « Components « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Components » Button PropertiesScreenshots 
Apply style to Button by using the setStyle() method
Apply style to Button by using the setStyle() method
       

<!--
Code from Flex 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 
  (1proper attribution to Adobe is given as the owner of the user guide; and 
  (2any 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/

-->


    <!-- skins/ApplyProgrammaticSkinsSetStyle.mxml -->
<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> 
         
        public function changeSkins():void 
            if (cb1.selected) { 
                b1.setStyle("upSkin", ButtonStatesSkin)
                b1.setStyle("downSkin", ButtonStatesSkin)
                b1.setStyle("overSkin", ButtonStatesSkin)
                b1.setStyle("disabledSkin", ButtonStatesSkin)
            else 
                b1.setStyle("upSkin"null)
                b1.setStyle("downSkin"null)
                b1.setStyle("overSkin"null)
                b1.setStyle("disabledSkin"null)
            
        
      
    </fx:Script>
    <mx:Button id="b1" label="Click Me" />
    <mx:CheckBox id="cb1" label="Apply custom skin class"
        click="changeSkins();" />
</s:Application>

   
    
    
    
    
    
    
  
Related examples in the same category
1.Set Button color to RedSet Button color to Red
2.Set Button LabelSet Button Label
3.Set Button corner radiusSet Button corner radius
4.Set Button font styleSet Button font style
5.Set button color to red with setStyleSet button color to red with setStyle
6.Set button border color to yellow with setStyleSet button border color to yellow with setStyle
7.Set button font style to italic with setStyleSet button font style to italic with setStyle
8.Set button corder radius to 10 with setStyleSet button corder radius to 10 with setStyle
9.Button text with the class selector is redButton text with the class selector is red
10.Button text with the implicit type selector is yellowButton text with the implicit type selector is yellow
11.Button's width and heightButton's width and height
12.Button Component
13.Button with inner scriptButton with inner script
14.Button DemoButton Demo
15.Button with Icon DemoButton with Icon Demo
16.Button Icon Label PlacementButton Icon Label Placement
17.Button with minimium sizeButton with minimium size
18.Set right position for ButtonSet right position for Button
19.Set the button width and heightSet the button width and height
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.