Page 1 of 1

mouse move speed not working/misunderstood

Posted: 13 Apr 2021, 14:58
by madladme

Code: Select all

*f12::
Suspend, Toggle
Return


*a::
Send {a down}
MouseMove, 210, 0, 0, R
KeyWait, a
MouseMove, -210, 0, 0, R
Send {a up}
Return
Return

*f9::
ExitApp
if i change the speed here nothing happens
MouseMove, 210, 0, (50,) R
KeyWait, a
MouseMove, -210, 0, (50,) R
what do i need to change to make this move slower instead of instantly? - thanks

Re: mouse move speed not working/misunderstood

Posted: 13 Apr 2021, 15:18
by boiler
Remove the parentheses.

Re: mouse move speed not working/misunderstood

Posted: 25 Apr 2021, 05:42
by madladme
u mean like this?
Send a down
MouseMove, 210, 0, 0, R
KeyWait, a
MouseMove, -210, 0, 0, R
Send a up

Re: mouse move speed not working/misunderstood

Posted: 25 Apr 2021, 07:14
by mikeyww

Code: Select all

MouseMove, 210, 0, 50, R

Re: mouse move speed not working/misunderstood

Posted: 25 Apr 2021, 07:36
by madladme

Code: Select all

*f12::
Suspend, Toggle
Return


*a::
Send {a down}
MouseMove, 210, 0, 50, R
KeyWait, a
MouseMove, -210, 0, 50, R
Send {a up}
Return
Return

*f9::
ExitApp
still does not work. it sitll moves instantly

Re: mouse move speed not working/misunderstood

Posted: 25 Apr 2021, 07:53
by mikeyww

Code: Select all

a::
Send {a down}
MouseMove, 210, 0, 50, R
KeyWait, a
MouseMove, -210, 0, 50, R
Send {a up}
Return
Close other scripts. Save. Reload. Test in Notepad, while Notepad is active.