On screen I have a VBox with a series of images inside of it. I am listening for a MouseDown event on each image and dragging it around inside the VBox. I am also listening in the VBox for a DragEvent.DRAG_OVER to detect where in the VBox the dragged image is. My problem is this: I receive the DragEvent fine whenever the mouse is dragging the image over the VBox. However, the value of the mouse position remains constant to where the image was originally dragged from.
Ex: I start dragging one image when it its mouse position is at (20, 100). As the drag event fires, the mouseX and mouseY remain at 20 and 100 respectively, no matter where I try to get them from. Application.application.mouseY, this.mouseY, parent.mouseY, stage.mouseY all remain constant for the entire time the mouse button is held down. This is not the case in Flex web apps, seems to only occur in an Air app. Has anyone seen this before? Or have any suggestions on how to get around it?

