Core Function MouseMove
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> MouseMove ( <x>, <y>, <speed> ) </pre> === Description === Moves the mouse pointer === Parameters === ==== x ==== The screen x coordinate to move the mouse to. ==== y...")
Newer edit →
(Created page with "<pre> MouseMove ( <x>, <y>, <speed> ) </pre> === Description === Moves the mouse pointer === Parameters === ==== x ==== The screen x coordinate to move the mouse to. ==== y...")
Newer edit →
Revision as of 12:26, 26 November 2011
MouseMove ( <x>, <y>, <speed> )
Contents |
Description
Moves the mouse pointer
Parameters
x
The screen x coordinate to move the mouse to.
y
The screen y coordinate to move the mouse to.
speed
Optional; The speed to move the mouse in the range 1 (fastest) to 100 (slowest).
A speed of 0 will move the mouse instantly.
Default speed is 10.
clicks
Iptional; The number of times to move the wheel. Default is 1.
Return Value
None
Remarks
User mouse movement is hindered during a non-instantaneous MouseMove operation.
If MouseCoordMode is relative positioning, numbers may be negative.
Example
MouseMove(10, 100); MouseMove(700, 700, 50);