I have some code which performs a drag and drop from one custom 
component into another. 

The actual drag operation works perfectly in all browsers. But the 
Image shown while performing the drag does not appear in Firefox or 
Safari. You can see it for a split second and then it disappears.

Can't find any reason why the image shouldn't be appearing. Anyone any 
ideas?

var imageProxy:Image = new Image();
imageProxy.source = dragInitiator.typeIcon.source;
imageProxy.width = dragInitiator.typeIcon.width;
imageProxy.height = dragInitiator.typeIcon.height;
            
DragManager.doDrag(dragInitiator, ds, new 
MouseEvent(MouseEvent.MOUSE_DOWN), imageProxy, -48,0,0.8);

Thx
Rob

Reply via email to