I would want my mouse positions to get detected for dragging object. I want the object will be able to be dragged only when the mouse cursor is pointing at the object
I can drag the object with .setObjPos(e.getX(),e.getY()). But the object keep jump to wherever the mouse cursor is. I want the object can only be dragged when the mouse cursor pointing at the object.
You can achieve this quite easily by implementing a custom
MouseListener
:You can then add this custom Listener to any component like so:
This will detect the
MouseEvent
s on the component it is set to and only drag the component while the left mouse button is being pressed.