We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 023aa03 commit 4159921Copy full SHA for 4159921
README.md
@@ -24,11 +24,11 @@ Get the mouse location and move it.
24
var robot = require("robotjs");
25
26
//Get the mouse position, returns an object with x and y.
27
-var mouse=robot.getMousePos();
+var mouse = robot.getMousePos();
28
console.log("Mouse is at x:" + mouse.x + " y:" + mouse.y);
29
30
//Move the mouse down by 100 pixels.
31
-robot.moveMouse(mouse.x,mouse.y+100);
+robot.moveMouse(mouse.x, mouse.y + 100);
32
33
//Left click!
34
robot.mouseClick();
0 commit comments