quote:
Originally posted by RicardO.sys
quote:
Originally posted by matty
Try something along these lines since you are using tabbed chats.
js code:
var SW_HIDE = 0;
var GA_PARENT = 1;
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MsgKind) {
Interop.Call('user32', 'ShowWindow', Interop.Call('user32', 'GetAncestor', ChatWnd.Handle, GA_PARENT), SW_HIDE);
}
the window is stuck and will not display anything, it's just the mold and does not disappear
Ok then it is a limitation of tabbed chats. However... you could try and mimic the menu press to undock the window and then hide it. That is really your only option in this scenario I do believe.