Como faço o remapeamento de Shift + Espaço + Lbutton para o botão Alt + R com AutoHotkey?

0

Estou tentando remapear um atalho de software, a saber Shift Espaço Lbutton para Alt Rbutton .

Eu tentei isso:

+SpaceLbutton::!Rbutton

Eu quero segurar e soltar.

    
por loumizhu 19.07.2013 / 10:48

1 resposta

0

"Alt & RButton" comporta-se como a combinação de teclas "Shift & Space & Lbutton":

!RButton::
   Send, % "{ShiftDown}{Space Down}{LButton Down}{ShiftUp}"
   KeyWait, RButton
   Send, % "{Space Up}{LButton Up}"
   Return

E vice-versa:

$+Space::
   KeyWait, LButton, % "DT.175" ; adjust waiting time here
   Send, % (b:=ErrorLevel) ? "{Space Down}":"{AltDown}{RButton Down}{AltUp}"
   KeyWait, Space
   Send, % b ? "{Space Up}":"{RButton Up}"
   Return
    
por 22.07.2013 / 10:34