The Java Robot class allows you to move the mouse as if the actual physical mouse was moved.
However, how to move the mouse from Point1 to Point2 in a humane (and therefore not instantaneous) order? Aka, how to set the speed of movement?
If this speed is not possible in the Robot class, so if the mouse can only be moved instantly, what βalgorithmβ should be used to simulate mouse movement? Should it move the mouse pixel to pixel at a certain zoom rate?
source
share