如何使用 autohotkey 从 Windows 开始菜单启动某些内容?我可以
Send ^{Esc}MyAppName{Enter}
除了最后一个之外,其他一切都正常{Enter}
。输入后屏幕停留在打开的开始菜单上MyAppName
。我可以手动按回车键然后打开它。我遗漏了什么?
答案1
以下有效,所以可能是开始菜单打开/响应速度不够快的问题:
Send ^{Esc}
Sleep 2000
Send MyAppName
Sleep 2000
Send {Enter}
答案2
调整@xdhmoore 的答案AutoHotkey v2
:
#!s::{
SendEvent "^{Esc}"
Sleep 1000
Send "HP Smart"
Sleep 1000
SendEvent "{Enter}"
Sleep 1000
MouseMove 440,400
} ; win+alt+s gets mouse ready on Numériser button