Самый приметивный способ
Для _root

Код:
_root.onMouseMove = function() {
textField.text = _root["target"]._x + " " + _root["target"]._y
}
В "драг&дроп" клипе

Код:
this.onPress = function() {
this.startDrag("true");
_root["target"] = this;
}
this.onRelease = function() {
this.stopDrag();
delete _root["target"];
}
ps А вообще mouseMove срабатывает при движении мыши не важно где и относительно чего.....