Multiple Digital Signatures in Dynamic Stamp
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
I can't see any script which fills the fields.
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
Hi,
You can't do that from a stamp!
Fields included in a stamp are flattened when that stamp is applied.
This should be possible to do that with an action wizard...
@+
Copy link to clipboard
Copied
...let me know if you are interested by this solution !
@+
Copy link to clipboard
Copied
Good morning
I am interested in this, I just need to read up on it and see if I can follwo any online instruction.
Copy link to clipboard
Copied
Hello Bebarth
Looks pretty involved, can you point me in the direction of a good youtube video or tutiual?
Copy link to clipboard
Copied
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.
@+
Copy link to clipboard
Copied
Thank you Bebarth, I will try to get to this, this evening.
Copy link to clipboard
Copied
Hi,
Did you try the script?
@+

