A documentação do Autohotkey em IfWinExist / IfWinNotExist / WinExist fornece um exemplo de várias condições.
if WinExist("ahk_class Notepad") or WinExist("ahk_class" . ClassName)
Para seus objetivos, você deseja o seguinte código
if WinExist("September-Sales") and WinExist("ahk_class OpusApp") and WinExist("ahk_exe WINWORD.EXE")
{
...
}