Autohotkey - muda o layout com Alt Alt.

1

Estou tentando criar o atalho Autohotkey para alternar o layout apenas com a tecla Alt direita.

Então, criei um script simples:

RAlt::Send {Ctrl down}{Shift down}{Shift up}{Ctrl up}
return

Mas esse roteiro simplesmente não faz nada. O que pode estar errado?

    
por rootatdarkstar 31.10.2017 / 23:20

1 resposta

1

Tente isso

; Switch keyboard layout, only if RAlt was pressed alone:

RAlt up::
If (A_PriorKey = "RAlt")
    Send {Alt down}{Shift down}{Shift up}{Alt up} ; switch keyboard layout
return

; In this case its necessary to define a custom combination by using "&" or ">!" 
; to avoid that RAlt loses its original function as a modifier key:

>!a:: Send !a  ; >! means RAlt
    
por 01.11.2017 / 06:05