MOVE - < mm >() ... [Free]
Mouse MOVE |
||||||||||||||||
Moves mouse cursor to required position. The position is in absolute screen coordinates by default. There are these three commands that can precede the command and change the mouse move coordinates meaning: - mouse cursor position is in absolute screen coordinates - mouse cursor position is relative to currently active window - mouse cursor position is relative to current mouse cursor position |
||||||||||||||||
|
||||||||||||||||
|
||||||||||||||||
Example (Macro Steps):
|
||||||||||||||||
|
Example (Plain Text):
<#> This macro moves the mouse cursor to position (100,100)
<#> and than - after 2 seconds - to position (-10, -10) relative to
<#> position (100, 100)
<cmds>
<mm>(100,100)
<wx>(2000)
<mousemove_relative_pos>
<mm>(-10,-10)