Ciao a tutti , devo modificare uno script:

onClipEvent (load) {
this.acc = 6.0;
this.ine = 1.5;
this.endw = 670;
this.endh = 490;

}
onClipEvent (enterFrame) {

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._width += this.dw;
this._height += this.dh;

}

quando è terminato l'ingrandimento del rettangolo dovrei andare ad una determinata etichetta, lo so che si dovrebbe mettere:

if(){
}

ma non so come fare !

chi mi può dare una mano?



grazie mille!