I'm working on a drag-drop solution, and acting when a item is dropped on the current target (let's say an "intelligent chess-board") is a breeze, as the board fires DragEvents when items are hovering over on dropped on the it.

What I'm looking for is a way to make the board act when an item is dragged OFF the itself. Of course - when the item is dropped somewhere else, I could fire an event there and tell the board that change has been done. But this is what I want to avoid.

I wonder if there is some way to monitor a change in the displaylist of the "board", so it fires an event when a child/element is removed from "outside"?

link|improve this question

Are you trying to alert the board when someone drags something off of it? Do you want to notify the board if they drag it back on? – Jason Towne Mar 25 '11 at 15:14
feedback

1 Answer

up vote 1 down vote accepted

http://help.adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/spark/components/Group.html#eventSummary
remove, removed, elementRemove, elementAdd

link|improve this answer
Thank you www0z0k! That's exactly what I was looking for! – Cambiata Mar 25 '11 at 15:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.