how to listen Drag Gshape like `MouseMove` ?
Closed this issue · 3 comments
imiskolee commented
hi:
how to listen dragging position like mousemove event ?
imiskolee commented
I just handle the MouseMove
event now, but it's not working when I drag fast.
roipeker commented
You have the startDrag/stopdrag methods
Usually i listen to stage.onMouseMove if i have to track position, otherwise, you can also use stage.onEnterFrame.add() and track with the ticker mouseX and mouseY.
Maybe you are trying to capture an event on some displayobject that has other children, and there is a bug... try to use mouseChildren=false to prevent signal propagations down the display list
imiskolee commented
thanks.