interface org.aswing.dnd.DragListener

Drag and Drop listener.

@author paling

Instance Fields

function onDragDrop(e:DragAndDropEvent): Void

Called when drag operation finished.

Generally if you want to do a custom motion of the dragging movie clip when dropped, you may call the DragManager.setDropMotion() method to achieve.

@see Component#isDropTrigger() @see org.aswing.dnd.DragManager#setDropMotion()

e

the event.

function onDragEnter(e:DragAndDropEvent): Void

Called while a drag operation is ongoing, when the mouse pointer enters a drop trigger component area. @see Component#isDropTrigger()

e

the event.

function onDragExit(e:DragAndDropEvent): Void

Called while a drag operation is ongoing, when the mouse pointer has exited the entered a drop trigger component. @see Component#isDropTrigger()

e

the event.

function onDragOverring(e:DragAndDropEvent): Void

Called when a drag operation is ongoing(mouse is moving), while the mouse pointer is still over the entered component area. @see Component#isDropTrigger()

e

the event.

function onDragStart(e:DragAndDropEvent): Void

When a drag action started. @see Component#isDragEnabled()

e

the event.