Hi matty,
resolution on both is 1280x1024, second monitor on the right side.
I could fix the problem with that little script:
(took me about 7 hrs)
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind)
{
Windows = Messenger.CurrentChats
SetForeground(ChatWnd.Handle);
return Message;
}
function SetForeground(Wnd) {
Interop.Call("User32.dll","ShowWindow",Wnd,4);
}