Skip to main content
robertw_2000
Participant
December 16, 2016
Question

Writing Adobe PDF plugin and accessing fields created in Adobe LiveCycle Designer ES 8.1

  • December 16, 2016
  • 1 reply
  • 339 views

I am having issue reading Form Fields in a PDF Generated using Adobe LiveCycle Designer ES 8.1 . The AFPDDocEnumPDFields does not produce results in the callback. I was able to get a list of fields using Javascript getNthFieldName. Once I got the field setting a the rawValue does not update the field.

Can anyone help with this

This topic has been closed for replies.

1 reply

Karl Heinz  Kremer
Community Expert
Community Expert
December 16, 2016

You need to familiarize yourself with the XFA specification and then manipulate the XFA data directly. 

robertw_2000
Participant
December 16, 2016

I was reading the specification, but everything I tried did not work. My last attempt was this .

var f = xfa.resolveNode('topmostSubform[0].Page1_Standard[0].Body[0].Borders_CC_4[0].KOST_2[0]'); f.rawValue = 'ABC';

Karl Heinz  Kremer
Community Expert
Community Expert
December 16, 2016

In a plug-in, you have access to the XFA data directly. I would just parse the XML and extract the information that way.