I am creating a robot using java, but there is an application which has an special and strong security and I cannot execute my robot over there, for some reason that I don't know, my robot cannot change the mouse position when such application is running. I am using the java.awt.Robot class to change the mouse position, but it doesn't work, so I would like to know if is there another way to change the mouse position with java, I was thinking in try to change the mouse buffer with java (maybe it is not possible, is it?). I appreciate if you could tell me some way to change the mouse position with java without using the java.awt.Robot class.
For example this code chage the mouse position to the 500, 500 coordinates:
Robot robot = new Robot();
robot.mouseMove(500, 500);
, but it doesnt work while the application with the special security is running.
Thank you.