Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Creating sequential signing of the form

Avatar

Former Community Member

Hi All,

I wish to embed my form a script that will perform a sequential signing of signature fields.

How can I open an acrobat sign dialogue using a Javascript?

Thanks, Yan

2 Replies

Avatar

Former Community Member

Well, I've created a trusted function and succeed using the following script to sign a signature field without user interruption.

The problem now  is how to to open a "sign document" dialogue and to let a user to complete the signing by entering a password and clicking on a sign button and not to do it automatically?

f.signatureSign( myEngine,

     {      password: "password",             // provide password

            location: "San Jose, CA",       // ... see note below

            reason: "I am approving this document",

            contactInfo: "dpsmith@example.com"

     });

Avatar

Former Community Member

I've succeed by setting the bUI parameter to true:

                   f2.signatureSign({

                         oSig: myEngine,

                         oInfo: s,

                         bUI: true,

                    });

Yan.