Copy link to clipboard
Copied
I have read many posts on this, but it strikes me that there seems to be no solution that helps; People either describe tabs under the properties of the fields that don't exist or describe complicated procedures that involve e-signatures and everyones email addresses. I just want the not-filled fields to stay unlocked, but there seems to be no option for this.
I am using Adobe Acrobat Pro DC and created a fillable pdf with text fields and signature fields; I password protected the rest of the document so that only the fillable fields and signature fields can be edited; When I sent the document and the first person has filled out their part and placed a signature (using the fill & sign button), all fields are locked and the second person that needs to fill out the remaining fields cannot fill them out unless I give them the password to edit it or unlock the fields myself again first. Both options make no sense to me.
It makes no sense that all fields lock automatically if a signature is placed somewhere in the document, especially since I can anyway always edit it after putting in my password. Only the filled fields should lock. How do keep the unfilled fields unlocked?
Thanks;
Copy link to clipboard
Copied
What settings does you use at the password protection?
Copy link to clipboard
Copied
Edit-Protection-
Security Method: Password Security
Document Open Password: No
Permissions Password: Yes
Printing: High Resolution
Changing the Document: Not Allowed
Commenting: Not Allowed
Form Field Fill-in or Signing: Allowed
Document Assembly: Not Allowed
Content Accessiblility Enabled: Allowed
Page Extraction: Allowed
Encryption Level: 256-bit AES
Copy link to clipboard
Copied
Hi Veronika,
Thank you for reaching out.
As you have mentioned above, you send the document for signature. Could you please let us know how you send the document for signature? Please share the steps you do.
Would you mind sharing a sample of the PDF you created? You may complete a new PDF form using the same steps and share it with us. That will help us to understand the singing workflow.
Thanks,
Meenakshi
Copy link to clipboard
Copied
I am just sending the pdf by email to a collaborator for signing. Just by attaching it to an email. That person fills out the "name" and "title" fields and signs, then they send it back to me and I would send it to the other person for filling out their part.
It does not matter if I create the form as an Adobe Sign Form or and Adobe Acrobat Form. It also does not seem to matter if I define the fields as text or signature fields; as soon as someone places a signature using the fill and sign button, all other fields are locked.
I can create a sample form if this is still necessary.
Copy link to clipboard
Copied
"People either describe tabs under the properties of the fields that don't exist" - such as? I wonder if you've checked "this form requires a signature" which turns it into an entirely different kind of form, much more limited.
Copy link to clipboard
Copied
I read in other posts that there is supposed to be a "Sign" tab under the properties of a field where you can specify what happens to fields when they are signed or filled.
I understand that there are Adobe Sign Forms and normal Adobe Forms. It does not seem to matter which one I use; the fields always lock when a signature is placed anywhere in the document.
Copy link to clipboard
Copied
> created a fillable pdf with text fields and signature fields;
> When I sent the document and the first person has filled out their part and placed a signature (using the fill & sign button)
Why are they using Fill & Sign if you added a signature field to the file? They should click that field and use it, instead.
Copy link to clipboard
Copied
well, good question. I guess that lots of people are familiar with just clicking the fill&sign button rather than creating a digital ID. I understand that just using the fill&sign button isn't a good way of signing because anyone can click and place a random signature, but that is a different topic.
Copy link to clipboard
Copied
So there's still no resolution to this 1 year+ later
Copy link to clipboard
Copied
The replies shows the solution.
Copy link to clipboard
Copied
No one replied a solution? Just follow up questions?
Copy link to clipboard
Copied
Kind of looking for the same thing here, not sure if anyone could assist, but i figured - if i can use a button to unlock particular fields then the user can click the button to unlock their section of the document to fill out, however im getting stuck at the fact that i cant keep the button from being locked/marked as read only. Ive tried searching for some sort of document script that can run to leave this particular button "unlocked" even when fill and signed is used, but no luck - or atleast nothing that has worked unless ive completely done it wrong.
just a little more on my document - its 108 pages - 15 different sections - Filled out by multiple different people - has to be a "Signature" DigitalID wont be accepted, and wont work either as we have multiple students with multiple instructors.
any help on some sort of script to keep Specific button from being marked as read only even when Fill & Sign has been used would be great.
Copy link to clipboard
Copied
(var i=0; i<this.numFields; i++)
var fname = this.getNth "Unlock Form"(i);
var f = this.getField(Unlock Form);
if (f.type!="button") f.readonly = False;
This is what im using to try keep the field unlocked - thought id add this in incase anyone can help