Вот так работает , треёсид Х и Y, так блин мувик от stopDrag() прилип к курсору .....

Код:
muv.onPress = function (){
this.onEnterFrame = startDrag;
}
muv.onRelease = function (){
this.onEnterFrame = stopDrag;
}
function stopDrag(){
if(this._x<100){
trace("x < 100");
}
if(this._y>200){
trace("y > 200");
}
}
а так нажимается , но вообще не перетаскивается...

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