btn.onPress = function() { this.onEnterFrame = function(){ zoom(this); } } btn.onRelease = function() { delete this.onEnterFrame; } function zoom(mc:MovieClip):Void { mc._xscale += 0.1; mc._yscale += 0.1; }