답변:
"Alt & RButton"은 "Shift & Space & Lbutton"키 조합처럼 동작합니다 :
!RButton::
Send, % "{ShiftDown}{Space Down}{LButton Down}{ShiftUp}"
KeyWait, RButton
Send, % "{Space Up}{LButton Up}"
Return
그 반대:
$+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