JScript:如何将焦点放在弹出窗口上
我正在这样创建新窗口:
var WSHShell = WScript.CreateObject("WScript.Shell");
WSHShell.Popup("This is popup.");
但是窗口出现在另一个窗口下面。我怎样才能把它移到前面?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这会有所帮助:
Perhaps this would help:
使用 4096 使弹出窗口“保持在顶部”
我正在尝试在 Ruby 和 Watir Webdriver 中创建弹出窗口。
我安装了 win32ole-pp rubygem
我在代码中使用了它并且它有效:
require 'win32ole'
WshShell = WIN32OLE.new("WScript.Shell").Popup("Message", 5, "Title", 4096);
Using 4096 works for popups to "stay on top"
I'm trying to create Popups in Ruby and Watir Webdriver.
I installed win32ole-pp rubygem
I used this in my Code and it works:
require 'win32ole'
WshShell = WIN32OLE.new("WScript.Shell").Popup("Message", 5, "Title", 4096);