I have a tree and a list that I'd like to use drag and drop on to do the
following:
1. Do reordering in the list (ie move the items around)
2. Drag items from the tree to the list in order to copy items
The problem I'm experiencing is that when I turn on dropEnabled="true"
on the list the reordering of the list works fine however it stops
allowing the tree to drop items on the list even if I explicitly set a
drag enter function list this
public function onDragEnter( event:DragEvent ) : void {
DragManager.acceptDragDrop(List(event.currentTarget));
}