Skip to main content
Participating Frequently
December 18, 2023
Question

Multiple Digital Signatures in Dynamic Stamp

  • December 18, 2023
  • 1 reply
  • 2147 views

I have created a dynamic stamp for document approval, four signatures are required.

I have followed the steps in the link below, when I used the new custom dynamic stamp, none of the four signature fields appear in the stamp. I am not sure if there is step I am missing or overlooking.

 

I have attached the stamp.

 

https://helpx.adobe.com/au/acrobat/kb/create-custom-dynamicstamp.html

 

Any help will be greatly appreciated. 

This topic has been closed for replies.

1 reply

Bernd Alheit
Community Expert
Community Expert
December 18, 2023

I can't see any script which fills the fields.

Participating Frequently
December 18, 2023

I dont want scripts to fill the fields, I want to use the visable digitial signature option. The document needs to be emailed to four different people (and sometime differennt orgainisation). I have manually added the fields to this stamp, but when i have 10's of drawings to do, it becomes very time cosuming.

bebarth
Community Expert
Community Expert
December 19, 2023

Hello Bebarth

Looks pretty involved, can you point me in the direction of a good youtube video or tutiual?


Hi,

Here is my proposal.

Let the drawing where you want to apply the stamp.

You run this script from an action wizard:

var mm2pt=72/25.4;
var delta=15*mm2pt;
// Stamp
var width=173*mm2pt;
var height=81*mm2pt;
var f=this.addField("theStamp","button",0,[delta,delta+height,delta+width,delta]);
f.strokeColor=color.red;
f.buttonPosition=position.iconOnly;
f.buttonImportIcon("BHP Approval Stamp_2023.pdf");
// Signatures
var signatureNames=["reviewed","engineered","checked","drawn"];
var signatureWidth=82*mm2pt;
var signatureHeight=10*mm2pt;
var signature0=[86.4*mm2pt,14.2*mm2pt];
for (var i=0; i<4; i++) {
	var f=this.addField(signatureNames[i],"signature",0,[signature0[0]+delta,signature0[1]+signatureHeight*i+delta,signature0[0]+signatureWidth+delta,signature0[1]+signatureHeight*(i-1)+delta]);
}

...

the stamp appears at the bottom-left corner of the drawing.

You can then select all fields and move them at the place you want.

All signature fields are usable.

In my example, the stamp file is located in the same folder as the drawing file, but in the script you can indicate any other path.

Let me know.

@+