Mark
Mark

Reputation: 10964

Is it possible to Blur a VBox in Flex?

I want to blur a VBox component when my mouse is out of it and unblur it when my cursor comes back to the VBox region. How can I blur a VBox in Flex?

Upvotes: 1

Views: 400

Answers (1)

Mark
Mark

Reputation: 10964

Yes use the following

<mx:GlowFilter id="glow" blurX="12" blurY="12" color="#88AEF7" quality="2" strength="1"/>
<mx:BlurFilter id="blur" blurX="4" blurY="4" quality="2" />
<mx:DropShadowFilter id="dropShadow" alpha="0.35" blurX="6" blurY="6" distance="6" color="#000000" angle="90" />
<mx:BevelFilter id="bevel" angle="45" blurX="0.5" blurY="0.5" distance="4" strength="0.7" highlightAlpha="0.7" shadowAlpha="0.7"/>

any other component

Upvotes: 1

Related Questions