Effects Flex


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

     
         
        // Import the effect class. 
        import mx.effects.*; 
        public function createLargeMask(targ:Object, 
        bounds:Rectangle):Shape { 
            // Create the Shape object. 
            var largeMask:Shape = new Shape(); 
            // Access the Graphics object of the 
            // Shape object to draw the mask. 
            largeMask.graphics.beginFill(0x00FFFF, 0.5); 
            largeMask.graphics.drawRoundRect(0, 0, bounds.width + 10, 
            bounds.height - 10, 3); 
            largeMask.graphics.endFill(); 
            // Return the mask. 
            return largeMask; 
        } 
      
    

    
                    showTarget="false" />
        
    

            paddingTop="10" paddingBottom="10">
                    height="100" width="150" />