admin wrote:-My Bluetooth is not a drive, but a shell name space extension I assume?
It seems to be - can't find it anywhere...
---
admin wrote:FYI, there is an EXIF date stamping command built in: Miscellaneous / Timestamp / Set Modified Date to EXIF Date. Sets the Modified date of each selected image file (JPEG, TIFF) to its EXIF date.
Oh yes, and I used it:
Code: Select all
msg "Use this on a folder containing just EXIFed pictures.<crlf> It will auto apply EXIF timestamps into all files automatically, using their individual EXIF as source.<crlf> Remember: press ESC when all done (end of the list, blinking screen).<crlf> All set and ready? Please click OK to continue.", 1, ;
copytext "#1074; #1073; focus; sendkeys'{down}'; focus a; sendkeys'{enter}'";
focus a;
sendkeys "^{v}";
sendkeys"{enter}";
The problem was the confirmation dialogs at the end of each operation...
---
Using this brings another sort of trouble: quoting and "invalid date" messages of any flavors...
Code: Select all
msg "Use this on a folder containing just EXIFed pictures.<crlf> It will auto apply EXIF timestamps into all files automatically, using their individual EXIF as source.<crlf> Remember: press ESC when all done (end of the list, blinking screen).<crlf> All set and ready? Please click OK to continue.", 1, ;
copytext "$a = formatdate(<dateexif yyyy-mm-dd hh:nn:ss>); timestamp , $a; focus; sendkeys'{down}'; focus a; sendkeys'{enter}';";
focus a;
// regexreplace("$a", "formatdate('<dateexif yyyy-mm-dd hh:nn:ss>')");
sendkeys"^{v}";
sendkeys"{enter}";
Now trying to circumvent this with regexreplace... (yes, I'd like to stay focused on this "sendkeys/address bar" method - trying to get the most out of it when playing with several files, which I'm yet to master).