2

Можно ли использовать AppsKey (клавиша контекстного меню) или другие клавиши в качестве модификатора с помощью программы AutoHotKey?

1 ответ1

2

Я не очень разбираюсь в скриптах AHK, поэтому, если что-то не так, каждый может это исправить, и это отсюда.

;Try out new hotkey mappings (Ctrl+Appskey+'R')  
AppsKey & r::  
if not GetKeyState("Control")
; Neither the left nor right Control key is down.  
    return  ; i.e. Do nothing.  
msgbox, hello... ctrl appskey r  
return

Или вы можете сделать это ...

AppsKey & Ctrl::    ; AppsKey, then Ctrl  
^AppsKey::          ; Ctrl, then AppsKey  
    Hotkey, *r, ^@r, On  
   ; additional hotkeys can be enabled here.  
return  
AppsKey & Ctrl Up:: ; Modifier(s) released   
^AppsKey Up::  
    Hotkey, *r, Off  
    ; additional hotkeys must be disabled here.  
return  
^@r:    ; Label for identification only, can be anything.  
    msgbox, hello... %A_ThisLabel%  
return

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .