Need help spawning template
Have Acrobat Pro. Brand new to Javascript and Page Templates though. Helping someone who wants a button that can create an additional "page2" from the form. Below is the code I am using that I found elsewhere.
this.spawnPageFromTemplate ({
cTemplate: this.getNthTemplate(0),
bRename: false,
});
this.pageNum = this.numPages-1;
this.zoom=100;
Problems: It creates a clone of Page2, including any text that has already been entered. Don't really want that. And if I start typing on either page, it just duplicates it across both pages (typin HELLO on page 2 also makes it appear on page 3). Can't have that.
