Этот лучше, потому что когда перестает быть нужным, onEnterFrame удаляется, и не грузит комп без причины.

Код AS1/AS2:
clip.onRollOver = function() {
this.onEnterFrame = function() {
if (this._xscale < 200) {
this._xscale = this._yscale += 10;
}
};
};
clip.onRollOut = clip.onDragOut = function () {
this.onEnterFrame = function() {
if (this._xscale > 100) {
this._xscale = this._yscale -= 10;
}
if (this._xscale == 100) {
delete this.onEnterFrame;
}
};
};