What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [?] Creating menu's

[?] Creating menu's
Author: Message:
vikke
Senior Member
****

Avatar

Posts: 900
Reputation: 28
31 / Male / Flag
Joined: May 2006
RE: [?] Creating menu's
I don't know if it'll work, but you should be able to try "Always on top".
code:
// Declares Put this on top of code
var HWND_TOPMOST = -1;
var SWP_NOMOVE = &H2; // No idea if those will work.
var SWP_NOSIZE = &H1;

// Function Note: Handle is HWND (window handle)
function AlwaysOnTop (Handle)
{
      // Also try HWND_TOP
      Interop.Call("user32.dll", "SetWindowPos", Handle, HWND_TOPMOST, 0, 0, 0, SWP_NOMOVE || SWP_NOSIZE);
}

4 8 15 16 23 42
04-14-2007 09:21 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[?] Creating menu's - by Matti on 04-14-2007 at 08:49 AM
RE: [?] Creating menu's - by vikke on 04-14-2007 at 09:21 AM
RE: [?] Creating menu's - by Matti on 04-14-2007 at 09:32 AM
RE: [?] Creating menu's - by vikke on 04-14-2007 at 09:42 AM
RE: [?] Creating menu's - by Matti on 04-14-2007 at 09:47 AM
RE: [?] Creating menu's - by vikke on 04-14-2007 at 09:56 AM
RE: [?] Creating menu's - by Matti on 04-14-2007 at 10:07 AM
RE: [?] Creating menu's - by matty on 04-14-2007 at 02:57 PM
RE: [?] Creating menu's - by Matti on 04-15-2007 at 09:26 AM
RE: RE: [?] Creating menu's - by deAd on 04-15-2007 at 02:48 PM
RE: [?] Creating menu's - by Matti on 04-15-2007 at 05:08 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