Skinning subcomponents : Skin « Style « Flex
- Flex
- Style
- Skin
Skinning subcomponents
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
[Bindable]
private var theText:String = "this is a test.";
</mx:Script>
<mx:Style>
.myScrollStyle {
upArrowUpSkin:Embed("a.gif");
downArrowUpSkin:Embed("b.gif");
}
</mx:Style>
<mx:TextArea id="ta1"
width="400"
height="50"
verticalScrollPolicy="on"
verticalScrollBarStyleName="myScrollStyle"
text="{theText}" />
</mx:Application>
Related examples in the same category
1. | Skinning a Button component using inline styles | | |
2. | Use graphical skins for the up, over, and down states of the Button control | | |
3. | Set skins for a Button control by using the overSkin, upSkin, and downSkin style properties | | |
4. | A SkinnableContainer with a Line component between two Button components | | |
5. | A SkinnableContainer container with four Button controls as its children | | |
6. | Draw a border around a VGroup that contains Button controls without using a custom skin class | | |
7. | Using graphical skins for the up, over, and down states of the Button control | | |
8. | Replace MX Button control's up, over, and down skins with individual symbols from a SWF file | | |
9. | Set Button skins with overSkin, upSkin, and downSkin style properties | | |
10. | Using static SWF assets as skins | | |
11. | Creating graphical skins | | |
12. | Assign graphic or programmatic skin to two or more skins | | |
13. | Applying graphical overSkin, upSkin, downSkin inline | | |