Hi,
Please help if you can. I have a movie clip (panel1) that is motion tweened (in as) to go left-right across the stage. What would be the code to make it stop after a couple of times of going back and forth (disappearing at the end) AND then have a second movie clip activate (that’s been on the stage - but behind it all along).
Thanks.
//code for the tween
var xt:Tween = new Tween(panel1, “_x”, Regular.easeIn, -180, 750, 60, false);
xt.onMotionFinished = function() {
this.yoyo();
};