Batman 0 Posted October 25, 2004 I was wondering how i make something go to my internet explorer then search, i tried coping the same one as in the calculator example, but i dont work War does not determine who is right, it determines who is left. Share this post Link to post Share on other sites
Nova 0 Posted October 25, 2004 Hey Batman welcome What did you mean by you wanted Internet explorer to search ? The below code will open the website www.google.ie using Internet explorer Is that what you were after ? Run ( "c:\program files\internet explorer\iexplore.exe http://www.Google.ie" ) Share this post Link to post Share on other sites
scriptkitty 1 Posted October 26, 2004 (edited) to search explorer, you could send a ^f to find/search that page, then fill out the Find input box that comes out. If you want to use internet explorers search, send ^e and then fill out your search in Edit2. >>>>>>>>>>> Last Control Under Mouse <<<<<<<<<<< Control ID: 5001 Class: Edit2 Text: A little example, Yours may varry due to so many versions of explorer. Opt("WinTitleMatchMode", 4) Run ( "c:\program files\internet explorer\iexplore.exe" ) sleep(4000) winwait("classname=IEFrame") if NOT winexists("classname=IEFrame","What are you looking for?") then send("^e") sleep(2000) controlsettext("classname=IEFrame","","Edit2","hiddensoft.com") controlclick("classname=IEFrame","","Button5") Edited October 26, 2004 by scriptkitty AutoIt3, the MACGYVER Pocket Knife for computers. Share this post Link to post Share on other sites