Add Move effect to TextInput : TextInput Style « Components « Flex






Add Move effect to TextInput

Add Move effect to TextInput
          
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

    <mx:Move id="moveEffect" xFrom="100" />

    <mx:VBox>
        <mx:TextInput id="textInput1" creationCompleteEffect="{moveEffect}" />
        <mx:TextInput id="textInput2" creationCompleteEffect="{moveEffect}" />
        <mx:TextInput id="textInput3" creationCompleteEffect="{moveEffect}" />
        <mx:TextInput id="textInput4" creationCompleteEffect="{moveEffect}" />
    </mx:VBox>

</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Set width for TextInputSet width for TextInput
2.Set style from the value in TextInputSet style from the value in TextInput
3.TextInput Disabled ColorsTextInput Disabled Colors
4.Using getStyle() and setStyle() methods to change the Button's fontSize style and display the new size in the TextInputUsing getStyle() and setStyle() methods to change the Button's fontSize style and display the new size in the TextInput
5.Specify Styles for HTML in a TextFieldSpecify Styles for HTML in a TextField