Delete onEnterFrame;

:frowning: i am trying to stop an onEnterframe event and the **delete onEnterFrame; **doesnt effect it what ever i do… my code is:

dragger.onPress = function() {
 this.startDrag(true, 18, 133, line._width-40, 133);
 this.onEnterFrame = function() {
  l = this._x;
  trace(l);
 };
};
dragger.onRelease = dragger.onReleaseOutside=stopDrag;

where do i put the delete onEnterFrame;?