Hello dears,
I am working on an autoresponder for msn.
I need my running script to detect the conversation's window and auto-respond it.
Problem: To make my script detect the msn-conversation's window, I need its title. But every msn contact has his own window title (F.E. Sucker <Sucker@hotmail.com>)
I have used autoit info to take the title, and it gets the same(email). The control ID is not shown(msn's privacy feature).
What I can see with autoit info is the "Class" of the window.
I try to use:
While 1
If WinExists ("msn-title") then
controlsend ("msn-title" , "This is an autoresponder. I will talk with you later.")
Endif
Wend
That "msn-title" is what I seek!
Any help is very appreciated.