I have a problem with Autohotkey telling me there was a missing { in front of an else where I think my Code is perfectly fine (and worked until before I changed the window-related if's from Pidgin to qutIM)
^!p::
IfWinExist ahk_class QWidget, ,qutIM{ ;if there is a qutIM-window other than the buddy-list...
IfWinNotActive ahk_class QWidget, ,qutIM{ ;ans it is not active...
WinActivate
}else{ ;the closing bracket in front of the else here puts AHK off...
WinMinimize
}
}else{ ;do some stuff with the buddy-list
; [...]
}
return
I fear I'm overlooking something stupid, but I cannot seem to get this working.