Blur Demo : Blur Effect « Effects « Flex






Blur Demo

Blur Demo
         
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#eeeeee">
  
  <mx:Blur id="myBlur" target="{myBlurredImage}" blurXTo="20" blurYTo="20"/>
    
  <mx:Label x="22" y="24" text="Blurring an image" fontSize="14" fontWeight="bold"/>
  <mx:Image source="logo.jpg" x="22" y="55"/>
  <mx:Image id="myBlurredImage" source="logo.jpg" x="366" y="55"/>
  <mx:Button x="22" y="315" label="Blur Image" click="myBlur.play()"/>

</mx:Application>

   
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Graphics BlurFilterGraphics BlurFilter
2.Define a BlurFilter and the animation on that filter.Define a BlurFilter and the animation on that filter.
3.Using a Blur effect on a buttonUsing a Blur effect on a button
4.Three-phase blur effectThree-phase blur effect
5.Apply Blur effectApply Blur effect
6.Blur a controlBlur a control
7.Resize as blurResize as blur