shiningmonk 0 Posted April 2, 2004 I'd like to write a script to automatically log on to a web site. It needs to: 1) run Internet Explorer on the website 2) hide the window 3) wait for it to finish loading 4) send key strokes 5) unhide the window I can do 1) and 4), but how do I do the rest? Share this post Link to post Share on other sites
scriptkitty 1 Posted April 2, 2004 AutoItSetOption("WinDetectHiddenText", 1);1 = Detect hidden text run('C:\Program Files\Internet Explorer\IEXPLORE.EXE http://hiddensoft.com','',@SW_HIDE) sleep(100) winwait("HiddenSoft","Done") controlsend("HiddenSoft","","Internet Explorer_Server1","{pgdn 2}") winsetstate("HiddenSoft","",@SW_RESTORE) AutoIt3, the MACGYVER Pocket Knife for computers. Share this post Link to post Share on other sites