Banalmente puoi provare kosì:

onClipEvent (load) {
i = 0;
this._yscale = i;
}
onClipEvent (enterFrame) {
if(i<100) {
this._yscale = i;
i+=5;
}
}

SK