AutoHotkey-计数在Chrome中打开的标签页数

时间:2018-08-20 18:56:45

标签: autohotkey

任何人都可以帮助编写代码来计算chrome中打开的标签页总数。 我正在尝试用AUTOHOTKEY编写脚本,以下是适用于Internet Explorer而不适用于chrome的代码:

 ^t::

winget, hWnd, ID, ahk_class Chrome_WidgetWin_1
vCount := 0
for oWin in ComObjCreate("Shell.Application").Windows
    if(hWnd=owin.Hwnd)
        vCount++
a := % Vcount
MsgBox, % a

0 个答案:

没有答案