Thanks netcmh. That would be to complicated. I just want to simply lock the whole form so they can only save a copy. Any other ideas?
Main Topics
Browse All TopicsI have created a form using Adobe Acrobat Pro 9. I would like to lock this form so that users can enter data into the form but would not be able to save the original. They would have to save a copy or print the form. This is to preserve the original as a template as it will be used 3 to 4 times daily. Any assistance would be much appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Or, Go to the menu option Document->Security->Secure This Document, select Restrict Opening and Editing Using Password. Under the "Permissions" section in the dialog that appears, check the box titled "Restrict editing and printing of the document. A password will be required to change these permissions settings." Make sure to select what options you want available in the Printing Allowed and Changes Allowed pulldowns, choose a password and click OK. Follow the rest of the instructions given in the following dialogs. NOTE: One of the dialogs you will see explains that not all third party PDF viewers will respect this password security, so this is not a fool proof security system.
I tried the option to secure it but it still lets me save the changes to the original form. One of the options is to allow filling in form fields. If I set that to allow, they can enter form data and save it. If I set it to not allowed, they cannot enter form data at all. Seems like there is no option to allow to fill in form data but not save it.
What if I do not want to use a submit button? I simply want them to save the filled out form to a network share? I have seen this before where I open a PDF say from a bank. At the top it will say "you cannot save data typed into this form"
It then allows me to fill in the form but I cannot save the original. It will only allow me to save a copy or print. That is what I want, without anytype of submit button.
Business Accounts
Answer for Membership
by: netcmhPosted on 2009-09-01 at 07:59:36ID: 25232244
perhaps you could add script to the Submit button that once it is clicked it will make all fields ReadOnly or Protected? If that is the case, you could also add an app alert asking to Confirm the form is ready to be submitted, because if Submit is clicked accidentally, it would also lock form for submitter.
Create 3 Textfields and 1 Button. Behind the button, add the following script.
In my example I ask the question is this form ready to be submitted? If they click on Yes, it will lock (protect) TextField1 and TextField2. If you want them to be ReadOnly, change the access to "readOnly".
// The following code confirms whether to Lock the form
var cMsg = "Is this form ready to be submitted? \n\n"
cMsg += "Select YES to LOCK the form.\n\n"
cMsg += "Do you want to Continue?\n\n"
var nRtn = app.alert(cMsg,1,2, "Lock Form?");
if(nRtn == 4)
{ // A Yes Answer
//Protects each field
TextField1.access = "protected";
TextField2.access = "protected";
}
endif;
Let me know how it goes