High priority window! - 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: High priority window! (/showthread.php?tid=73944) High priority window! by Light86 on 04-26-2007 at 09:22 PM
Hello again,this time 1 have a really easy couple of question! RE: High priority window! by Eljay on 04-26-2007 at 09:53 PM
You can make the window stay on top of other windows by specifying the TopMost attribute in the window's XML. code: 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: Can't test this at the moment but it should work... RE: High priority window! by Light86 on 04-27-2007 at 09:40 AM Thx much!Just another thing...in xml how can I increase the size and the colour of the text? RE: High priority window! by Volv on 04-27-2007 at 10:02 AM
quote:Scripting Documentation - Interface Windows Schema Documentation RE: RE: High priority window! by Light86 on 04-27-2007 at 10:37 AM
quote: Can't understand anythyng RE: High priority window! by Felu on 04-27-2007 at 01:31 PM
Use a RichStaticControl for colored text. Plus! formatting codes can be used for color and other effects. code: RE: High priority window! by Light86 on 04-27-2007 at 02:26 PM Thanks very much! RE: High priority window! by Jimbo on 04-27-2007 at 06:00 PM How would i make a window like code:always stay in the centre and on top of the screen until a button is pressed. RE: High priority window! by vikke on 04-27-2007 at 07:06 PM
You can probably do in this ugly way: code: RE: High priority window! by Eljay on 04-27-2007 at 07:14 PM
Or you could do it the proper way by passing the MB_TOPMOST flag to the MessageBox call. code: |