Search Flex Components Free

Custom Search

December 20, 2007

Flex Control text Source Code Sample

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

Related Flex Tutorials