grasshopper3 Posted June 26, 2010 Posted June 26, 2010 I feel like this should be a simple thing to do, but it is escaping me at the moment. I want to be able to send this... $UpdateString = "start http://" & $Array[$i] & "/xbmcCmds/xbmcHttp?command=ExecBuiltIn(CleanLibrary(video))" Run(@ComSpec & " /c " & $UpdateString,"", @SW_HIDE) without opening a browser window.
sahsanu Posted June 26, 2010 Posted June 26, 2010 I want to be able to send this... $UpdateString = "start http://" & $Array[$i] & "/xbmcCmds/xbmcHttp?command=ExecBuiltIn(CleanLibrary(video))" Run(@ComSpec & " /c " & $UpdateString,"", @SW_HIDE) without opening a browser window. Try it using _IECreate: _IECreate ("http://" & $Array[$i] & "/xbmcCmds/xbmcHttp?command=ExecBuiltIn(CleanLibrary(video))",0,0)
grasshopper3 Posted June 26, 2010 Author Posted June 26, 2010 That worked, but you forgot to mention _IEQuit(). I am open to other solutions if anyone has some. Thanks.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now