Question
Not a coder, but trying to create a pdf form with calculations. Any help appreciated!
i am trying to create a pdf form with two check boxes, if checkbox "ach" is selected it should not allow "cc" and vis versa.
Current ACH check box script
if (event.target.isBoxChecked(0))
this.getField("ACH Fee").value = 36;
else
this.getField("ACH Fee").value = 0;
Current CC Pymnt checkbox script
if (event.target.isBoxChecked(0))
this.getField("CC Fee").value = .04;
else
this.getField("CC Fee").value = 0;