Spawning template specifically & buttons in chrome.
Im trying to make a form. I got a page with buttons to spawn extra templates when need, but cant figure out how to spawn the page at a specific point in the pdf because they have a specific order. And be able to spawn all of them this way.
Heres my most recent code attempt(I know little javascript):
var a = this.getTemplate("TOC");
var s = 0;
if ( s<1 ){
s = 1;
var x = 2;
}
x = x + 1;
a.spawn(x,true,false);
Secondly, during testing I was opening the pdf via google and found that the buttons or spawning code wasnt working in google. Is that normal?
