Ne ho fatto una specie di quell'esempio..
Ho provato così e funziona abbasatnaza bene:

codice:
clip._xscale = clip._yscale=100;
MovieClip.prototype.size = function(wdth) {
	this.wdth = wdth;
	this.onEnterFrame = function() {
		w = (this.wdth-this._xscale)/6;
		if (Math.abs(w)<.1) {
			delete this.onEnterFrame;
		} else {
			this._xscale = this._yscale += w;
		}
	};
};
btn1.onRelease = function() {
	clip.size(100);
	};
btn2.onRelease = function() {
	clip.size(1700);
	
};
btn3.onRelease = function() {
	clip.size(8000);
	
};
Ti crei il tuo clip da ingrandire e lo chiami "clip", poi ti fai su un'altro livello i tre bottoni e li chiami "btn1", "btn2", "btn3" ecc.. poi su un'altro livello ti metti lo script.

Puà essere un esempio prova..!