Nest Parallel into Sequence : Parallel « Effects « Flex






Nest Parallel into Sequence

Nest Parallel into Sequence
         
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Sequence id="sequenceEffect">
      <mx:Parallel>
        <mx:Fade />
        <mx:Move xFrom="10" />
      </mx:Parallel>
      <mx:Pause duration="1000" />
      <mx:Rotate />
    </mx:Sequence>
    
    <mx:TextInput creationCompleteEffect="{sequenceEffect}" />
</mx:Application>

   
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Parallel EffectParallel Effect
2.Parallel Effect With EasingParallel Effect With Easing
3.Create and use Parallel class in ActionScriptCreate and use Parallel class in ActionScript