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

password protecting fields

Guest
Jun 22, 2016 Jun 22, 2016

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?

TOPICS
Acrobat SDK and JavaScript , Windows
254
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 ,
Jun 22, 2016 Jun 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".

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
Guest
Jun 22, 2016 Jun 22, 2016
LATEST

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?

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