Hi there forum folk,
This is my first ever post, so please excuse any posting protocol errors. One lives and learns.
Anyway I have this script below that is attached to a button called Espanol_but that when the button is clicked(released) moves itself and several other buttons and movie clips around the stage using the tweenClass.
on (release) {
import mx.transitions.*;
import mx.transitions.easing.*;
// Espanol_nut jumps to the ground
twnBezX = new BezierTween(EspanolNut, "_x", 119.5, 0, 7, false, 120, 70);
twnBezY = new BezierTween(EspanolNut, "_y", 135.2, 460, 7, false, -50, 200);
twnBezX._tl = this;
twnBezX.onMotionFinished = function(){
this._tl.tweenDone();
}
***PAUSE***
//Language buttons bounce off stage to the left
var xPosT:Tween = new Tween(Espanol_but, "_x", Elastic.easeInOut, 117.1, -500, 2.7, true);
var xScaleT:Tween = new Tween(Espanol_but, "_rotation", Elastic.easeInOut, 0, 360, 4, true);
var xPosT:Tween = new Tween(Francais_but, "_x", Elastic.easeInOut, 322.1, -500, 1.7, true);
var xScaleT:Tween = new Tween(Francais_but, "_rotation", Elastic.easeInOut, 0, 360, 2.5, true);
var xPosT:Tween = new Tween(Deutsch_but, "_x", Elastic.easeInOut, 527.5, -500, 3.2, true);
var xScaleT:Tween = new Tween(Deutsch_but, "_rotation", Elastic.easeInOut, 0, 360, 4.5, true);
***PAUSE***
//Francais & Deutsch nuts bounce off stage to the left
var xPosT:Tween = new Tween(FrancaisNut, "_x", Elastic.easeInOut, 324.4, -500, 1.7, true);
var xScaleT:Tween = new Tween(FrancaisNut, "_rotation", Elastic.easeInOut, 0, 360, 2.5, true);
var xPosT:Tween = new Tween(DeutschNut, "_x", Elastic.easeInOut, 529.9, -500, 2.7, true);
var xScaleT:Tween = new Tween(DeutschNut, "_rotation", Elastic.easeInOut, 0, 360, 4, true);
***PAUSE***
//Year buttons bounce on from right of stage
var xScaleT:Tween = new Tween(Year4, "_rotation", Elastic.easeInOut, 90, 0, 3.5, true);
var xPosT:Tween = new Tween(Year4, "_x", Elastic.easeInOut, 1200, 416.9, 3.5, true);
var xScaleT:Tween = new Tween(Year3, "_rotation", Elastic.easeInOut, 90, 0, 2.5, true);
var xPosT:Tween = new Tween(Year3, "_x", Elastic.easeInOut, 1200, 167.4, 2.5, true);
var xScaleT:Tween = new Tween(Year6, "_rotation", Elastic.easeInOut, 90, 0, 3.9, true);
var xPosT:Tween = new Tween(Year6, "_x", Elastic.easeInOut, 1200, 416.9, 4, true);
var xScaleT:Tween = new Tween(Year5, "_rotation", Elastic.easeInOut, 90, 0, 2.9, true);
var xPosT:Tween = new Tween(Year5, "_x", Elastic.easeInOut, 1200, 167.4, 3, true);
}
Right…What I want to do is pause the executiuon of the code for about 2 seconds at each point that i’ve marked the code above with the word PAUSE.
That way there is a slight lag between each of the buttons and movie clips animating around the stage.
Please can someone help me wih the code I need to make this happen, as I don’t really understand AS too well and need to get this working.
Thanks so much in advance if you can help me with the code I need.
mrdoodle