Hey it's me, again
well, i would send a message in a window ... not that hard if i want to send it to the last personn who has talk to me, but ... if i want to choose another personn ?
I've found in the Help that i should use SendMessage:
http://msdn.microsoft.com/en-us/library/ms644950(VS.85).aspx
But how can i use it in the msg plus! Jscript ?
i've tried:
han = 2425418
SendMessage(han,"my string",0,0);
but t doesn't work .... i caught the handle with:
var e = new Enumerator(Windows);
for(; !e.atEnd(); e.moveNext())
{
var ChatWindow = e.item();
Debug.Trace(" Handle: " + ChatWindow.Handle);
}
Thanks !