I've got an image with mouseDown event wich starts the drag'n'drop operation
After finishing the drag'n'drop the image stays in place and its copy goes into another container
I want to disable the original image from further dragging.
Just make it invisible, 0-size, and disabled. If it still remains draggable, you might have to handle in code by setting a flag.
visible = false width = 0 height = 0 enabled = false

