我想用按键精灵把ad两个键设置成按一下等于按两下,或者是按q键等于是按2下a.按e等于按2下d.

2024-12-15 11:33:29
推荐回答(1个)
回答1:

Rem a
x = WaitKey()
If x = 65 Then
KeyPress "A", 1
Delay 100
KeyPress "a",1
End If
If x = 66 Then
KeyPress "b", 1
Delay 100
KeyPress "b",1
End If
Goto a