我想将“Scroll Lock键”设置为暂停和恢复的切换快捷键 我的Autohotkey脚本。我的意思是通过切换快捷方式暂停和恢复当前正在运行的ahk脚本中的所有行。
这可能吗?
答案 0 :(得分:1)
切换暂停:
f1::suspend
关闭脚本:
f2::exitapp
重新加载脚本:
f3::reload
编辑脚本:
f4::edit
我发现包括这会加速编辑/测试:
back = open the script in notepad
forward = save and exit notepad
refresh = reload
browser_back::edit
browser_forward ::
send ^{s}
send !{f4}
return
browser_refresh::reload
在browser_forward热键的底部添加重新加载,我说要分开
答案 1 :(得分:0)
简短而准确的答案是肯定的,这是可能的。
长而复杂的答案是在脚本中添加以下行
scrolllock:: Pause