Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* WinExistで正規表現を使う [#efcfedc8]
SetTitleMatchMode, Regex
F1::
if WinExist("- メモ帳$ ahk_class Notepad") {
MsgBox, メモ帳がある
} else {
MsgBox, メモ帳がない
}
Return
*** 変数を使う場合 [#na75061e]
F1::
name := "- メモ帳$"
txt = %name% ahk_class Notepad
if WinExist(txt) {
MsgBox, メモ帳がある
} else {
MsgBox, メモ帳がない
}
Return
** 参考 [#qfd0af69]
- http://ahkwiki.net/WinExist
終了行:
* WinExistで正規表現を使う [#efcfedc8]
SetTitleMatchMode, Regex
F1::
if WinExist("- メモ帳$ ahk_class Notepad") {
MsgBox, メモ帳がある
} else {
MsgBox, メモ帳がない
}
Return
*** 変数を使う場合 [#na75061e]
F1::
name := "- メモ帳$"
txt = %name% ahk_class Notepad
if WinExist(txt) {
MsgBox, メモ帳がある
} else {
MsgBox, メモ帳がない
}
Return
** 参考 [#qfd0af69]
- http://ahkwiki.net/WinExist
ページ名: