Search Flex Components Free

Custom Search

December 20, 2007

Flex textarea sample

Flex textarea sample:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml" backgroundAlpha="0">
<mx:TextArea width="400" height="100"> <mx:text>This is a multiline, editable TextArea component. If you need a non-editable multiline component, use Text.</mx:text> </mx:TextArea>
<mx:TextArea width="400" height="100"> <mx:htmlText><![CDATA[This is <font color="#FF0000">HTML text</font> in a <b>TextArea component</b>. Using the <u>htmlText attribute</u> of the <font color="#008800">TextArea component</font> you can use basic HTML markup.]]></mx:htmlText> </mx:TextArea>
</mx:Application>

Related Flex Tutorials