I’ve created a form with some fields and button to send it through
e-mail. This button should send the form with the filled in information
in PDF format and, before being sent, some of the form fields should be
made read only so no one else can change the fields contents. To reach
this end, I used the following script:F.Page_1.Button1::full -
(JavaScript, client)F.Page_1.FIELD_ONE.access = "readOnly"; ..
F.Page_1.FIELD_TWO.access = "readOnly";app.execMenuItem("Save");However,
when the file is se...