Add Move effect to TextInput : TextInput Style « Components « 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 » Components » TextInput StyleScreenshots 
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
w__w_w__.__j__a___va__2s___._c_o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.