Why isn't my java working?
Can anyone tell me why my js is not working? I have the same data on two different .pdf. I want to be able to have someone fill in the forms on a screen and press a button to open and populate the other .pdf with that information that is entered. Nothing I seem to do is working. I made sure all my fields were named the same. Can anyone help? Please.
This is the script.
this.slave=app.openDoc("IKO Proposal.pdf",this);
this.bringToFront();
for (var i=0; i<6; i++){
var FLIKOProposalformData = this.getField("FLIKOProposalform."+i);
var IKO_ProposalData = this.slave.getField("IKO_Proposal."+i);
IKO_ProposalData.value = FLIKOProposalformData.value;
}
slave.bringToFront();
