Sequence Effect : Sequence « 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 » SequenceScreenshots 
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
w_w__w.ja__va__2_s.__c___o_m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.