Тема: AHK: Hotkey на NumLock клавишах не срабатывает
Здравствуйте, hotkey по типу alt + ... отправляют действие как надо. Если ставлю хоткей на NumLock клавиши действия доходят через раз, отправляются как будто без нажатия alt, то-есть просто нажатие букв - в firefox появляется поиск этой буквы на странице. Почему нам клавиши не работают, как заставить работать?
; <COMPILER: v1.1.20.02>
#SingleInstance force
#NoTrayIcon
*!a::
IfWinNotExist ahk_class MozillaWindowClass
return
ControlSend, ahk_parent, !{a down}
KeyWait a
SendEvent {a up}
return
*!s::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, !{s down}
KeyWait s
SendEvent {s up}
return
*!d::
IfWinNotExist ahk_class MozillaWindowClass
return
ControlSend, ahk_parent, !{d down}
KeyWait d
SendEvent {d up}
return
*!e::
IfWinNotExist ahk_class MozillaWindowClass
return
ControlSend, ahk_parent, !{e down}
KeyWait e
SendEvent {e up}
return
*!r::
IfWinNotExist ahk_class MozillaWindowClass
return
ControlSend, ahk_parent, !{r down}
KeyWait r
SendEvent {r up}
return
*!w::
IfWinNotExist ahk_class MozillaWindowClass
return
ControlSend, ahk_parent, !{w down}
KeyWait w
SendEvent {w up}
return
*!x::
IfWinNotExist ahk_class MozillaWindowClass
return
ControlSend, ahk_parent, !{x down}
KeyWait x
SendEvent {x up}
return
*vk64::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, {alt down}{a down}
KeyWait vk64
SendEvent {a up}{alt up}
return
*vk65::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, !{s down}
KeyWait vk65
SendEvent {s up}{alt up}
return
*vk66::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, {alt down}{d down}
KeyWait vk66
SendEvent {d up}{alt up}
return
*vk62::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, {alt down}{e down}
KeyWait vk62
SendEvent {e up}{alt up}
return
*vk69::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, {alt down}{r down}
KeyWait vk65
SendEvent {r up}{alt up}
return
*vk61::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, {alt down}{w down}
KeyWait vk61
SendEvent {w up}{alt up}
return
*vk67::
IfWinExist ahk_class MozillaWindowClass
ControlSend, ahk_parent, {alt down}{x down}
KeyWait vk67
SendEvent {x up}{alt up}
return
*vk60::
Run https://vk.com/audios9893863
return
