2. 电脑里没有AHK软件的,先下载安装好AHK软件,然后桌面右键新建一个.ahk文件,起个名字(也可以新建一个记事本文档,把后缀.txt改成.ahk)。
右键新建的ahk文件,选择Edit Script(或者打开方式里,用记事本打开)
复制下面的内容到文件里
^!Z::
DllCall("SetCursorPos", "int", 994, "int", 656)
Sleep 300
DllCall("SetCursorPos", "int", 997, "int", 656)
Sleep 200
DllCall("SetCursorPos", "int", 1025, "int", 605)
Click
Sleep 1500
MouseMove, 248, 206
Click
KeyWait, Enter, D
Sleep 100
DllCall("SetCursorPos", "int", 951, "int", 652)
Click
Sleep 300
MouseMove, 310, 307
Click
return
