emiln / cljck

An OS-agnostic Clojure library for automating keyboard and mouse actions.
GNU General Public License v3.0
5 stars 0 forks source link

Move the mouse to given position #7

Closed emiln closed 9 years ago

emiln commented 9 years ago

It should be possible to call something (move-to 100 100) to move the cursor to the absolute position [100, 100]. It should work concurrently with clicks and you'd expect the move to happen in a sequence like the following:

Press button. Release button. Move mouse. Press button. Release button.

That is, movement should not happen during a click (which is both press and release).