Hi,
had a button with
Copy FILE="nul" AS="{date|yyyy-MM-dd}.txt" HERE
which made textfiles named by date.
Button doesn't wor with DO 10.
Hi,
had a button with
Copy FILE="nul" AS="{date|yyyy-MM-dd}.txt" HERE
which made textfiles named by date.
Button doesn't wor with DO 10.
Use this instead:
FileType NEW=.txt NEWNAME="{date|yyyy-MM-dd}.txt"
(The old 'nul' trick doesn't work anymore because Opus 10 recognises nul, aux, con, lpt1, etc. as reserved/invalid filenames.)
Thanks, Leo!