Hi,
The short answer is yes, but of course you'll need to get Acrobat to edit the PDF file.
Generically, here is what you are looking to do:
- Open the Digital Signature Properties dialog
- Select the Signed tab
- Select the This script executes when the field is signed radio button
- Click the Edit button
- Add the code snippet below to the JavaScript editor
- Click the OK button on the JavaScript editor
- Click the Close button on the Digital Signature Properties dialog
// JavaScript code to add the date at signing time
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
var signingTime = day +"/"+month+"/"+year //Modify into your preferred format
var f = this.getField("Text1"); //Modify the field name as necessary
f.value = signingTime;
Good luck,
Steve