Sha256: ef60c00784490a2e4c28446653fa701f9ca845ac008e82721a10866c70bd5516

Contents?: true

Size: 1.2 KB

Versions: 3

Compression:

Stored size: 1.2 KB

Contents

= mac-robot

A Library to Automate User Interactions

== Synopsis

 require 'mac-robot'

 robot = Mac::Robot.new

=== Automate mouse

 robot.mouse_press
 robot.mouse_move(250, 250)
 robot.mouse_release

=== Automate keyboard

 [0x04, 0x0e, 0x25, 0x25, 0x1f].each do |keycode|
   robot.key_press(keycode)
   robot.key_release(keycode)
 end

=== Get color of given pixel on screen

 color = robot.get_pixel_color(10, 20)
 color.red
 color.green
 color.blue
 color.alpha
 
== Contributing to mac-robot
 
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
* Fork the project.
* Start a feature/bugfix branch.
* Commit and push until you are happy with your contribution.
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2012 youpy. See LICENSE.txt for
further details.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mac-robot-0.2.3 README.rdoc
mac-robot-0.2.2 README.rdoc
mac-robot-0.2.1 README.rdoc