I need a button that will ask for a name and then create a folder in three different locations. It looks like the create folder with the name option will handle creating them but I can't see how to get the name. Would someone please explain how to do that?
You have to add something like this:
CREATEFOLDER NAME="{dlgstring|Specify folder-name}"
Or something like this if you want to use the same folder-name for the three different locations:
@set dir = {dlgstring|Enter new folder name}
createfolder "B:{$dir}"
createfolder "C:{$dir}"
createfolder "D:{$dir}"
Perfect. The second works justas I needed. Thank you.