Nella stessa funzione che controlla lo stopDrag devi reimpostare le coordinate.
Tanto per fare un esempio:
Codice PHP:
clip.onPress = function () {
this.startDrag();
}
clip.onRelease = function () {
this.stopDrag();
trace(this._x+" - "+this._y);
}