| 1234567891011121314151617181920212223242526272829303132333435363738 |
-
- #Requires AutoHotkey v2.0
- ;需要管理员权限运行
- L::
- {
- KeyPress("q")
- Sleep 3000
- KeyPress("q")
- Sleep 3000
- KeyPress("{Tab}")
- Sleep 1000
- KeyPress("q")
- Sleep 1000
- KeyDown("r")
- Sleep 2000
- KeyUp("r")
- Sleep 1000
- KeyPress("2")
- Sleep 1000
- KeyPress("e")
- Sleep 1000
- KeyPress("1")
- }
- ; 辅助函数:模拟按一下按键
- KeyPress(key) {
- SendEvent key
- }
- ; 辅助函数:按住某键
- KeyDown(key) {
- SendEvent "{" key " down}"
- }
- ; 辅助函数:放开某键
- KeyUp(key) {
- SendEvent "{" key " up}"
- }
|