Noob can't load a script file, pls help
Posted: 01 Jun 2018 02:01
Hi all,
I get a "contains no valid scripts" message when I try to load it. It's probably something simple, but its got me stumped. All of the scripts work fine when I insert them manually with "::"
Note: I truncated the dates in the find and replace script.
Thanks in advance!
I get a "contains no valid scripts" message when I try to load it. It's probably something simple, but its got me stumped. All of the scripts work fine when I insert them manually with "::"
Code: Select all
// Dalton Photo Renaming Scripts
"Remove Non-Numerals"
rename k, "0123456789";
"Find and replace YYYYMM(day of year) with YYYYMMDD"
rename s, '20180101|20180102|20180103
>>20180101|20180102|20180103', 8;
"Append _ to filename"
rename b, '*_';
"start after position 8 and remove 6 characters"
rename r, "^(.{8})(.{6})(.*)(\.[^.]+$) > $1$3$4";Thanks in advance!