问:
我使用的是IE浏览器,想获得IE 标签的句柄,但总是失败,返回值为0
- //查找窗口类名(0)或者标题("新闻中心_网易新闻 - Microsoft Internet Explorer"),返回找到的句柄Hwnd
- Hwnd = Plugin.Window.Find(0, "新闻中心_网易新闻 - Microsoft Internet Explorer")
- //根据父窗口句柄(Hwnd)查找子窗口匹配类名("Internet Explorer_Server")或者匹配标题(0),返回找到匹配的句柄HwndEx
- HwndEx = Plugin.Window.FindEx(Hwnd, 0, "Internet Explorer_Server", 0)
复制代码答:
以下是8.X版按键精灵脚本
- hwnd=Plugin.Window.Find("IEFrame",0)
- If hwnd=0 then
- MessageBox "系统自带的没有打开。脚本停止运行!"
- EndScript
- End If
- //以下是7.X版按键精灵脚本=========================================
- Hwnd = Plugin.Window.FindEx(Hwnd, 0, "Shell DocObject View",0)
- //