Mega Code Archive

 
Categories / Flex / Effects
 

Add Fade and Move effect into Parallel

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Parallel id="parallelEffect">       <mx:Fade />       <mx:Move xFrom="100" />     </mx:Parallel>          <mx:TextInput creationCompleteEffect="{parallelEffect}" /> </mx:Application>