dat Posted June 30, 2006 Posted June 30, 2006 hello everyone, i need help on opening a link/url on my desktop. i tried to use Run(), but it doesn't allow .lnk/.url. i also tried MouseClick() and it works, but it doesn't serve my purpose. can anyone help me? thanks
Impulse08 Posted June 30, 2006 Posted June 30, 2006 hello everyone,i need help on opening a link/url on my desktop. i tried to use Run(), but it doesn't allow .lnk/.url. i also tried MouseClick() and it works, but it doesn't serve my purpose. can anyone help me? thanksYou can do Run("iexplore.exe www.yahoo.com")Or look up the IE.au3 files in scripts and scraps, that has a bunch of useful stuff to navigate webpages. -- If the apocalypse comes... beep me.
dat Posted July 1, 2006 Author Posted July 1, 2006 i see it now. that really helps. thank you muchdatYou can do Run("iexplore.exe www.yahoo.com")Or look up the IE.au3 files in scripts and scraps, that has a bunch of useful stuff to navigate webpages.
Simucal Posted July 1, 2006 Posted July 1, 2006 (edited) I prefer: $url = "www.google.com" RunWait("rundll32.exe url.dll,FileProtocolHandler " & $url, @WorkingDir) Then it opens the link the systems default browser, instead of just IE. However, if you plan on scripting the automation of a website, you need to check out Dale's IE.au3. You would then _IENavigate to the website you want. EDIT: Welcome to the forums!! Edited July 1, 2006 by Simucal AutoIt Scripts:Aimbot: Proof of Concept - PixelSearching Aimbot with several search/autoshoot/lock-on techniques.Sliding Toolbar - Add a nice Sliding Toolbar to your next script. Click the link to see an animation of it in action!FontInfo UDF - Get list of system fonts, or search to see if a particular font is installed.Get Extended Property UDF - Retrieve a files extended properties (e.g., video/image dimensions, file version, bitrate of song/video, etc)
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