I would like to modify some properties for all fields in a PDF form in response to the user clicking a button.
Which property or method will return me the collection of fields so that I can iterate over them?
If there is a collection of fields I still haven't found it. There is a way to iterate over all the fields though.
The numFields
property of the doc object gives the number of fields,
getNthFieldName(index)
returns the name of the field with that index and getField(fieldName) returns the field of that name.
for (var fieldNumber = 0; fieldNumber < numFields; fieldNumber ++)
{
getField(getNthFieldName(fieldNumber)).value = 'Scripty Was Here';
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With