我使用以下自动热键命令将 EmEditor(一个很棒的文本编辑器)带到前台。
^#1:: WinActivate, ahk_class EmEditorMainFrame3
但是,当有多个 EmEditor 窗口(均带有类名EmEditorMainFrame3
)时,选择要激活的窗口似乎非常困难。我希望实现这样的效果:多次按下 Ctrl+Win+1 可在不同的 EmEditor 窗口之间循环,也就是说,每次按下热键都会激活不同的 EmEditor 窗口。这是我能想象到的最佳用户体验。Autohotkey 能做到这一点吗?
答案1
GroupAdd, EmEditorGroup, ahk_class EmEditorMainFrame3
^#1:: GroupActivate EmEditorGroup ; activate the next window in this window group