1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
   | import mx.transitions.Tween; 
import mx.transitions.easing.*;
this.fenetre.onPress = function () {
	this.swapDepths(100);
};
this.fenetre1.onPress = function () {
	this.swapDepths(100);
};
this.fenetre2.onPress = function () {
	this.swapDepths(100);
};
 
var maTween1:Tween = new Tween( this.fenetre, "_yscale", Elastic.easeOut, this.fenetre._yscale, this.fenetre._yscale-500, 75, false ); 
var maTween2:Tween = new Tween( this.fenetre, "_xscale", Elastic.easeOut, this.fenetre._xscale, this.fenetre._xscale-500, 75, false ); 
var maTween11:Tween = new Tween( this.fenetre, "_y", Elastic.easeOut, this.fenetre._y, this.fenetre._y-200, 75, false ); 
var maTween21:Tween = new Tween( this.fenetre, "_x", Elastic.easeOut, this.fenetre._x, this.fenetre._x-0, 75, false ); 
// detection du clic sur clip :
fenetre.onRelease = function (Void):Void {
	maTween1.yoyo();
	maTween2.yoyo();
	maTween11.yoyo();
	maTween21.yoyo();
} 
 
var maTween5:Tween = new Tween( this.fenetre1, "_yscale", Elastic.easeOut, this.fenetre1._yscale, this.fenetre1._yscale-500, 75, false ); 
var maTween6:Tween = new Tween( this.fenetre1, "_xscale", Elastic.easeOut, this.fenetre1._xscale, this.fenetre1._xscale-500, 75, false ); 
var maTween51:Tween = new Tween( this.fenetre1, "_y", Elastic.easeOut, this.fenetre1._y, this.fenetre1._y-300, 75, false ); 
var maTween61:Tween = new Tween( this.fenetre1, "_x", Elastic.easeOut, this.fenetre1._x, this.fenetre1._x-0, 75, false ); 
 
fenetre1.onRelease = function (Void):Void {
	maTween5.yoyo();
	maTween6.yoyo();
	maTween51.yoyo();
	maTween61.yoyo();
} 
 
var maTween3:Tween = new Tween( this.fenetre2, "_yscale", Elastic.easeOut, this.fenetre2._yscale, this.fenetre2._yscale-500, 75, false ); 
var maTween4:Tween = new Tween( this.fenetre2, "_xscale", Elastic.easeOut, this.fenetre2._xscale, this.fenetre2._xscale-500, 75, false ); 
var maTween31:Tween = new Tween( this.fenetre2, "_y", Elastic.easeOut, this.fenetre2._y, this.fenetre2._y-400, 75, false ); 
var maTween41:Tween = new Tween( this.fenetre2, "_x", Elastic.easeOut, this.fenetre2._x, this.fenetre2._x-0, 75, false ); 
 
fenetre2.onRelease = function (Void):Void {
	maTween3.yoyo();
	maTween4.yoyo();
	maTween31.yoyo();
	maTween41.yoyo();
} | 
Partager