我正在尝试创建 Google Chrome 特定的热字符串。问题是,出于某种奇怪的原因,SetTitleMatchMode 似乎不起作用。这是我的示例代码:
SetTitleMatchMode, 2
#IfWinActive, Chrome
:*:mail::[email protected]
我也尝试过 REGEX 设置,但效果不太好
SetTitleMatchMode, REGEX
为了使它正常工作,我必须将第二行更改为 #IfWinActive,否则它不起作用,但我想让它更通用。有什么想法吗?
答案1
Chrome 的标题中没有“Chrome”。您可以检查进程。
#if WinActive("ahk_exe chrome.exe")
:*:mail::[email protected]
#if
答案2
#IfWinActive, ahk_class Chrome_WidgetWin_1
:*:mail::[email protected]
使用 AU3_Spy(C:\Program Files\AutoHotkey\AU3_Spy.exe)获取有关窗口的信息。