ACROBAT DC PRO - Submittal Stamp
- March 8, 2022
- 3 replies
- 3208 views
Hello,
I am trying to create a dynamic stamp and am having a hard time. Is there someone that can shed some light on this please.
The Idea is to add a submittal stamp to another pdf and be able to manipulate editable fields like Date, By Whom, Job Number etc. I also want to be able to select 1 of the 5 check boxes i created. I attached my attempt at the java script and not only am I getting errors it won't insert as an editable stamp.
if ((event.source.forReal)&&(event.source.stampName == "ABC")
{
this.getField("Check Box1").value = app.response("Check Box1:");
this.getField("Check Box2").value = app.response("Check Box2:");
this.getField("Check Box3").value = app.response("Check Box3:");
this.getField("Check Box4").value = app.response("Check Box4:");
this.getField("Check Box5").value = app.response("Check Box5:");
this.getField("DATE").value = app.response("DATE:");
this.getField("BY").value = app.response("BY:");
this.getField("JOB #").value = app.response("JOB #:");
this.getField("SUBMITTAL REV #").value = app.response("SUBMITTAL REV #:");
}
Thanks you!!
