Glow tweenEnd event : Glow Effect « Effects « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Effects » Glow EffectScreenshots 
Glow tweenEnd event
Glow tweenEnd event
       

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
    
    <mx:Script>
        
            private function onEventevent : Event void
            {
                traceevent.type + " event occurred" );
            }
      
    </mx:Script>
    
    <mx:Button label="Play Effect" >
        <mx:mouseDownEffect>
            <mx:Glow color="#FF0000" 
                tweenEnd="onEvent( event )"/>
        </mx:mouseDownEffect>
    </mx:Button>
    
</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.Using a Glow effect on the buttonUsing a Glow effect on the button
3.Glow effectStart eventGlow effectStart event
4.Glow effectEnd eventGlow effectEnd event
5.Glow EffectGlow Effect
6.Apply Glow effectApply Glow effect
7.Glow activate eventGlow activate event
8.Glow deactivate eventGlow deactivate event
9.Glow tweenUpdate eventGlow tweenUpdate event
10.Glow tweenStart eventGlow tweenStart event
w_w___w__.ja_v__a_2s__.c_o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.