Answered
How would I go about making an interactive page as a static page when emailed? I have a letterhead that I would like to allow people to type in the letter, but when they email it to someone it becomes a static pdf.
I have Acrobat Pro 9, mac
Users would only have reader
Is this possible? Any help would be appreciated.
thanks in advance.
var f = this.getField("Letter");
var cLetterIsStatic = app.alert("The letter will be changed to read-only. Are you sure your letter is complete?\n\nClick YES to proceed. \nClick NO go back to edit your letter.",2,2,
"Letter is Read-Only");
if (cLetterIsStatic == 4) //if Yes is chosen
{ f.readonly = true;
this.mailDoc(true);
}
//if NO is chosen
else
{
f.readonly = false;
}