Skip to main content
June 22, 2016
Question

password protecting fields

  • June 22, 2016
  • 1 reply
  • 295 views

Hi, I am working in Acrobat XI Pro and trying to password protect a field o enable only certain people to edit the contents. How do i do this?

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
June 22, 2016

There's no built-in way of doing it. It's possible to use a script that will only allow a field to receive a value if a certain password is entered into it, though. It can look something like this (as the custom validation script):

event.rc = (app.response("Enter the password for this field:","", "")=="123");

In this case the correct password is "123".

June 22, 2016

Hi try67,

I have tried entering this code and it seems to work, although if you enter the wrong password, you can still edit the field?