Guest BassReFLeX Posted April 11, 2004 Posted April 11, 2004 Should this work: Run("www.bassreflex.biz") ? if not what's the real cmd ?
Marc Posted April 11, 2004 Posted April 11, 2004 Try run ("explorer.exe www.bassreflex.biz") Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)
Nutster Posted April 11, 2004 Posted April 11, 2004 Or if you know a specific page and not just the directory Run('Start "www.bassreflex.biz/index.html" ' ) Oh, if you want to use RunWait with Start: RunWait('Start /w "www.bassfeflex.biz/index.html" ' ) David NuttallNuttall Computer Consulting An Aquarius born during the Age of Aquarius AutoIt allows me to re-invent the wheel so much faster. I'm off to write a wizard, a wonderful wizard of odd...
ezzetabi Posted April 13, 2004 Posted April 13, 2004 Use Start is much better than using explorer.exe since it recal the system default application. Luckly not everyone is so dumb to really use Explorer. In W2000 (and XP I think) to let it work you have to use: Run('Start "" "www.bassreflex.biz/index.html" ' )
Guest BassReFLeX Posted April 13, 2004 Posted April 13, 2004 (edited) Why %input% isn't replacing with the number in InputBox ? $input = InputBox("BlaBla","Blabla") MsgBox(0, "BlaBla", "You typed number %input%") PS. WinMinimizeAll isn't like this anymore ? Edited April 13, 2004 by BassReFLeX
ezzetabi Posted April 13, 2004 Posted April 13, 2004 did you ever read the help file? now %variable% do not work anymore (you can force autoit work old way setting an option, if you wish) Now you have to do: MsgBox(0, "BlaBla", "You typed number " & $input) The text part are in the "" (or '') and the variables have to be outside. to connect use &s
Guest BassReFLeX Posted April 13, 2004 Posted April 13, 2004 non of your Run theories is working... by the way i have WindowsXP build 2600
Developers Jos Posted April 13, 2004 Developers Posted April 13, 2004 non of your Run theories is working... by the way i have WindowsXP build 2600below works fine for me.... what commandline did you use and what's the error ? Run('Start "www.bassreflex.biz/index.html" ','',@sw_hide ) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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