strange movie clip behavior on drag
Hi, I am trying to implement drag and drop in Animate Canvas, using JavaScript. I am using the code below to grab a movie clip and move it around. The mouse does grab the clip and move it, but as I drag towards the lower right of the stage, the mouse pointer gets farther and farther away from the movie clip (see JPG). Here's my code. Is there a fix for this? Thanks.
Zaffer
this.blueBall_1.on("pressmove", moveBlueBall);
function moveBlueBall(e){
e.currentTarget.x = e.stageX;
e.currentTarget.y = e.stageY;
} 
