Copy link to clipboard
Copied
I want to merge the first name, last name, and address in a pdf form, form field name is, first_name, last_name, and address_name. Please help.
- This was discussed many (many) times in the past. Basically, you can do it like this (as the custom Calculation script of the merged text field):
event.value = this.getField("first_name").valueAsString + " " + this.getField("last_name").valueAsString + " " + this.getField("address_name").valueAsString;
- This is not possible. Each signature field has to be unique, and you can't copy the value from one to another.
Also, there's no need to do that, as a (digital) signature applies to the ent
...Copy link to clipboard
Copied
Also, I have three signature fields. I want a person to sign only once and the other two to have the same signature.
Copy link to clipboard
Copied
- This was discussed many (many) times in the past. Basically, you can do it like this (as the custom Calculation script of the merged text field):
event.value = this.getField("first_name").valueAsString + " " + this.getField("last_name").valueAsString + " " + this.getField("address_name").valueAsString;
- This is not possible. Each signature field has to be unique, and you can't copy the value from one to another.
Also, there's no need to do that, as a (digital) signature applies to the entire file as a whole, not to a specific page in it.
Copy link to clipboard
Copied
Thank you so much.