http://www.jx3pve.com/forum.php? ... &extra=page%3D1
关于按键还是这个最顺手~
如果有人喜欢用官方按键精灵给你们发个脚本指令
新建-空白脚本-源文件
Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState" (ByVal vKey As Long) As Integer
Dim key(3), a, b, c, d
key(1) = 162
key(2) = 164
key(3) = 160
Rem 检测按键
For i = 1 To UBound(key)
If GetAsyncKeyState(key(i)) < 0 Then
Goto 检测按键
End If
Next
SetSimMode 2
KeyPress "F5", 1
KeyPress "F6", 1
KeyPress "F7", 1
KeyPress "F8", 1
Delay 10
Goto 检测按键