Using a Glow effect on the button : Glow Effect « Effects « Flex






Using a Glow effect on the button

Using a Glow effect on the button
    
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    backgroundColor="white">
    <mx:Glow id="myEffect" duration="750" alphaFrom="1.0" alphaTo="0.3"
        blurXFrom="0.0" blurXTo="50.0" blurYFrom="0.0" blurYTo="50.0"
        knockout="true" color="0xFF0000" />
    <mx:Button label="With Knock Out" mouseDownEffect="{myEffect}" />
</mx:Application>

   
    
    
    
  








Related examples in the same category

1.Playing an effect with ActionScript and Glow controlPlaying an effect with ActionScript and Glow control
2.Glow effectStart eventGlow effectStart event
3.Glow effectEnd eventGlow effectEnd event
4.Glow EffectGlow Effect
5.Apply Glow effectApply Glow effect
6.Glow activate eventGlow activate event
7.Glow deactivate eventGlow deactivate event
8.Glow tweenUpdate eventGlow tweenUpdate event
9.Glow tweenStart eventGlow tweenStart event
10.Glow tweenEnd eventGlow tweenEnd event