Hi,
I need to detect when a user d-b-n-d an object into a sprite. I'm adding the 3 event listeners I need, but only one of them works:
ontainer.addEventListener( DragEvent.DRAG_ENTER, dragEnterHandler);
container.addEventListener( DragEvent.DRAG_EXIT, dragExitHandler);
container.addEventListener( DragEvent.DRAG_DROP, dragDropHandler);
The only one I can listen to is DRAG_ENTER. And I'm using to accept the dragged object:
DragManager.acceptDragDrop(event.currentTarget.parent as IUIComponent);
Any ideas why I can't listen to the other two events?
tks.