Use ActionScript to set up resize effect : Resize Effect « Effects « Flex






Use ActionScript to set up resize effect

Use ActionScript to set up resize effect
    
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

    <mx:Script>
        
            import mx.effects.Resize;
            
            public function resizePanel():void
            {
                var myResize:Resize = new Resize();
                myResize.target = myPanel;
                myResize.widthBy = 100;
                myResize.heightBy = 100;
                myResize.play();
            }
            
      
    </mx:Script>
    
    <mx:Panel id="myPanel" />
    <mx:Button label="Resize" click="resizePanel()" />
    
</mx:Application>

   
    
    
    
  








Related examples in the same category

1.Using Resize effect to enlarge an image on mouse-overUsing Resize effect to enlarge an image on mouse-over
2.Two Resize effects for a Button controlTwo Resize effects for a Button control
3.Define effect using ActionScript with ResizeDefine effect using ActionScript with Resize
4.Use Resize effect when the user moves the mouse over itUse Resize effect when the user moves the mouse over it
5.Add resize effect to transitionAdd resize effect to transition
6.Panel resize effectPanel resize effect
7.Use two Resize effects for a Button control.Use two Resize effects for a Button control.
8.Resize Easing Effect
9.Add a transition to use a Wipe effect and a Resize effect with an easing function to animate the transition from view state to view stateAdd a transition to use a Wipe effect and a Resize effect with an easing function to animate the transition from view state to view state
10.Resize Image EffectResize Image Effect
11.Reverse Resize EffectReverse Resize Effect
12.Apply a Resize effect to multiple Button controls by using data binding with the effect's targets propertyApply a Resize effect to multiple Button controls by using data binding with the effect's targets property
13.Resize effectsResize effects
14.Using the Resize effect on an Image controlUsing the Resize effect on an Image control
15.Resizing a button that starts small and grows biggerResizing a button that starts small and grows bigger
16.Increase width and height of a Button control by 15 pixels each time the user selects itIncrease width and height of a Button control by 15 pixels each time the user selects it
17.Resize Target by PropertiesResize Target by Properties