Skip to main content
Participant
February 9, 2007
Question

Gradually resize movie clip

  • February 9, 2007
  • 1 reply
  • 205 views
Hello,
I am trying to make a site for myself and I would like to make a movie clip which will be changed in size (scaled) when specific buttons are pressed. I would like to make a gradual transition from one size to the other using actionscript . I tried to find a tutorial on this but nothing came up, can anyone give me any advice on how to do this? Any information wil be very helpfull. Thanks.
This topic has been closed for replies.

1 reply

Inspiring
February 9, 2007
Use the tween class for example.

button_mc.onRelease = function(){
new mx.transitions.Tween(clip_mc, '_xscale', mx.transitions.easing.Elastic.easeOut, 0, 100, 5, true);
}

lots more info in flash help. look up transition manager