Effects Flex


    
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark"
    creationComplete="createEffect(event);">
    
        
    

     
         
        // Import effect class. 
        import spark.effects.Resize; 
        // Create a resize effect 
        private var resizeLarge:Resize = new Resize(); 
        private function createEffect(eventObj:Event):void { 
            // Set the TextArea as the effect target. 
            resizeLarge.target=myTA; 
            // Set resized width and height, and effect duration. 
            resizeLarge.widthTo=150; 
            resizeLarge.heightTo=150; 
            resizeLarge.duration=750; 
        } 
      
    

    
    
            text="Here is some text." />