Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Automate adding blank digital signature boxes

Explorer ,
Jun 04, 2017 Jun 04, 2017

Is it possible automate adding a digital signature field to a PDF?

My particular use case is that we have an MS Access DB that generates a list of items the company has issued to each employee and we send that out for each employee to digitally sign and return. I would like to insert a blank digital signature field at the bottom right of the document so that all we need to do is email that pdf to the employee (so they can then add their signature and return it). I'm using Access 2013 and Adobe Acrobat XI Pro.

What is the best way to accomplish this?

Thank you!

Ari

TOPICS
PDF forms
4.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Explorer ,
Jun 07, 2017 Jun 07, 2017
LATEST

Thank you,

I ended up making an Action in Acrobat as suggested that puts the blank

signature field in the lower right of a landscape layout page.

All it takes is to run the action wizard, have it prompt the user for files

or folders, then run this javascript on those files selected:

var name = "sigField";

var type = "signature";

var page = 0;

var mySigRect = ;

var sf = this.addField(name, type, page, mySigRect);

That is not as easy as just putting it into some VB Script such that Access

could export the PDF with the blank signature field already in it, but does

only add one step for the user.

Thank you for pointing me in that direction.

Ari

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 04, 2017 Jun 04, 2017

It's possible to create a script that will add this field at a pre-defined location on the first page of the file.

You could then execute it from a specially created menu item, or even as a part of an Action.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 04, 2017 Jun 04, 2017

Is it possible to create a script to do this to a folder full of files? What would that script look like?

Thanks!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 04, 2017 Jun 04, 2017

Yes, if it's combined with an Action.

Where exactly on the page do you want to place this field? What should be the size of it?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 07, 2017 Jun 07, 2017
LATEST

Thank you,

I ended up making an Action in Acrobat as suggested that puts the blank

signature field in the lower right of a landscape layout page.

All it takes is to run the action wizard, have it prompt the user for files

or folders, then run this javascript on those files selected:

var name = "sigField";

var type = "signature";

var page = 0;

var mySigRect = ;

var sf = this.addField(name, type, page, mySigRect);

That is not as easy as just putting it into some VB Script such that Access

could export the PDF with the blank signature field already in it, but does

only add one step for the user.

Thank you for pointing me in that direction.

Ari

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines