Hidden 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: Hidden Window (/showthread.php?tid=97179)
Hidden Window by Fike on 03-22-2011 at 08:38 PM
Is it possible to make a window hidden from view?
RE: Hidden Window by whiz on 03-22-2011 at 08:45 PM
What about this?
quote: Originally posted by Scripting Docs
MsgPlus::CreateWnd
Options
[number,optional] If specified, this parameter can be one of the following numbers:
WNDOPT_NORMAL (0)
Display the window normally (default)
WNDOPT_INVISIBLE (1)
Don't show the window after it's been created
WNDOPT_NOACTIVATE (2)
Don't activate the window after its creation
JScript code:
var Wnd = MsgPlus.CreateWnd("<File>", "<ID>", 1);
RE: RE: Hidden Window by Fike on 03-22-2011 at 08:56 PM
quote: Originally posted by whiz
What about this?
quote: Originally posted by Scripting Docs
MsgPlus::CreateWnd
Options
[number,optional] If specified, this parameter can be one of the following numbers:
WNDOPT_NORMAL (0)
Display the window normally (default)
WNDOPT_INVISIBLE (1)
Don't show the window after it's been created
WNDOPT_NOACTIVATE (2)
Don't activate the window after its creation
JScript code:
var Wnd = MsgPlus.CreateWnd("<File>", "<ID>", 1);
Ah... Didn't see that . Thanks
|