Copy link to clipboard
Copied
I need help creating a dynamic engineer's seal with a date that the seal was applied. I am working with an engineer who has never used a digital seal before, and so I have helped to create a digital image copy of his seal for him. My issue now is that I want to set him up with the stamp so it's very easy for him to apply it, and I need the seal to have a field that will autofill the date the stamp was applied to the drawing page. I don't want it to update whenever the document is opened, just display the date it was applied. Then, I need the seal to be authenticated separately with his digital signature once he has applied his seal to all the pages. How do I do this? I've been working on it all day and I am at a loss.
Copy link to clipboard
Copied
Sorry, I misread...
Then you can use a stamp on each page (it can be duplicated using a script), with a text field and a simple script to populate it, like this:
event.value = util.printd("mm/dd/yyyy", new Date());
Then I would recommend to digitally sign the file, to make sure it has a valid signature that can be verified, as those stamps are not that at all.
Copy link to clipboard
Copied
Does the seal have to appear on all pages? Because if not, I would simply use a digital signature with an appearance set as the seal. The signature automatically contains the date it was applied, so there's no need to do anything special to add it. It also applies to the entire file as a whole, so there's no real need to stamp each page.
Copy link to clipboard
Copied
It does need to appear on each page
Copy link to clipboard
Copied
Sorry, I misread...
Then you can use a stamp on each page (it can be duplicated using a script), with a text field and a simple script to populate it, like this:
event.value = util.printd("mm/dd/yyyy", new Date());
Then I would recommend to digitally sign the file, to make sure it has a valid signature that can be verified, as those stamps are not that at all.
Copy link to clipboard
Copied
Thank you, that formula worked. I couldn't figure out what I was doing wrong where I was adding the field but then nothing happened.
Copy link to clipboard
Copied
Fields in a stamp are flattened as soon as you apply the stamp to the page, so you must populate them (using a script) before that happens.
Copy link to clipboard
Copied