| Method | Defined by | ||
|---|---|---|---|
|
onDragDrop(e:DragAndDropEvent):void
Called when drag operation finished.
| DragListener | ||
|
onDragEnter(e:DragAndDropEvent):void
Called while a drag operation is ongoing, when the mouse pointer enters a
drop trigger component area.
| DragListener | ||
|
onDragExit(e:DragAndDropEvent):void
Called while a drag operation is ongoing, when the mouse pointer has exited
the entered a drop trigger component.
| DragListener | ||
|
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.
| DragListener | ||
|
onDragStart(e:DragAndDropEvent):void
When a drag action started.
| DragListener | ||
| onDragDrop | () | method |
public function onDragDrop(e:DragAndDropEvent):voidCalled 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.
Parameterse:DragAndDropEvent — the event.
|
See also
| onDragEnter | () | method |
public function onDragEnter(e:DragAndDropEvent):voidCalled while a drag operation is ongoing, when the mouse pointer enters a drop trigger component area.
Parameterse:DragAndDropEvent — the event.
|
See also
| onDragExit | () | method |
public function onDragExit(e:DragAndDropEvent):voidCalled while a drag operation is ongoing, when the mouse pointer has exited the entered a drop trigger component.
Parameterse:DragAndDropEvent — the event.
|
See also
| onDragOverring | () | method |
public function onDragOverring(e:DragAndDropEvent):voidCalled when a drag operation is ongoing(mouse is moving), while the mouse pointer is still over the entered component area.
Parameterse:DragAndDropEvent — the event.
|
See also
| onDragStart | () | method |
public function onDragStart(e:DragAndDropEvent):voidWhen a drag action started.
Parameterse:DragAndDropEvent — the event.
|
See also