Dynamic stamp with author of pdf and date and time
Created a dynamic stamp to pull the author name (identity name) and current date and time. When the stamp is placed nothing happens...took script from a youtube video and customized it. Nothing. Then canceled script and went into each field and put script...nothing. I am a beginner so I apologize for the childlike description.
if((event.source.forReal)&&(event.source.stampName == "#CustomerService"))
{
this.getField("Reviewer").value = identity.name;
this.getField("Datetime").value = util.printd("m/d/yyyy h:mm tt", new Date());
}
