Can I display or export a list of all field names on a PDF


in designer 7, there way display field names (text fields , checkboxes)? or there way obtain list of field names used on form?

in acrobat 7, field names used on pdf appear when select text field tool. however, happen when fields added using form tools in built acrobat. these forms tools not accessible in acrobat when pdf created using designer.

for pdf created designer, can hover on field in acrobat have tooltip display field name. unfortunately, can done 1 field @ time.

thanks in advance info.

here example of how form objects' names within node in hierrachy. more complex form (with subforms), need check see if node container. if is, use code below iterate node.

var objnode = xfa.resolvenode("xfa.form.form1.page1")
for (var = 0; < objnode.nodes.length; ++i)
{
app.alert(objnode.nodes.item(i).name);
}

here example:

http://66.34.186.88/livecyclesamples/.3bbb371.pdf


More discussions in LiveCycle pre-ES (6.x and 7.x) discussions


adobe

Comments