Eu uso minha própria função que implementa IfWinActive
. Aqui está um exemplo:
SetTitleMatchMode, 2
#k::ShowStart("Calendar", "C:\Program Files (x86)\Google\Chrome\Application\chromea.exe --app=https://www.google.com/calendar/render?pli=1")
ShowStart(title, exe)
{
IfWinExist, %title%
WinActivate
else
{
Run, %exe%,, UseErrorLevel
If ErrorLevel
{
Msgbox, File Not Found
Return
}
WinActivate
}
}