Question
Template trouble
I am trying to create multiple templates in a PDF. Currently page 1 generates the "Temp1" perfectly as a new page with a button click.
this.getTemplate("Temp1").spawn(true, false).(bRename,false);
When that page is generated, and I click the button on the new page, it generates the "Temp2" ontop of that page instead of as a new page.
this.getTemplate("Temp2").spawn(true, false).(bRename,false);
What do I need to do?
