Skip to content

Instantly share code, notes, and snippets.

@ismaelc
Created August 29, 2019 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ismaelc/535c79355611a950cf49f8021c6636ff to your computer and use it in GitHub Desktop.
Save ismaelc/535c79355611a950cf49f8021c6636ff to your computer and use it in GitHub Desktop.
// Move the mouse across the screen as a sine wave.
var robot = require("robotjs");
// Speed up the mouse.
robot.setMouseDelay(2);
var twoPI = Math.PI * 2.0;
var screenSize = robot.getScreenSize();
var height = (screenSize.height / 2) - 10;
var width = screenSize.width;
for (var x = 0; x < width; x++)
{
y = height * Math.sin((twoPI * x) / width) + height;
robot.moveMouse(x, y);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment