hotfix/issue-44
Clive Galway 5 years ago
commit 48222df20f

@ -294,5 +294,13 @@ To sent Absolute mouse movement, use:
`AHI.SendMouseMoveAbsolute(<mouseId>, <x>, <y>)`
Note that Absolute mode will probably not work with FPS style mouse-aim games.
#### Moving the Mouse Cursor
To move the mouse cursor to a specific screen position, use:
`AHI.MoveCursor(<x>, <y> [, <mouseId>, <mode>])`
eg `AHI.MoveCursor(100, 200)`
`AHI.MoveCursor(100, 200, 12, "Screen")`
`mouseId` is optional and the ID of the mouse to use (Defaults to ID 11 - the first mouse)
`mode` is optional and is the [CoordMode](https://www.autohotkey.com/docs/commands/CoordMode.htm) to use (Will switch back to current CoordMode after) - Defaults to "Screen".
## Monitor App
ToDo: Add recording of monitor app

Loading…
Cancel
Save