Jump to content

$cmdline Questions


Recommended Posts

I have a question reguarding the command line feature. Say I want to check to see if $CmdLine[1] is actually specified Ex: autoit3.exe myscript.au3 param1 vs. autoit3.exe myscript.au3.

If $CmdLine[1] = "" Then ...
My question is does the command line param always have to be specified. My reason is that I get an error when I don't specify my param when I don't want to.

Edited by Larry
Triton
Link to comment
Share on other sites

  • Developers

The $CmdLine[0] contains the number of parameters specified on the commandline.

so if you want to test that just do:

If $CmdLine[0] = 1 Then $MyParam = $CmdLine[1]

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