[SIZE=4][COLOR=red]

ciao a tutti.
problema urgentissimo!

ho un clip:
dentro questo clip ci sono 7 clip, ognuno su un livello diverso.
sono resi elastici da questo script:

onClipEvent (load) {
this.acc = 3;
this.ine = 1.2;
this.endw = 100;
this.endh = 100;
this.endx = _x+90;
this.endy = _y+0;
}
onClipEvent (enterFrame) {
if (_root.vai) {
this.dw = (this.dw+(this.endw-this._width)/this.acc)/this.ine;
this.dh = (this.dh+(this.endh-this._height)/this.acc)/this.ine;
this.dx = (this.dx+(this.endx-this._x)/this.acc)/this.ine;
this.dy = (this.dy+(this.endy-this._y)/this.acc)/this.ine;
this._width += width;
this._height += height;
this._x += this.dx;
this._y += this.dy;
}
}