Accessibility

Search Community Help

Results from
What is this?
Community Help uses Google Custom Search to selectively index Adobe learning and support content and the best from the Adobe community.


Results for blur effect + "Flex"
Give us feedback
Show:
  1. 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:

    import 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];
    
    Expand code snippet Collapse code snippet

Results 1 - 10 of about 219,000

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 ...

Blur transition effect

You should have get a blur transition effect when you move your mouse over the
photo. ... More ActionScript, Flash and Flex jobs in the Employment Section. ...

mx.effects.Blur (Flex 3.5)

Dec 16, 2009 ... The Blur effect lets you apply a blur visual effect to a component. A Blur
effect softens the details of an image. You can produce blurs ...

mx.effects.Blur (LiveCycle ES2)

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. ...

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.effectClasses.BlurInstance (LiveCycle ES2)

The BlurInstance class implements the instance class for the Blur effect. Flex
creates an instance of this class when it plays a Blur effect; ...

B Index (Flex 3.5)

Specifies whether Flex tries to keep the minimum and maximum values rooted at
zero ..... 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.effects.Blur (Beta)

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. A Blur effect softens
...

Flex and Flash Developer – Jesse Warden dot Kizz-ohm » Blog ...

Jan 24, 2006 ... Jason Graham from Flexcoders had the same desire I had; how to get the cool
Alert blur effect that Flex 2 has in Flex 1.5? ...

All Products