What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » is this possible

is this possible
Author: Message:
Plik
Veteran Member
*****

Avatar

Posts: 1489
Reputation: 46
34 / Male / –
Joined: Jun 2004
RE: is this possible
You could use:
code:
Interop.Call('User32', 'PostMessageW', ChatWnd.handle, 16, 0, 0);

To close the window. All it does is posts WM_CLOSE to the chat window.
Closing group chats takes some extra work, but you can cheat and post an enter keystroke like so:
code:
Interop.Call('User32', 'PostMessageW', ChatWnd.handle, 16, 0, 0);
Interop.Call('User32', 'PostMessageW', ChatWnd.handle, 256, 0, 1835009);

Hope this helps
07-07-2006 09:53 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
is this possible - by teddytim on 07-07-2006 at 02:22 AM
RE: is this possible - by rob_botch on 07-07-2006 at 09:27 AM
RE: is this possible - by Plik on 07-07-2006 at 09:53 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On