- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
i was reading your posts and i am not sure if i have the anwsers, however let me point some things out since i believe it is a misunderstanding here.
<NoXFA/> ... Specifies that XFA-based forms in the parent element should be flattened.
This parameter is only working if the source is really a XFA document
<NoForms/> ... Specifies that all form fields in the parent document should be flattened.
This parameter is only working if the source is using form fields on a PDF document (created with the Acrobat Professional for example)
<PDF source="inPDFDoc">
This would expect a source named inPDFDoc which is not inPDFDoc.pdf
<PDF result="outDoc">
As a result it would be also a wise idea to set it to outDoc.pdf maybe this helps
You might miss also to try to apply to the input source to flatten meaning appliying NoXFA or NoForms there
example:
<DDX xmlns=”http://ns.adobe.com/DDX/1.0/”>
<PDF result=”rpt_flattenform_kpi_002.pdf”>
<PDF source=”doc1.source” pages="1-last">
<NoForms/>
</PDF> <---- see here cloeses the source
</PDF>
</DDX>
or
<DDX xmlns=”http://ns.adobe.com/DDX/1.0/”>
<PDF result=”rpt_xfastripping_001.pdf”>
<PDF source=”doc1.source” pages="1-last">
<NoXFA/>
</PDF> <---- see here cloeses the source
</PDF>
</DDX>
See if this is helping you to get the example working
rgs
Dieter
Views
Replies
Total Likes