Hello,
I’ve used this code in AS2 and want it for a multiple buttons. I want once the movie clip is pressed to (do the below) but it does not seem to work. how do I get movie clip to go a specific frame label? The movie clip code is shown in the second part. The code inside the movieclip.
on (press)
{
gotoAndplay (“one”);
}
I’m using this code for the scale tween on the movie clip
import mx.transitions.Tween;
import flash.geom.ColorTransform;
import flash.geom.Transform;
var myTween:Tween = new Tween(scale_mc1, “_xscale”, mx.transitions.easing.Elastic.easeOut, 100, 200, 1, true);
var myTween1:Tween = new Tween(scale_mc1, “_yscale”, mx.transitions.easing.Elastic.easeOut, 100, 200, 1, true);
var myTween2:Tween = new Tween(scale_mc1, “_xscale”, mx.transitions.easing.Elastic.easeOut, 200, 100, 1, true);
var myTween3:Tween = new Tween(scale_mc1, “_yscale”, mx.transitions.easing.Elastic.easeOut, 200, 100, 1, true);
scale_mc1.onRollOver = function():Void {
myTween.start();
myTween1.start();
};
scale_mc1.onRollOut = function():Void {
myTween2.start();
myTween3.start();
};