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

Multiple Digital Signatures in Dynamic Stamp

Community Beginner ,
Dec 17, 2023 Dec 17, 2023

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. 

TOPICS
How to
1.3K
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 ,
Dec 18, 2023 Dec 18, 2023

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

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 Beginner ,
Dec 18, 2023 Dec 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.

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 ,
Dec 18, 2023 Dec 18, 2023

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...

@+

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 ,
Dec 18, 2023 Dec 18, 2023

...let me know if you are interested by this solution !

@+

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 Beginner ,
Dec 18, 2023 Dec 18, 2023

Good morning 

I am interested in this, I just need to read up on it and see if I can follwo any online instruction.

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 Beginner ,
Dec 18, 2023 Dec 18, 2023

Hello Bebarth

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

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 ,
Dec 18, 2023 Dec 18, 2023

Hi,

Here is my proposal.

Let the drawing where you want to apply the stamp.

Capture d’écran 2023-12-19 à 08.20.08.pngexpand image

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.

Capture d’écran 2023-12-19 à 08.20.51.pngexpand image

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

All signature fields are usable.

Capture d’écran 2023-12-19 à 08.21.31.pngexpand image

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.

@+

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 Beginner ,
Dec 19, 2023 Dec 19, 2023

Thank you Bebarth, I will try to get to this, this evening.

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 ,
Dec 21, 2023 Dec 21, 2023
LATEST

Hi,

Did you try the script?

@+

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