DropShadowFilter for filters : DropShadowFilter « Effects « Flex






DropShadowFilter for filters

DropShadowFilter for filters
  
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:flash="flash.filters.*">
    <mx:Label text="DropShadowFilter" fontSize="20">
        <mx:filters>
            <flash:DropShadowFilter distance="10" angle="45" />
        </mx:filters>
    </mx:Label>
    <mx:Label text="DropShadowFilter (inline)" 
              fontSize="20"
              filters="{[new DropShadowFilter(10, 45)]}" />
</mx:Application>

   
    
  








Related examples in the same category

1.Apply DropShadowFilter to controlApply DropShadowFilter to control
2.Use ActionScript to apply DropShadowFilter to Label's filterUse ActionScript to apply DropShadowFilter to Label's filter
3.Apply a white shadow to the Label controlApply a white shadow to the Label control
4.Graphics DropShadowFilter
5.Apply Filter with ActionScriptApply Filter with ActionScript