When you run the Flex drag action, you send a proxy image that will be displayed when you drag it around the screen. When a crash occurs, I want to be able to capture this proxy, but I can not find a way from the DragEvent object.
Is it possible? What I want is to actually pull out the dragged image when releasing the mouse button ... Flex automatically performs a nice cut animation on the proxy, but I don't want that.
Flex examples show that I do not want - the proxy is deleted and a new image is added, but not in the right place ...
Additional Information: I tried to add my proxy image as a data item in DragSource. I was able to access this when an error occurred, and saw that there is a class mx.managers.dragClasses.DragProxy that seems to have all the information I need ... but this class is not documented?
So, there are two questions ... how to get the proxy server and find out the position of the mouse cursor in the proxy server and how to disable the Flex frame transfer animation.
source
share