Components Flex



    xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:s="library://ns.adobe.com/flex/spark">
    
        
    

    
         
        [Bindable] 
        private var newText:String = "

This is the new text.

"; 
        private function insertNewText():void { 
            myRET.insertText(newText); 
        } 
        private function appendNewText():void { 
            myRET.appendText(newText); 
        } 
      
    

    
        
            
                This is paragraph 1.
                This is paragraph 2.