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

Password protected form that reader can edit?

Community Beginner ,
Sep 22, 2017 Sep 22, 2017

I want to send a fillable form to my sales team, which they will complete and then share.  When they share it, it needs to be locked so the end recipient cannot edit.

The sales team is using Adobe Reader, I am creating the form in Acrobat 9.

Can I password protect the form in Acrobat Pro, in a way that the Reader users can enter the password and fill in the document?  (protect against editing, not an open password).  Ultimately I want the end recipients to open the document without a password, but not be able to edit.

TOPICS
PDF forms
2.7K
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
1 ACCEPTED SOLUTION
Community Beginner ,
Sep 25, 2017 Sep 25, 2017
LATEST

Actually, I used your response on another post, to use a java script to flatten the form, and that worked!

I've added a button for them to email the form they have completed for their client, and added the java to flatten within that button.  So far so good, but will continue to test.  Thank you.


flattenFields()

function flattenFields() {

    if (app.viewerType=="Reader") {

        for (var i=0 ; i<this.numFields ; i++) {

            var f = this.getField(this.getNthFieldName(i)) ;

            if (f==null) continue;

            f.readonly = true;

        }

    } else {

        this.flattenPages();

    }

}

View solution in original post

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 ,
Sep 22, 2017 Sep 22, 2017

Someone with only the free Reader can't edit a PDF file anyway (except for fill in form fields and add comments), so it's not really necessary to protect the file, but if you want to do it it's under File - Properties - Security.

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 ,
Sep 25, 2017 Sep 25, 2017
LATEST

Actually, I used your response on another post, to use a java script to flatten the form, and that worked!

I've added a button for them to email the form they have completed for their client, and added the java to flatten within that button.  So far so good, but will continue to test.  Thank you.


flattenFields()

function flattenFields() {

    if (app.viewerType=="Reader") {

        for (var i=0 ; i<this.numFields ; i++) {

            var f = this.getField(this.getNthFieldName(i)) ;

            if (f==null) continue;

            f.readonly = true;

        }

    } else {

        this.flattenPages();

    }

}

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 ,
Sep 22, 2017 Sep 22, 2017

I should clarify... the sales team will use Reader to complete the fillable form, not actually edit the file.  I'm trying to allow them to fill the form, but they will email it off as locked so the next recipient cannot edit what they have filled in.

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
LEGEND ,
Sep 23, 2017 Sep 23, 2017

Reader can also not password protect the form but with the use of JavaScript Reader and make fields read only or Reader can use digital certificates to lock and track any changes after signature. If your sales representatives are using mobile devices you need to test your forms with the applications that they are using. Mobile devices do not nativley support PDF forms.

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