Disable mousewhell

I’ve able mousewhel event on my clip by listener object.

var mouseListener:Object = new Object();
mouseListener.onMouseWheel = function(delta) {
clip_mc._x += delta*2;
}

How i can disable the mousewhell after use?