Mega Code Archive
List To List Drag and Drop
@namespace mx "library://ns.adobe.com/flex/mx";
mx|DragManager
{
copyCursor: Embed(source="a.jpg");
}
import mx.collections.ArrayCollection;
private function initApp():void {
srclist.dataProvider = new ArrayCollection(['Reading', 'Television', 'Movies']);
destlist.dataProvider = new ArrayCollection([]);
}