I am working on a project where I need to press multiple keys at the same time. I have tried things like.
keyboard.press(robot.KEY_W);
keyboard.click(robot.KEY_S);
keyboard.release(robot.KEY_W);
It doesn't hit them at the same time, I also fiddled with the autoDelay but this made the inputs unreliable. Is there a way to archive this? Any help will be much appreciated.
I am working on a project where I need to press multiple keys at the same time. I have tried things like.
It doesn't hit them at the same time, I also fiddled with the
autoDelaybut this made the inputs unreliable. Is there a way to archive this? Any help will be much appreciated.