To help convert existing dragging samples from earlier builds try these ideas:
- To avoid the "no drag" icons when dragging images, in the onmousemove use:
event.cancleBubble = true;
event.returnValue = false;
- Also, instead of using the parameters on the event handlers, use the properties
on the event object instead.