2017-05-28 223 views

回答

1

LButton::RButton表示左按钮就像您的右按钮一样。 ~修饰符的意思是“激发热键以及任何重新映射到的热键”。

~LButton::RButton 

快速编辑:如果你需要它来激活左键一直保持一定时间后,用这个:

; Time for LButton to be held down before RButton is sent (in milliseconds) 
waitTime := 500 
return 

~*LButton:: 
    while GetKeyState("LButton", "P") 
     if (A_TimeSinceThisHotkey > waitTime){ 
      Send, {RButton Down} 
      KeyWait, LButton 
      Send, {RButton Up} 
     } 
return