FeniksD
Мастер
(1099)
18 часов назад
#MaxThreadsPerHotkey 2
toggle := false
v::
toggle := !toggle
if (toggle) {
Send {LShift down}
} else {
Send {LShift up}
}
return
#If (toggle)
LButton::
Send {LShift down}{LButton down}
KeyWait, LButton
Send {LButto
n up}
return
#If