tommytx 0 Posted July 29, 2010 I know this is very simple, but I cannot find it.. Here is the normal way to load a file into the browser from the web.. $oIE.navigate("http://www.vahud.com/myfile.htm") But how do I do it from the hard drive... Course I know this is not right but just wanted to make sure you understood what I am trying to do. $oIE.navigate("c://file.htm") ???????... Share this post Link to post Share on other sites
kaotkbliss 146 Posted July 29, 2010 either of these will work... I think this is what you are looking to do #include <IE.au3> _IECreate ("C:\path\file.htm") or Run("C:\Program Files\Internet Explorer\iexplore.exe C:\path\file.htm") 010101000110100001101001011100110010000001101001011100110010000001101101011110010010000001110011011010010110011100100001My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueekWe're gonna need another Timmy! Share this post Link to post Share on other sites
tommytx 0 Posted July 29, 2010 That worked perfect thanks.. Share this post Link to post Share on other sites