Page 1 of 1

Keywait two options

Posted: 19 May 2018, 10:58
by Gonzalo94
Hello community i have a short question, its is possible to add a second option of keywait?
Like (keywait for left click OR f12)
i search and search and found nothing

there is my code

Code: Select all

f9::
BlockInput, MouseMove
MouseMove, 633,  459
KeyWait, LButton, D
BlockInput, MouseMoveOff
Return
IF ANYONE CAN HELP i will be very very gratefull!

Re: Keywait two options

Posted: 21 May 2018, 02:16
by Rohwedder
Hallo,
try:

Code: Select all

~LButton::vkFF
~F12::vkFF
f9::
BlockInput, MouseMove
MouseMove, 633,  459
KeyWait, vkFF, D L
BlockInput, MouseMoveOff
Return