The following example shows how you can set the vertical scrollbar policy on a Flex TextArea control by setting the verticalScrollPolicy property to one of the constants in the mx.core.ScrollPolicy class.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/08/26/setting-the-vertical-scrollbar-policy-on-a-textarea-control-in-flex/ -->
<mx:Application name="TextArea_verticalScrollPolicy_test"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <mx:Script>
        <![CDATA[
            import mx.core.ScrollPolicy;
        ]]>
    </mx:Script>

    <mx:String id="lorem" source="data/lorem.html" />

    <mx:ApplicationControlBar dock="true">
        <mx:Form styleName="plain">
            <mx:FormItem label="verticalScrollPolicy:">
                <mx:ComboBox id="comboBox"
                        dataProvider="{[ScrollPolicy.AUTO,
                                        ScrollPolicy.ON,
                                        ScrollPolicy.OFF]}" />
            </mx:FormItem>
        </mx:Form>
        <mx:Spacer width="100%" />
        <mx:Button label="Lorem Ipsum me!"
                click="textArea.htmlText = lorem;" />
        <mx:Button label="Clear text"
                click="textArea.htmlText = '';" />
    </mx:ApplicationControlBar>

    <mx:TextArea id="textArea"
            verticalScrollPolicy="{comboBox.selectedItem}"
            textAlign="justify"
            width="100%"
            height="100%" />

</mx:Application>

View source is enabled in the following example.

 
Tagged with:
 
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