É possível usar o AppsKey ou outras chaves como modificador

2

É possível usar AppsKey (tecla de menu de contexto) ou outras teclas como modificador usando o programa AutoHotKey?

    
por PHPst 01.06.2012 / 08:11

1 resposta

2

Eu não sei muito sobre o script AHK, então se houver algo errado, alguém pode consertá-lo e isso é de aqui .

;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

Ou você pode fazer isso ...

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
    
por 02.06.2012 / 18:25