WindowTitle、Classnameは、autohotkeyに標準で添付されている”AU3_Spy.exe”を利用して抽出する。au3の使い方はここが詳しい。
ポイントは、Title指定が最初に来るところ。
"#ifWinActive,Title ahk_class
これで結構はまった。
- 構文
- SetTitleMatchMode Regex
- #ifWinActive,
ahk_class - {
- 処理
- }
- return
- #ifWinActive
- ※以下#ifWinActiveから続ける。
- sample
SetTitleMatchMode Regex
#ifWinActive,Blogger ahk_class Chrome_WidgetWin_1
{
p::
Send,start!!
Send,{Enter}
}
return
#ifWinActive
#ifWinActive,Google カレンダー - Google Chrome ahk_class Chrome_WidgetWin_1
{
p::
Send,start!!
Send,{Enter}
}
return
#ifWinActive
■参考リンク
No comments:
Post a Comment