
Код:
var numDeltaX:Number = 5;
var numDeltay:Number = 5;
var boolDrag:Boolean = false;
mc.onPress = function() {
boolDrag = true;
};
mc.onRelease = function() {
boolDrag = false;
};
onEnterFrame = function () {
if (boolDrag) {
mc._x = _xmouse+numDeltaX;
mc._y = _ymouse+numDeltaY;
}
};