InputBox [<options>] <caption>[, <macro name>]
Shows an input box with the given caption. You can use this input text via the macro $(input) in any command of PyroBatchFTP.
If you specifiy the optional macro name parameter (e.g. "password", PyroBatchFTP will create a macro with that name (instead of "input"), e.g. $(password).
If you provide the option -P the input box shows a password field.
Example:
InputBox "Directory"
LocalChDir "$(input)"
InputBox -P "Secret Password", "password"
Connect "ftp.somewhere.com", "joedoe", "$(password)"
← Back to Script Commands