I haven't tested this, but it looks like you're going to want to do is:
var dp:DragProxy = DragProxy.mx_internal::dragProxy; // get drag proxy DragManager.acceptDragDrop(null) // make sure nothing will except the drop dp.mouseUpHandler(new MouseEvent()) // drop, fill mouse event with any data because the only properties that will be checked are the ctrl/all/shift down properties. - Dan On 12/12/06, tnirenstein <[EMAIL PROTECTED]> wrote:
In my code, I want to be able to cancel the drag and drop functionality if the user hits the Escape Key. I can successfully capture the fact that the user has hit Escape during the Drag and Drop sequence but once I am there, how do I cancel Drag and Drop? Thanks in advance!

