I have something that you can drag around, but sometimes people hold down the mouse, drag outside of the flash window, and release. Doing a MOUSE_UP event listener doesn't catch these outside of the window, but is there any other way to do it?
I swear I've seen it done in advertisements somewhere... If not, at least they could detect if the mouse has left the window, which would be good enough for me.
Another related question: How can I detect MOUSE_UP anywhere on the screen? I have something you can only drag around in a small area, and when the mouse leaves that small area and is unpressed, the object doesn't know (since I went object.addEventListener(MOUSE_UP //...)).