PDF form field on title page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
PDF form field on title page
Hello,
I want to use PDF Form Field functionality (in ATX 8.2.2) on the Title Page of the book
(via page region with the Text Generated Content) but in vain.
PDF creation is aborted with Error message PDFlib Warnings:
create_field: Invalid field pathname 'textField_0' (name 'textField_0' already exists)
The PDF form fields usage inside xml document works correctly according manual: ATX_HOME\samples\APP\PDFFormFields.
Is it possible to use this functionality in the Page Layouts (by using Styler only, without editing in ALD) ?
Thanks for help
Jana
Solved! Go to Solution.
- Labels:
-
Publishing
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Here is solution from PTC Support:
https://www.ptc.com/en/support/article/CS413728
Cause:
- Each frame/content stream has its own set of counters, each starting at zero
- Using the same counter in different streams can therefore result in duplicate field names
Resolution:
- Use a unique identifier for the field name, such as something based on the location path of the current XML node
//DO NOT USE
//name: "textField_" + formatting.counters[101]++,
//USE
var fieldName = "text_field_" + application.calculateHash(formatting.currentXMLNode.getNodePath(1));
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
EDIT: or sometime the PDF publishing is finished without error but also WITHOUT Page Region where form field is used.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
EDIT 2 🙈: Form Field of the type "Check Box" works correctly on the Title Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Here is solution from PTC Support:
https://www.ptc.com/en/support/article/CS413728
Cause:
- Each frame/content stream has its own set of counters, each starting at zero
- Using the same counter in different streams can therefore result in duplicate field names
Resolution:
- Use a unique identifier for the field name, such as something based on the location path of the current XML node
//DO NOT USE
//name: "textField_" + formatting.counters[101]++,
//USE
var fieldName = "text_field_" + application.calculateHash(formatting.currentXMLNode.getNodePath(1));
