Jump to content

Some Cmd


Guest BassReFLeX
 Share

Recommended Posts

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 Nuttall
Nuttall 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...

Link to comment
Share on other sites

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" ' )

Link to comment
Share on other sites

Guest BassReFLeX

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 by BassReFLeX
Link to comment
Share on other sites

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

Link to comment
Share on other sites

  • Developers

non of your Run theories is working...

by the way i have WindowsXP build 2600

below 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.
  :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...