Link to home
Start Free TrialLog in
Avatar of cmushaun
cmushaunFlag for United States of America

asked on

automatically update date on pdf when opened in Acrobat Reader

I am making a pdf  in Acrobat Professional 8  and need a date at the top to update  to the current date when the document is opened in Acrobat Reader.

Any ideas?

Thanks!
Mike
Avatar of captain
captain
Flag of United Kingdom of Great Britain and Northern Ireland image

Hi

Go to Tools|Advanced Editing and insert a text field. In the Calculate tab select custom script and enter:

event.value = new Date().toString(); // as a full character string

event.value = util.printd("mm/dd/yyyy", new Date() ); // as a formatted date

Then select 'Date' from the format dropdown and select your format.

Hth
Avatar of cmushaun

ASKER

I tried this,

It seems to update the date correctly when viewing the document in Acrobat and when designing it, but once saved and opened with Adobe reader, it does not change from that saved date.

Any ideas?
ASKER CERTIFIED SOLUTION
Avatar of captain
captain
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial