Hi, Appreciate you taking time to try an example...
that's what I was afraid of - anyone know of any other ways around it? cheers, David x54680 "Daniel Gold" <[EMAIL PROTECTED]> Sent by: flexcoders@yahoogroups.com 04/06/2008 11:13 AM Please respond to flexcoders@yahoogroups.com To flexcoders@yahoogroups.com cc Subject Re: [flexcoders] Drop anywhere to remove Well after trying to write a quick example now I'm not so sure. The document I linked to earlier has this statement: "A control must define a handler for a dragEnter event to be a drop target." That leads me to believe every other container in the application would have to add a dragEnter handler in order for your "drag anywhere" to be implemented. Each container has to explicitly accept the drop with DragManager.acceptDragDrop() On Sun, Apr 6, 2008 at 9:08 AM, Daniel Gold <[EMAIL PROTECTED]> wrote: I would think you'd have to write completely custom drag functions that listen for mouse down on your component, and then on mouse move keep listening for the target to not be your container, as soon as it isn't, accept the DragDrop and start listening for mouse up to handle the removal. I keep this doc handy for anytime I get into custom drag situations: http://blogs.adobe.com/flexdoc/pdf/dragdrop.pdf On Sat, Apr 5, 2008 at 11:38 AM, <[EMAIL PROTECTED]> wrote: Thanks. Do you have an example? Can you tell it to remove it if it's dragged *anywhere*? cheers, David "Bob Wohl" <[EMAIL PROTECTED]> Sent by: flexcoders@yahoogroups.com 04/04/2008 06:59 PM Please respond to flexcoders@yahoogroups.com To flexcoders@yahoogroups.com cc Subject Re: [flexcoders] Drop anywhere to remove Yes, would work the same as your 'drag to container', just a different target to drop to. B. On Fri, Apr 4, 2008 at 3:09 PM, newflexer <[EMAIL PROTECTED]> wrote: Hi, We have a container we can drag and drop objects to, and would like to remove them by allowing users to drag and drop them anywhere outside of the container. Is this possible?