Copy link to clipboard
Copied
I have several password protected filled forms with a calculation error. Is it possible to change the calculation without open and change all the forms?
Copy link to clipboard
Copied
What kind of protection? What kind of calculation?
Copy link to clipboard
Copied
It is password protected.
A custom calculation script:
var mid = 2.5;
var max = mid + 0.125;
var min = mid - 0.125;
var val = +getField("Rcoil").value;
if (val <= max && val >= min) {
event.value = "OK";
event.target.fillColor = color.green;
} else {
event.value = "Not OK";
event.target.fillColor = color.red;
}
Copy link to clipboard
Copied
What kind of password protection?
Copy link to clipboard
Copied
It is protected so that user are allowed to fill in but not edit the document
Copy link to clipboard
Copied
First remove the security, then you can change the calculation with the JavaScript method setAction.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now