
Код AS1/AS2:
function tweenEvent(getClip,coord) {
var img_Tween:Tween = new Tween(getClip, "_y", Solid.easeOut, this._y,3,coord, true);
}
tweenEvent(mc1,250);
tweenEvent(mc2,300);
//........
tweenEvent(mcN,10000);
// super added if u have more clips with common names mc1, mc2 and so on
var ln = clips.length;
for(var i = 0; i<ln; i++) {
tweenEvent(this["mc"+i], 250);
}