Order Display object with Drag and Drop

Hi, I have a List of Display Objects in my scene and I want to reorder them  with Drag and Drop, I already saw the Drag and Drop sample and the DMC library that uses sensors, but I don’t have idea of how to use it in my case, someone have idea of how can I do this? 

I haven’t seen the sample but something like this.

attach touch listeners to your DOs - when one of them is ‘started’ mark that the current one being dragged. When it has moved sufficient from its start point - a few pixels or so - then get it to follow the touch position (you will need to allow for the offset in the DOs touch point) - when the touch ends, see if the release point is in the drop area, if it is, work out the new sequence and if not, send the dragged DO back where it was initially.

I haven’t seen the sample but something like this.

attach touch listeners to your DOs - when one of them is ‘started’ mark that the current one being dragged. When it has moved sufficient from its start point - a few pixels or so - then get it to follow the touch position (you will need to allow for the offset in the DOs touch point) - when the touch ends, see if the release point is in the drop area, if it is, work out the new sequence and if not, send the dragged DO back where it was initially.