Hi
I am not sure I get that but in general if you drag and drop from lets' say
'A' to "B' ,I have used to drag and drop both ways from one list to another
and I did is as follows

A.dragMoveEnabled=true;
A.dragEnabled=true;
A.dropEnabled=true;

B.dragMoveEnabled=true;
B.dragEnabled=true;
B.dropEnabled=true;


Thats worked in my case , i was moving entries though. Hope that helps
Anuj
On Mon, Nov 10, 2008 at 11:14 AM, graysonpierce <[EMAIL PROTECTED]>wrote:

>   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));
> }
>
>  
>

Reply via email to