Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an operating system neutral way for Ruby to send keyboard and mouse events to the underlying operating system?

One obvious (to me) approach is to use the Ruby/Java bindings and use java.awt.Robot, but that just seems silly.

share|improve this question
What operating system? Each platform has its own Ruby bindings. – tadman Sep 18 '09 at 19:11
"operating system neutral". If no such library exists, then Windoze and Mac. – John Sep 18 '09 at 19:47

1 Answer

up vote 4 down vote accepted

For Mac:

$ sudo gem install rb-appscript

Then you can test it with a script like this:

require "rubygems"
require "appscript"
include Appscript

app("TextEdit").activate
app("System Events").keystroke("Look Ma, keystrokes!")

For Windows: (untested, borrowed from this thread)

require "win32ole"

wsh = WIN32OLE.new("WScript.Shell")
wsh.Run("Notepad.exe")
while not wsh.AppActivate("Notepad")
  sleep .1
end
wsh.SendKeys("Look Ma, keystrokes!")
share|improve this answer
What about Linux (Ubuntu)? – Andrey Botalov Feb 18 at 16:48
@AndreyBotalov I don't know. Someone should post an answer for that. :-) – Ryan McGeary Mar 31 at 23:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.