Rotate after Button creation completed : Rotate « Event « Flex






Rotate after Button creation completed

Rotate after Button creation completed
          
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
    
    
    <mx:Button id="button2" label="My Button With Customized Effect" >
        <mx:creationCompleteEffect>
            <mx:Rotate angleFrom="45" angleTo="0" duration="1000" />
        </mx:creationCompleteEffect>
    </mx:Button>
    
    
</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Rotating the button 45 degreesRotating the button 45 degrees
2.Rotate and MoveRotate and Move
3.Rotate image around z-axis, with applyChangesPostLayout property set to false.Rotate image around z-axis, with applyChangesPostLayout property set to false.