Salir
  • Comunidad global
    • Idioma:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티

Automate adding blank digital signature boxes

Explorador ,
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

TEMAS
Formularios PDF
4.0K
Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
1 SOLUCIÓN ACEPTADA
Explorador ,
Jun 07, 2017 Jun 07, 2017
MÁS RECIENTES

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

Ver la solución en mensaje original publicado

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
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.

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Explorador ,
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!

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
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?

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Explorador ,
Jun 07, 2017 Jun 07, 2017
MÁS RECIENTES

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

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines