如何使用按键精灵或其他方法使键盘右ALT键映射到鼠标左键,右ctrl键映射到鼠标右键

2025-04-09 18:55:28
推荐回答(1个)
回答1:

  1. Do

  2. Dim Key

  3. Key=WaitKey()

  4. If Key = 18 Then 

  5. LeftClick 1

  6. ElseIf Key = 17 Then 

  7. RightClick 1

  8. End If

  9. loop