Binding Shift para x usando AutoHotkey

1

Estou tentando mudar meu botão + com minha tecla x + no teclado. Eu tentei Lshift :: x mas o que aconteceu foi que ambas as chaves agora tinham a funcionalidade de apenas x. Eu olhei para Problema ao religar Ctrl para Capslock usando Autohotkey e parece que isso poderia consertar meu problema, mas não tenho idéia de como converter sua resposta em algo que eu possa usar. Alguém seria capaz de fazer isso? Obrigada!

Editar, isso não funcionou:

 #ifWinActive
Shift::
   Gui, 93:+Owner ; prevent display of taskbar button
   Gui, 93:Show, y-99999 NA, Enable nav-hotkeys: x
   Send {LShift Down}
   KeyWait, Shift ; wait until the Shift button is released
   Gui, 93:Cancel
   Send, {LShift Up}
Return

 #IfWinActive , Enable nav-hotkeys: hjkl

   x::Send {Blind}{LShift Up}{Left}{LShift Down}

 #IfWinActive, ; end context-sensitive block

... claro que colocar a janela depois do ifwinactive

    
por UIDCLR 23.03.2013 / 01:02

1 resposta

0

Duas linhas são necessárias:

Lshift::x
x::Lshift
    
por 15.03.2016 / 13:17