Copy link to clipboard
Copied
Hi, once I have password protected my document or fillable form, nothing else can be edited; so far so good! BUT you can still edit and delete the added photos in the picture box. How can I secure the document so that people can only "look" at the photos and not change or delete them?
Thanks in advance
Copy link to clipboard
Copied
What options does you use?
Copy link to clipboard
Copied
Which options do you mean? The image field options or the client options?
Copy link to clipboard
Copied
I mean the options at the password protection.
Copy link to clipboard
Copied
My settings are on german, i hope thats fine for you
Copy link to clipboard
Copied
This is ok.
Copy link to clipboard
Copied
If by "picture box" you mean an image field, just set it as read-only.
Copy link to clipboard
Copied
Yes, i did that already, but thats way too much work for me. Because there a daily more then 12 documents with over 50 pictures from my employees which ill send to the client. You can hire a person for that work then :D.. isnt there a solution?
Copy link to clipboard
Copied
i mean.. the solution that ill select "all" and set it as read-only is possible, but there has to be an option right before that.. so when i set my password on this file, NOTHING can be changed.. thats what i need
Copy link to clipboard
Copied
A script can be used to process all fields in a file with a single click, and this script can be used in an Action to process multiple files.
This code will set all the fields in the file as read-only:
for (var i=0; i<this.numFields; i++) {
var fname = this.getNthFieldName(i);
var f = this.getField(fname);
if (f==null) continue;
f.readonly = true;
}