Transform a button around : Button Effect « Components « Flex






Transform a button around

Transform a button around
            

<mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
     xmlns:s="library://ns.adobe.com/flex/spark">
    
    <mx:Script>
        
            import mx.core.UIComponent;
            
            private function pushOver( evt:MouseEvent ):void
            {
                var angle:Number = btn1.rotationZ + 90;
                btn1.transformAround( new Vector3D( btn1.width, btn1.height / 2 ), null, new Vector3D( 0, 0, angle ) );
            }
      
    </mx:Script>
    
    <mx:VBox>
        <mx:Button id="btn1" label="push over" click="pushOver(event);" />
    </mx:VBox>
    
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Using the Move effect to move the button diagonallyUsing the Move effect to move the button diagonally
2.Button with rollOverEffect propertyButton with rollOverEffect property
3.Button with mouseDownEffectButton with mouseDownEffect
4.Button mouse down effectButton mouse down effect
5.Button creationCompleteEffectButton creationCompleteEffect
6.Button mouse down and mouse up effectButton mouse down and mouse up effect
7.Add SoundEffect to Button mouse down effectAdd SoundEffect to Button mouse down effect
8.Button WipeLeftButton WipeLeft
9.Use Matrix3D to Apply Transformations Within a LayoutUse Matrix3D to Apply Transformations Within a Layout