Use Name if no img name

Advanced Renamer forum
#1 : 17/07-18 18:27
Tony
Tony
Posts: 3
This seems like something that the program should support so I'm hoping I'm just missing it...

My New Name method is
<Img Year:X> <Img Month:X> <Img Day>

but there's some photo's without exif data so those files are just coming out as .ext - is there not a way to say if the IMG tags don't exist to just use <Name> ?


17/07-18 18:27
#2 : 22/09-18 22:14
Tony
Tony
Posts: 3
Reply to #1:
Hello ? no replies to this? seems like I'm doing something wrong?


22/09-18 22:14
#3 : 23/09-18 15:26
David Lee
David Lee
Posts: 1125
Reply to #2:
I can't help directly but try using a script and check out "img.date."


23/09-18 15:26
#4 : 02/10-18 03:40
Tony
Tony
Posts: 3
Reply to #3:
Thanks - Iooking at the script commands I was able to get this to work with the below:

var i = app.parseTags('<Img Year:X> <Img Month:X> <Img Day>');
if (i <= null) {
return app.parseTags('<Name>');
} else {
return i;
}


02/10-18 03:40