// ———————————————————— IMPORTO LE TRANSITIONS E GLI EASING
import mx.transitions.*;
import mx.transitions.easing.*;

var myListener:Object = new Object ();
myListener.. function () {Â
// sostituire Back con Elastic o Strong o altre transitions per aver un effetto differente!
// sostituire il valore 1 con un altro numero per modificare il tempo di ritardo
 new Tween (FollowingMC, “_x”, Back.easeOut, FollowingMC._x, _xmouse, 1, true);
 new Tween (FollowingMC, “_y”, Back.easeOut, FollowingMC._y, _ymouse, 1, true);
 }
Mouse.addListener(myListener);