使用 FF.au3 和 Mozrepl 进行 Autoit 如何使用 _FFClosetab() 关闭 Firefox 中的所有选项卡?
我使用的是 Firefox 3.6,我认为使用 #include FF.au3 和 Mozrepl 关闭所有安装了插件 TMP-TabMixPlus 0.3.8.4 的 Firefox 打开选项卡的 Autoit 脚本可能存在兼容性问题。下面是我正在使用的脚本,我想添加类似的内容 _FFTabClose("all", "index") 我无法让它工作!
#Include FF.au3
If _FFConnect() Then
If _FFOpenURL("file:///C:/firefox.html") Then
WinSetState("[CLASS:MozillaUIWindowClass]", "", @SW_RESTORE)
EndIf
Else
MsgBox(64,"Error","Can't connect to FireFox")
EndIf
我想在从系统托盘恢复 Firefox 之前关闭所有选项卡。其他一切都很好。我认为这可能是我的语法,但我找不到任何内容。
I'm using Firefox 3.6 and I think that there may be a compatibility issue with the Autoit script using #include FF.au3 and Mozrepl to close all of Firefox's open tabs with the addon TMP-TabMixPlus 0.3.8.4 installed. Below is the script I'm using and I would like to add something like this _FFTabClose("all", "index") I can't make it work!
#Include FF.au3
If _FFConnect() Then
If _FFOpenURL("file:///C:/firefox.html") Then
WinSetState("[CLASS:MozillaUIWindowClass]", "", @SW_RESTORE)
EndIf
Else
MsgBox(64,"Error","Can't connect to FireFox")
EndIf
I want to close all tabs before restoring firefox from system tray. Everything else works fine. I think that it might be my syntax but I can't find anything on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此有一个特殊的函数。
对于我来说,最小化的 FF 3.6.10 工作得很好。
此外,还有一个指向此内容的官方文档的链接功能。
There is a special function for this.
Works for me just fine with minimized FF 3.6.10.
Also, there is a link to official docs for this function.