I'm making new window this way:
var WSHShell = WScript.CreateObject("WScript.Shell");
WSHShell.Popup("This is popup.");
But window appears under another ones. How can I move it to the front?
I'm making new window this way:
var WSHShell = WScript.CreateObject("WScript.Shell");
WSHShell.Popup("This is popup.");
But window appears under another ones. How can I move it to the front?
Perhaps this would help:
WScript.Shell.Popup has an undocumented value for the nType parameter which causes the resulting dialogs/popups to “stay on top” / in foreground, meaning that they cannot be hidden by other windows or dialogs: 4096.
WScript.CreateObject(“WScript.Shell”).Popup(“Message”, 0, “Title”, 4096);