Тема: AHK: Как заменить ZX на кнопки мышки
Здравствуйте, как сделать работу скрипта по нажатию Xbutton1, Xbutton2
#NoEnv
#SingleInstance, Force
z::
SendInput {R}
Sleep 50
SendInput {F}
Sleep 50
While (GetKeyState("z")) {
SendInput {F}
Sleep, 10
}
return
x::
SendInput {R}
Sleep 50
SendInput {F}
Sleep 50
SendInput {Q}
Sleep 50
While (GetKeyState("x")) {
SendInput {F}
Sleep, 10
}
