Suspend, on
Esc::ExitApp
LCtrl::suspend
SetTimer, Close, 5000
SetTimer, Open, 5000
SetTitleMatchMode, 2
Close:
IfWinNotExist, Notepad
Msgbox, NotDetected
Return
Open:
IfWinExist, Notepad
Msgbox, Detected
Return
上述脚本的行为与我的预期不符。我希望它在加载时立即暂停(它会这样做)。我希望当我切换挂起时,每5秒显示一个消息框,具体取决于notepad.exe是否打开。
实际发生的是它加载暂停,但当我切换暂停时,没有任何反应。
我在这里错误地做了什么,在切换暂停后每隔5秒进行一次打开/关闭循环。
答案 0 :(得分:0)
为了后代而离开这里。
"暂停&#34>之间存在差异?并且"暂停" - 一个处理热键,另一个是实际的脚本线程。我需要后者。