Question #244523 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244523

    Status: Open => Answered

Eugene S proposed the following answer:
You can find the information regarding low-level mouse actions in the docs, 
specifically here:
http://doc.sikuli.org/region.html#Region.mouseMov


For a simple "shake", you can do this:

loc = Location(Env.getMouseLocation())
loc1 = loc.offset(50,50)
for i in range(2):
        mouseMove(loc1)
        mouseMove(loc)

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to