从AHK脚本以编程方式关闭Internet Explorer中的特定浏览器选项卡

时间:2013-05-01 22:30:44

标签: internet-explorer autohotkey

我有一个AHK脚本,可以创建多个IE选项卡,只是为了访问大量的URL。在程序结束时,我想关闭所有已打开的选项卡,同时打开任何与我的程序无关的选项卡。

我一直在努力研究如何编写代码。 WinClose似乎想完全关闭IE。

真的很重视这方面的任何帮助。我已经使用AHK几年了,这是我选择的编程语言!我喜欢用它做的事情!特别是将代码编译成可移植的可执行文件是多么容易!

2 个答案:

答案 0 :(得分:0)

; Example is taken from here:
; http://www.autohotkey.com/board/topic/67438-navigate-to-javascript/#entry426699

VT_DISPATCH:=9, IID:="{332C4427-26CB-11D0-B483-00C04FD90119}" ; IID_IHTMLWINDOW2
`(oIE:=ComObjCreate("InternetExplorer.Application")).visible:=True
oIE.navigate("http://stackoverflow.com/questions/16327523/"
           . "closing-specific-browser-tabs-in-internet-explorer-programmatically-from-ahk-scr")

While, oIE.ReadyState<>4 Or oIE.Busy
   Sleep, 500

oWindow:=ComObj(VT_DISPATCH, ComObjQuery(oIE, IID, IID), 1)

; http://msdn.microsoft.com/en-us/library/aa741489(v=vs.85).aspx
newWin:=oWindow.open("http://www.autohotkey.com", "_blank")
While, % newWin.document.readyState!="complete"
   Sleep, 500

MsgBox, 262144, % A_LineNumber, % newWin.document.title

; http://msdn.microsoft.com/en-us/library/aa741361(v=vs.85).aspx
newWin.close
MsgBox, 262144, % A_LineNumber, % oIE.document.title
oIE.quit
ExitApp

答案 1 :(得分:0)

它可能比您感兴趣的更多,但您可以在Internet Explorer中使用COM。 AutoHotkey具有ComObjCreate()功能。使用COM函数就像直接编写Internet Explorer脚本,而不是使用窗口命令来攻击它的GUI。

Check out this SE question

此外,还有Autohotkey thread for using COM

以下是文档中的COM示例:

ie := ComObjCreate("InternetExplorer.Application")
ie.Visible := true  ; This is known to work incorrectly on IE7.
ie.Navigate("http://l.autohotkey.net/")

Here is Internet Explorer COM API