Changing the creation date
Hello,
I'm writing a script which should change the metadata of a tif image.
This works fine
img.info.author = "Me";
img.info.city = "London";
I also want to change the creation date and according to Adobe Photoshop JavaScript Reference, the date should be in format "YYYYMMDD", but this doesn't work:
img.info.creationDate = '20000101';
I also tried different formats to no avail too:
img.info.creationDate = '2000/01/01';
img.info.creationDate = '01012000';
img.info.creationDate = '01/01/2000';
Plz help.
Thanks.
