Вот работает и не прилипает.....А вообще Corc спасибо....

Код:
muv.onPress = function (){
this.onEnterFrame = Drag;
startDrag(this, false);
}
muv.onRelease = function (){
this.onEnterFrame = stopDrag;
}
function Drag(){
if(this._x<100){
trace("x < 100");
}
if(this._y>200){
trace("y > 200");
}
}