Ciao atutti ho uno script che mi ingrandisce con un movimento elastico un rettangolo:

onClipEvent (load) {
this.acc = 6.0;
this.ine = 1.5;
this.endw = 518;
this.endh = 368;
}
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;



}

però finito questo movimento io vorrei che passasse al fotogramma due come faccio a dirglielo?.....con gotoAndPlay("due"); non funziona.Dove sbaglio?
Grazie mille