Change Log for the latest
XYplorer BETA version:
Code: Select all
v20.30.0010 - 2019-08-28 16:11
+ Scripting got a new command.
Name: OutputFile
Action: Lets you select a location for a file via the Windows Save As
common dialog.
Syntax: outputfile([path], [file], [caption])
path The default path for the dialog. When left empty or non-existent,
path defaults to the current path. In the latter case you are
prompted whether to continue the script.
With or without trailing slash, it does not matter.
file Initial name of the file. Can be changed within the dialog.
caption The text that will be displayed as title of the window. If
omitted it will be "Save As" in the local language.
return The full path/name of the selected existing or new file.
Remarks:
- If you press Cancel, the script execution will be aborted.
- The file is not saved, just the name is returned. Any saving has to be
done by a separate command.
Examples:
echo outputfile(,"Peace.jpg");
echo outputfile(,"Peace.jpg", "Select Location...");
echo outputfile("C:\Love","Peace.jpg", "Select Location...");
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
No-Install Package.
Note that BETA versions are work in progress and might contain fresh bugs. You have been warned.
It's a good idea to backup your complete XYplorer settings (menu File | Settings Special | Backup Application Data Folder...)
before running a new BETA version. This will also help in fixing any fresh bugs.