Dynamic form needs to be saved as a flat/unmodifiable pdf
hi all,
please let me know can do!
i have enabled "enable additional features" in acrobat allow dynamic pdf form saved. however, after being saved , reopenning saved form in reader, pdf still dynamic , edits can text fields or drop down lists can still made. need saved flat pdf file.
i have "submit email" button, programmed email filled out pdf particualr emailbox. clicking "submit email" button, attach pdf, unfortunately file still allow edits.
help please!
-kl
hi,
a xfa form cannot real flattened acrobat nor reader except printing.
another method set fields access property readonly scripting.
function lockfields(vnode) { if (vnode.classname === "field") { vnode.access = "protected"; } (var = 0; < vnode.nodes.length; += 1) { lockfields(vnode.nodes.item(i)); } } lockfields(xfa.form);
More discussions in LiveCycle Designer
adobe
Comments
Post a Comment