本文介绍了是否可以使用VBS在某个页面上打开Firefox?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在谷歌上找到了这个代码:

I found this code on google:

 

sub shell(cmd)

dim objShell

设置objShell = WScript.CreateObject(" WScript.Shell")

objShell.Run(cmd)

设置objShell = Nothing

end sub



shell""" C:\Program Files \ Mozilla Firefox \ firefox.exe"" ;"

sub shell(cmd)
dim objShell
Set objShell = WScript.CreateObject( "WScript.Shell" )
objShell.Run(cmd)
Set objShell = Nothing
end sub

shell """C:\Program Files\Mozilla Firefox\firefox.exe"""

 

 

我在Lua做了一个机器人,我想要它会在_发生时在某个页面上自动打开firefox,而Lua不能这样做。是否可以使用VBS?

I made a bot in Lua, and I wanted it to auto open firefox on a certain page whenever _ happens, and Lua can't do it. Is it possible with VBS?

谢谢

推荐答案

Renee


这篇关于是否可以使用VBS在某个页面上打开Firefox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 20:24