Event Effects : Effect Event « Effects « Flex






Event Effects

Event Effects
   

<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->



    <!-- behaviors\EventEffects.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <fx:Script> 
         
        import mx.effects.*; 
        import mx.events.EffectEvent; 
        import mx.core.UIComponent; 
        private function endSlowFadeEffectListener(eventObj:EffectEvent):void 
        { 
            // Access the effect object. 
            var effectObj:Effect = Effect(eventObj.target); 
            // Access the target component of the effect. 
            var effectTarget:UIComponent = 
            UIComponent(eventObj.effectInstance.target); 
            myTA.text = myTA.text + effectTarget.id + ' : '; 
            myTA.text = myTA.text + " " + eventObj.type + '\n'; 
        } 
      
    </fx:Script>
    <fx:Declarations>
        <s:Fade id="slowFade" duration="2000"
            effectEnd="endSlowFadeEffectListener(event);" targets="{[myButton1, myButton2, myButton3, myButton4]}" />
    </fx:Declarations>
    <s:Button id="myButton1" label="Button 1"
        creationCompleteEffect="{slowFade}" />
    <s:Button id="myButton2" label="Button 2"
        creationCompleteEffect="{slowFade}" />
    <s:Button id="myButton3" label="Button 3"
        creationCompleteEffect="{slowFade}" />
    <s:Button id="myButton4" label="Button 4"
        creationCompleteEffect="{slowFade}" />
    <s:TextArea id="myTA" height="125" width="250" />
</s:Application>

   
    
    
  








Related examples in the same category

1.Event listener for endEffect eventEvent listener for endEffect event
2.Dispatch effectStart event and effectEnd event once per targetDispatch effectStart event and effectEnd event once per target
3.Get UIComponent from EffectEventGet UIComponent from EffectEvent
4.Play Move effect creationComplete event handlerPlay Move effect creationComplete event handler
5.Move effect end eventMove effect end event
6.Define an event listener for the endEffect eventDefine an event listener for the endEffect event