-
http://livedocs.adobe.com/flex/3/html/Filtering_Visual_Objects_10.html
The following example creates a circle object using the drawCircle() method of the Graphics class and applies a blur filter to it:
Expand code snippet Collapse code snippetimport flash.display.Sprite; import flash.filters.BitmapFilterQuality; import flash.filters.BlurFilter; // Draw a circle. var redDotCutout:Sprite = new Sprite(); redDotCutout.graphics.lineStyle(); redDotCutout.graphics.beginFill(0xFF0000); redDotCutout.graphics.drawCircle(145, 90, 25); redDotCutout.graphics.endFill(); // Add the circle to the display list. addChild(redDotCutout); // Apply the blur filter to the rectangle. var blur:BlurFilter = new BlurFilter(); blur.blurX = 10; blur.blurY = 10; blur.quality = BitmapFilterQuality.MEDIUM; redDotCutout.filters = [blur];
Results 1 - 10 of about 65,800
- Flex 3 - Blur filter
-
The BlurFilter class smears, or blurs, a display object and its contents. Blur
effects are useful for giving the impression that an object is out of focus ... - mx.effects.effectClasses.BlurInstance (ColdFusion 9)
-
The BlurInstance class implements the instance class for the Blur effect. Flex
creates an instance of this class when it plays a Blur effect; ... - Flex 3 - Creating a custom data effect
-
Because you set the filter property of the first Blur effect to removeItem ,
Flex only applies the effect to items added to the list control. ... - mx.effects.Blur (ColdFusion 9)
-
The Blur effect lets you apply a blur visual effect to a component. .... set of
targets This function is used by Flex when a data change effect is run. ... - B Index (Flex 3.4)
-
Aug 13, 2009 ... Specifies whether Flex tries to keep the minimum and maximum ..... The Blur
effect lets you apply a blur visual effect to a component. ... - Blur Effect in Flex 1.5 | EverythingFlex: Flex & AIR
-
Dec 29, 2005 ... I have posted the Blur sample here for download and also will have
ColorTransform, DropShadow, and Glow available within the IFBIN Flex By ... - mx.core.Application (Flex 3.4)
-
Aug 13, 2009 ... Flex defines a default, or Application, container that lets you start adding
content ...... A Blur effect softens the details of an image. ... - mx.effects.Blur (Flex 4 Beta)
-
Oct 3, 2009 ... In Flex 4, use the AnimateFilter effect with a Blur bitmap filter. The Blur
effect lets you apply a blur visual effect to a component. ... - All Classes (Flex 3.4)
-
Aug 13, 2009 ... mx.effects, The Blur effect lets you apply a blur visual effect to a ...
functions to implement bounce motion with Flex effect classes. ... - Adobe Forums: Zoom Blur Effect?
-
Does anyone have an implementation of a zoom / radial blur effect in Flex? Or an
idea to how it can be achieved by extending the Blur effect ...