What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » High priority window!

High priority window!
Author: Message:
Eljay
Elite Member
*****

Avatar
:O

Posts: 2949
Reputation: 77
– / Male / –
Joined: May 2004
RE: High priority window!
You can make the window stay on top of other windows by specifying the TopMost attribute in the window's XML.
Example:
code:
<Window Id="...">
  <Attributes>
    <TopMost>true</TopMost>
  </Attributes>
  ...
</Window>

And by default it should appear in the center of the screen but to make it not movable you can disable the LockOnClick attribute.

code:
<Window Id="...">
  <Attributes>
    <TopMost>true</TopMost>
    <LockOnClick>false</LockOnClick>
  </Attributes>
</Window>

Can't test this at the moment but it should work...
04-26-2007 09:53 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
High priority window! - by Light86 on 04-26-2007 at 09:22 PM
RE: High priority window! - by Eljay on 04-26-2007 at 09:53 PM
RE: High priority window! - by Light86 on 04-27-2007 at 09:40 AM
RE: High priority window! - by Volv on 04-27-2007 at 10:02 AM
RE: RE: High priority window! - by Light86 on 04-27-2007 at 10:37 AM
RE: High priority window! - by Felu on 04-27-2007 at 01:31 PM
RE: High priority window! - by Light86 on 04-27-2007 at 02:26 PM
RE: High priority window! - by Jimbo on 04-27-2007 at 06:00 PM
RE: High priority window! - by vikke on 04-27-2007 at 07:06 PM
RE: High priority window! - by Eljay on 04-27-2007 at 07:14 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