Richard A. Victor
Forum Enthusiast
I'll take a look. Looks interesting.
Thanks.
****
Thanks.
****
Hi,
Good job you did, thank you for sharing.
Do you know the AUTOIT application ? It is a very simple and easy
to learn windows script application that includes capbilities to
generate simple HMI.
Simply translating your script to autoit (a piece of cake) would
give you a windowed interface ...
Just to show this autoit simplicity here is a simple script I use
to recursively write the EXIF userscomment tag to the IPTC caption
one.
Hope this helps
Alain
script example
=========
$var = FileSelectFolder("Choose a folder.", "")
If @error Then
MsgBox(4096,"","No folder(s) chosen")
Else
$var = StringReplace($var, "", @CRLF)
;MsgBox(4096,"","You chose " & $var)
EndIf
; lance lexif tool et colle le tag EXIG usercommet dans le tag IPTC
caption (récursif dans la directory, conserve la date
Run ( 'exiftool.exe -k "-caption-abstract
-overwrite_original -r '&$var )