Ciao a tutti, ho un problemino con una cartina che si ingrandisce in tre movimenti con tre pulsanti , lo script usato è questo:

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);
clip.due.alpha(false);
clip.tre.alpha(false);
};
btn2.onRelease = function() {
clip.size(1700);
clip.due.alpha(true);
clip.tre.alpha(false);
};
MovieClip.prototype.alpha = function(flag) {
this.onEnterFrame = function() {
if (flag && this._alpha>=0) {
this._alpha -= 5;
} else if (!flag && this._alpha<=100) {
this._alpha += 5;
}
};
};
btn3.onRelease = function() {
clip.size(8000);
clip.due.alpha(true);
clip.tre.alpha(true);
};
MovieClip.prototype.alpha = function(flag) {
this.onEnterFrame = function() {
if (flag && this._alpha>=0) {
this._alpha -= 5;
} else if (!flag && this._alpha<=100) {
this._alpha += 5;
}
}
}

Il mio problema è che vorrei il primo ingrandimento non fosse centrale ma spostato sulla sinistra dell'immagine solo che non so dove mettere le mani sullo script ma si potrà?
Grazie mille .... spero di essermi spiegata bene!