In a previous example, “Creating a custom scroll bar track skin on an MX TextArea control in Flex 4″, we saw how you can create a custom scroll bar track skin on an MX TextArea control in Flex 4 by setting the trackSkin, verticalScrollBarStyleName, and horizontalScrollBarStyleName and styles.

The following example shows how you can create a custom scroll bar thumn skin on an MX TextArea control in Flex 4 by setting the thumbSkin, verticalScrollBarStyleName, and horizontalScrollBarStyleName and styles.

The following example(s) require Flash Player 10 and the Adobe Flex 4 SDK. To download the Adobe Flash Builder 4 trial, see http://www.adobe.com/products/flex/. To download the latest nightly build of the Flex 4 SDK, see http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.
For more information on getting started with Flex 4 and Flash Builder 4, see the official Adobe Flex Team blog.

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2010/04/17/creating-a-custom-scroll-bar-thumb-skin-on-an-mx-textarea-control-in-flex-4/ -->
<s:Application name="MX_TextArea_ScrollBar_thumbSkin_test"
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx">
 
    <fx:Style>
        @namespace s "library://ns.adobe.com/flex/spark";
        @namespace mx "library://ns.adobe.com/flex/mx";
 
        mx|TextArea {
            verticalScrollBarStyleName: sbTrackStyles;
            horizontalScrollBarStyleName: sbTrackStyles;
        }
 
        .sbTrackStyles {
            thumbSkin: ClassReference("skins.CustomMXScrollBarThumbSkin");
        }
    </fx:Style>
 
    <mx:TextArea id="txtArea"
            horizontalScrollPolicy="on"
            verticalScrollPolicy="on"
            wordWrap="false"
            horizontalCenter="0" verticalCenter="0"
            width="400" height="100">
        <mx:text><fx:String source="lorem.txt" /></mx:text>
    </mx:TextArea>
 
</s:Application>

The default Spark skins for the MX/Halo controls/containers can be found in the Flex SDK at:
%Flex SDK%\frameworks\projects\sparkskins\src\mx\skins\spark\*.

And the custom MX ScrollBar thumb skin, skins/CustomMXScrollBarThumbSkin.mxml, is as follows:

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2010/04/17/creating-a-custom-scroll-bar-thumb-skin-on-an-mx-textarea-control-in-flex-4/ -->
<s:SparkSkin name="CustomMXScrollBarThumbSkin"
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark">
    <!-- states -->
    <s:states>
        <s:State name="up" />
        <s:State name="over" />
        <s:State name="down" />
        <s:State name="disabled" />
    </s:states>
 
    <fx:Script>
        <![CDATA[
            override protected function initializationComplete():void {
                useChromeColor = true;
                super.initializationComplete();
            }
        ]]>
    </fx:Script>
 
    <!-- background -->
    <s:Rect left="0" top="-1" right="0" bottom="-1" minWidth="14">
        <s:stroke>
            <s:SolidColorStroke color="0x5C5C5C" weight="1"/>
        </s:stroke>
        <s:fill>
            <s:SolidColor color="0xFFFFFF" />
        </s:fill>
    </s:Rect>
 
    <!-- fill -->
    <s:Rect left="1" top="0" right="1" bottom="0">
        <s:fill>
            <s:BitmapFill source="@Embed('assets/pattern_147.gif')" fillMode="repeat" />
        </s:fill>
    </s:Rect>
 
    <!-- highlight -->
    <s:Rect left="1" top="0" bottom="0" width="6">
        <s:fill>
            <s:SolidColor color="0xFFFFFF"
                          alpha="0.75"
                          alpha.over="0.33"
                          alpha.down="0.33" />
        </s:fill>
    </s:Rect>
 
    <!-- inside stroke -->
    <s:Rect left="1" top="0" right="1" bottom="0">
        <s:stroke>
            <s:LinearGradientStroke rotation="90" weight="1">
                <s:GradientEntry color="0xFFFFFF" 
                                 alpha="1"
                                 alpha.over="0.55"
                                 alpha.down="0.12" />
                <s:GradientEntry color="0xFFFFFF" 
                                 alpha="0.22" 
                                 alpha.over="0.121" 
                                 alpha.down="0.0264" />
            </s:LinearGradientStroke>
        </s:stroke>
    </s:Rect>
 
    <!-- drop shadow -->
    <s:Rect left="1" top="-2" right="1" height="1">
        <s:fill>
            <s:SolidColor color="0x000000" alpha="0.12" />
        </s:fill>
    </s:Rect>
    <s:Rect bottom="-3" left="1" right="1" height="2">
        <s:fill>
            <s:SolidColor color="0x000000" alpha="0.12" />
        </s:fill>
    </s:Rect>
    <s:Rect bottom="-2" left="1" right="1" height="1">
        <s:fill>
            <s:SolidColor color="0x000000" alpha="0.12" />
        </s:fill>
    </s:Rect>
 
</s:SparkSkin>

View source is enabled in the following example.

Background image pattern copyright of Squidfingers.com.

This entry is based on a beta version of the Flex 4 SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex 4 SDK.

 
About The Author

Peter deHaan

Peter deHaan currently works for Adobe on the Flex SDK QA team. While not working on Flex, Flash, and ColdFusion applications, Peter enjoys making up bios and writing in 3rd person. Peter's rarely updated blog can be found at blogs.adobe.com/pdehaan/, actionscriptexamples.com, airexamples.com, and coldfusionexamples.com.

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Anti-Spam Protection by WP-SpamFree