main.mxml
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Applicationxmlns:mx="http://www.adobe.com/2006/mxml"
- layout="vertical"
- verticalAlign="middle"
- backgroundColor="white">
- <mx:Stringid="lorem" source="lorem.txt" />
- <mx:ApplicationControlBardock="true">
- <mx:CheckBoxid="checkBox"
- label="liveScrolling:"
- labelPlacement="left"
- selected="true"/>
- </mx:ApplicationControlBar>
- <mx:TextAreaid="textArea"
- text="{lorem}"
- liveScrolling="{checkBox.selected}"
- editable="false"
- condenseWhite="true"
- width="100%"
- height="100%"/>
- </mx:Application>