Sequence Effect : Sequence « Effects « Flex






Sequence Effect

Sequence Effect
    
    

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

    <mx:Sequence id="sequenceEffect" target="{myPanel}">
        <mx:Resize widthBy="-150" heightBy="-150" />
        <mx:Blur blurXTo="0" blurYTo="0" />
    </mx:Sequence>
    
    <mx:Panel title="Panel" id="myPanel" width="100" height="100" />
    
    <mx:Button label="Sequence Effect" click="sequenceEffect.play()" />
    
</mx:Application>

   
    
    
    
  








Related examples in the same category

1.Sequence Effect With EasingSequence Effect With Easing
2.Play a SequencePlay a Sequence
3.Nesting two parallel composites in a sequence
4.Hide and show a controlHide and show a control
5.Using AnimateProperty to animate control by propertyUsing AnimateProperty to animate control by property
6.Animate the scaleX property of a controlAnimate the scaleX property of a control