I want to access the thumbnail created in drag/drop operations, to create an
item exactly where you see this thumbnail on stage.
I initiate drag/drop here, where Thumbnail is basically a component with an
Image and metadata. I want to be able to access the Thumbnail that is
created and dragged around:
var dragProxy:Thumbnail = new Thumbnail();
DragManager.doDrag(dragInitiator, ds, event, dragProxy);
So here's where I capture the 'dragDrop' event:
private function onDragDrop(event:DragEvent):void {...}
Is there any way to access the dragImage from this DragEvent? Better way to
do this?
Thanks,
: : ) Scott