onClipEvent(load){ newscale = 100; } onClipEvent(enterFrame){ if(this._xscale>newscale){ this._xscale -= 10; this._yscale -= 10; }else if(this._xscale<newscale){ this._xscale +=10; this._yscale +=10; } }