Justmobile Posted November 24, 2004 Posted November 24, 2004 (edited) Sound stupid but see this Send("!D") Send(@ScriptDir & "/test.html") Send("{ENTER}") is there a faster way? (when you run this , you see slowly that the address bar is filling up, this can faster?) I need to load a url in IE, so i will past the url in the address bar after that an enter. I need this because the script must running after the page is loaded, i need to do some extra things in my script after the pages is showing. cheers Tidde EDIT: wahooo i found this way Send("!D") ClipPut(@ScriptDir & "/test.html") Send("^v") Send("{ENTER}") Edited November 24, 2004 by Justmobile
SlimShady Posted November 24, 2004 Posted November 24, 2004 Run("explorer http://www.autoitscript.com")
ezzetabi Posted November 24, 2004 Posted November 24, 2004 Or using the default browser... Run(@comspec & ' /c start http://www.hiddensoft.com','',@sw_hide)
Justmobile Posted November 25, 2004 Author Posted November 25, 2004 Thanks guys, but both options opens a new browser, the browser is already open . any idea?
stingjoel Posted November 25, 2004 Posted November 25, 2004 (edited) Try this: ControlSetText ("about:blank - Microsoft Internet Explorer", "", "Edit1", @ScriptDir & "/test.html") ControlClick ("about:blank - Microsoft Internet Explorer", "", "ToolbarWindow322") ;Press Go Button Change windows title text parameter with yours... Edited November 25, 2004 by stingjoel
wangyu1204 Posted November 25, 2004 Posted November 25, 2004 Opt("WinTitleMatchMode", 2) WinActivate ( "- Microsoft Internet Explorer","" ) Send("!www.autoitscript.com") send("{ENTER}")
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