We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#Requires AutoHotkey v2.0 #Include Lib\AutoHotInterception.ahk
AHI := AutoHotInterception() keyboardId := AHI.GetKeyboardId(0x046D, 0xC534) cm := AHI.CreateContextManager(keyboardId)
#HotIf cm.IsActive
*Left UP::Media_Prev *Right UP::Media_Next *Space UP::Media_Play_Pause
*Left Down::Media_Prev *Right Down::Media_Next *Space Down::Media_Play_Pause
#HotIf
The text was updated successfully, but these errors were encountered:
Error: Invalid hotkey.
Specifically: Left UP up
010: { 010: SetKeyDelay(-1),Send("{Blind}{Media_Prev DownR}")
▶ 010: }
The program will exit.
Sorry, something went wrong.
No branches or pull requests
#Requires AutoHotkey v2.0
#Include Lib\AutoHotInterception.ahk
AHI := AutoHotInterception()
keyboardId := AHI.GetKeyboardId(0x046D, 0xC534)
cm := AHI.CreateContextManager(keyboardId)
#HotIf cm.IsActive
*Left UP::Media_Prev
*Right UP::Media_Next
*Space UP::Media_Play_Pause
*Left Down::Media_Prev
*Right Down::Media_Next
*Space Down::Media_Play_Pause
#HotIf
The text was updated successfully, but these errors were encountered: