我需要一个热键,例如“ c”来启用脚本

时间:2019-04-14 20:08:51

标签: autohotkey

这是当前的工作脚本,但是我需要一个热键来激活它,而不能通过单击运行来激活它。

#SingleInstance, Force

SetTimer, PressTheKey, 0

return

PressTheKey:

Send, {y}

Send, {LButton}

return

ExitApp
x::ExitApp

1 个答案:

答案 0 :(得分:1)

#SingleInstance, Force

c::Send, y{LButton}

x::ExitApp