I have a web site that I load using a vbscript and strip down version of IE. I use the the WScript.CreateObject("InternetExplorer.Application") parameters to accomplish the task. I have just been assigned the task of creating the same type of output but this time using Firefox. Can anyone tell me if there is code similiar to the following that I can launch a Firefox browser with:
'Variables
Dim objIE
Set objIE = WScript.CreateObject("InternetExplorer.Application")
'Internet Explorer Settings
objIE.AddressBar = False
objIE.FullScreen = False
objIE.MenuBar = False
objIE.Resizable = True
objIE.Silent = True
objIE.StatusBar = False
objIE.TheaterMode = False
objIE.ToolBar = False
objIE.Visible = 100
objIE.Visible = True
'Load Web App
objIE.Navigate "
'Variables
Dim objIE
Set objIE = WScript.CreateObject("InternetExplorer.Application")
'Internet Explorer Settings
objIE.AddressBar = False
objIE.FullScreen = False
objIE.MenuBar = False
objIE.Resizable = True
objIE.Silent = True
objIE.StatusBar = False
objIE.TheaterMode = False
objIE.ToolBar = False
objIE.Visible = 100
objIE.Visible = True
'Load Web App
objIE.Navigate "