求个按键精灵X键连发脚本,要按X的时候自动连发,不要连X都没按的时候就自动连发那种

试试这个

Dim i

i=0

Rem a

Key = WaitKey()

If key = 88 Then

i = 1

Else

i=0

End If

if i = 1 then

KeyPress "X", 1

End If

Goto a