Copy link to clipboard
Copied
Hallo liebes Forum,
ich arbeite mit Adobe Acrobat Pro DC und hätte gerne Hilfe bei einem Problem.
Ich habe fünf Kontrollkästchen mit verschiedenen Beträgen (EUR) in meinem Formular und hätte gerne, dass mit Auswahl eines dieser Kontrollkästchen der jeweilige Betrag automatisch in ein anderes Textfeld übertragen wird.
Bin für jede Hilfe dankbar.
Copy link to clipboard
Copied
If you set (EUR) as checkbox export value, go to text field properties and under 'Calculate' tab, select 'Value is the' and pick your checkboxes.
Copy link to clipboard
Copied
If you set (EUR) as checkbox export value, go to text field properties and under 'Calculate' tab, select 'Value is the' and pick your checkboxes.
Copy link to clipboard
Copied
Super, es hat geklappt! Vielen lieben Dank für die schnelle Antwort
Copy link to clipboard
Copied
Set the amount as the export values of each box, and then as the custom calculation script of the text field use this (let's say the check-boxes group is called "Amount1"):
var amount = this.getField("Amount1").valueAsString;
if (amount=="Off") event.value = "";
else event.value = amount;
Copy link to clipboard
Copied
Auch dir, danke für die Antwort.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now