我有一个在系统托盘图标中运行的特定程序(“ahk_exe QTranslate.exe”),如果它在我打开另一个特定程序(“ahk_exe phpstorm64.exe”时正在运行,我希望它从系统托盘图标自动关闭”)。
我已经试过了,但这只会关闭(“QTranslate”)的窗口如果它存在,但程序仍在系统托盘中运行:
loop{
WinWaitActive, ahk_exe phpstorm64.exe
if WinExist("ahk_exe QTranslate.exe")
{
WinKill, ahk_exe QTranslate.exe
}
}
是否有任何脚本可以从系统中关闭指定的程序?
注意我使用:AutoHotkey V1.1.36.02
请帮忙!我感谢你的时间和努力。提前致谢。
1 个回答