JsRoboKey: Automate your desktop using Javascript

bartosimpsonio

Elite Member
Executive VIP
Jr. VIP
Joined
Mar 21, 2013
Messages
24,761
Reaction score
31,552
Pretty cool new macro language: JsRoboKey

https://github.com/relipse/JsRoboKey

Might come in handy ;)
[h=2]Example Script[/h] A simple script might look like this:

//run notepad, wait a little bit for it to open, then send some keystrokes
rk.run('notepad');
rk.sleep(700);
rk.sendKeys('abcdefgABCDEFG1234567890!@#$%^&*()');
 
Back
Top