If its been dragged you probably need to look at the transform and it's matrix. I think matrix.split() will provide dx and dy which is it's translation.
So something like someElement.transform().localMatrix.split().dx & someElement.transform().localMatrix.split().dy
This supposes that the drag is simple, no rotations, scales etc.
Ian