Shoutbox

[SOLVED] How to minimize chat window? - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: [SOLVED] How to minimize chat window? (/showthread.php?tid=93020)

[SOLVED] How to minimize chat window? by V@no on 11-26-2009 at 02:47 AM

Hello!
How can I minimize a chat window (with many chat tabs)?

Thank you.


RE: How to minimize chat window? by SourSpud on 11-26-2009 at 03:10 AM

right click and minimize group


RE: How to minimize chat window? by V@no on 11-26-2009 at 03:13 AM

mmmm...this is scripting section, isn't it ;)


RE: How to minimize chat window? by SourSpud on 11-26-2009 at 03:16 AM

so you want to do something like /min which will minimize all conversations?


RE: How to minimize chat window? by V@no on 11-26-2009 at 03:42 AM

I want find a way within MP!L script to minimize a chat window.

In this topic I found a snippet to close chat window:

code:
Interop.Call("user32", "PostMessageW", ChatWnd.Handle, 0x0111, 40003, 0);

Work great, but with tabbed chats it leaves the chat window in focus (unless of course the closed window was the only chat window opened), so instead of going a long way by tracing which window was last in focus before wlm chat window was opened, I figured it would be much easier just minimize chat window instead...

I realize the consequences of doing so, but in my particular case it won't matter, as it will only be done with a specific account.
RE: How to minimize chat window? by Spunky on 11-26-2009 at 06:40 AM

This should work. It's very basic though. You can change the command to whatever you want :p

Javascript code:
var command = "/min"; //Change the command here
 
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
    if(Message.substr(0, command.length) == command){
        Interop.Call("user32.dll", "ShowWindow", ChatWnd.Handle, 6 /*SW_MINIMIXE*/);
        return "";
    }
}


RE: How to minimize chat window? by V@no on 11-26-2009 at 09:06 AM

Excellent!
Works great. Thank you!