Shoutbox

[help]How to detach a chat from tabbed (kinda) and a question - 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: [help]How to detach a chat from tabbed (kinda) and a question (/showthread.php?tid=90108)

[help]How to detach a chat from tabbed (kinda) and a question by xXDarknessXx on 04-11-2009 at 04:02 AM

I have found that if you go into your messenger plus! preferences and then disable tabbed chats, open a chat, then re-enable it then the chat you opened will be on its own and further opened chats will be tabbed. Which means that you can (kinda) detach chat windows, the only problem with that is the going into the preference every time so i was thinking.

If someone could find how to enable/disable that option using a Plus! script similar to this
(found on a forum)

code:
function OnEvent_ChatWndSendMessage( oChatWnd, sMessage ) {
    if ( sMessage === '/webcam' ) {
        Interop.Call( 'user32', 'SendMessageW', oChatWnd.Handle, 0x0111 /* WM_COMMAND */, 40279, 0 );
        return '';
    }
which starts sending your webcam in the current chat window. I have no idea about resource hacking (i assume) to get the code which does what i want and i don't think its safe playing with numbers so if someone could help find that code id be very thankful.

Edit:
I have found out how to work it and i have made a script which i will link to it when i can =) thank you for all that has looked at my post lol
RE: [help]How to detach a chat from tabbed (kinda) and a question by matty on 04-12-2009 at 01:35 AM

This isn't possible. And Plus! is actually sort of supposed to prevent you from doing this. If you change the settings while you have a conversation window open it is not supposed to change anything until all are closed.


RE: [help]How to detach a chat from tabbed (kinda) and a question by xXDarknessXx on 04-12-2009 at 01:39 AM

well thank you for the reply but i found out it saves its tabbed enable setting as a registry and i have made a script that does wot i want it to i have uploaded to msgplus scripts and soon its through i will link this page to it =D


RE: [help]How to detach a chat from tabbed (kinda) and a question by matty on 04-12-2009 at 02:02 AM

I never said it didn't save it as a registry setting. I said Plus! internally prevents this from happening.