Components Flex


 
 
    xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:mx="library://ns.adobe.com/flex/mx" 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    initialize="initText()"> 
     
    public function initText():void { 
         //The following is on one line. 
         myText.text="This string contains a return, \n, tab, \t, and quotation mark, \". " + "This string also contains less than, <, greater than, >, " + "ampersand, &, and apostrophe, ', characters."; 
    }