¿Es posible utilizar AppsKey u otras teclas como modificador?

¿Es posible utilizar AppsKey u otras teclas como modificador?

¿Es posible utilizar AppsKey(tecla del menú contextual) u otras teclas como modificador utilizando el programa AutoHotKey?

Respuesta1

No sé mucho sobre secuencias de comandos AHK, así que si hay algún problema, cualquiera puede solucionarlo y esto es deaquí.

;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

O puedes hacer esto...

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

información relacionada