What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Patchou: Script Windows have an invisible titlebar/border

Patchou: Script Windows have an invisible titlebar/border
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
O.P. RE: Patchou: Script Windows have an invisible titlebar/border
code:
function OnWindowIdEvent_MessageNotification(pPlusWnd, nMessage, wParam, lParam) {
    switch (nMessage){
        case 0x5 /* WM_SIZE */:
            if (wParam === 2 /* SIZE_MAXIMIZED */) {
                Interop.Call('user32', 'ShowWindow', pPlusWnd.GetControlHandle('BaseBtnMinimise'), 5 /* SW_SHOW */);
                Interop.Call('user32', 'ShowWindow', pPlusWnd.GetControlHandle('BaseBtnMaximise'), 5 /* SW_SHOW */);
                Interop.Call('user32', 'ShowWindow', pPlusWnd.GetControlHandle('BaseBtnCancel'), 5 /* SW_SHOW */);
            }
        break;
    }
}

Simple as that as far as a work around.

This post was edited on 01-16-2008 at 01:21 PM by matty.
01-16-2008 01:20 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Patchou: Script Windows have an invisible titlebar/border - by matty on 01-03-2008 at 02:38 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by deAd on 01-03-2008 at 04:03 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-04-2008 at 02:23 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by Patchou on 01-04-2008 at 03:31 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-04-2008 at 03:53 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by Patchou on 01-04-2008 at 07:40 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-04-2008 at 07:53 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by Spunky on 01-04-2008 at 08:45 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-04-2008 at 09:12 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by Matti on 01-05-2008 at 11:23 AM
RE: Patchou: Script Windows have an invisible titlebar/border - by Patchou on 01-05-2008 at 05:51 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-06-2008 at 03:14 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-11-2008 at 01:09 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by Patchou on 01-11-2008 at 03:50 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-14-2008 at 09:39 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by Matti on 01-15-2008 at 07:27 PM
RE: Patchou: Script Windows have an invisible titlebar/border - by matty on 01-16-2008 at 01:20 PM


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