Copy link to clipboard
Copied
I have a fillable PDF that triggers a hidden page template when the button "Add Benefit" is clicked. However, it always places that spawned page at the end of the document and I need it to go after page 5 and continue to go in order if button clicked on the subsequent spawned pages that pull in. I have searched for the Javascript syntax to do so but am not having any luck finding it for my specific situation.
Current syntax is:
var a = this.getTemplate ("Add Benefit");a.spawn();
I know it needs something about nPage or numPage but I can't figure if it needs the bRename or any of the bOverlay commands.
Any help would be greatly appreciated!
Copy link to clipboard
Copied
Copy link to clipboard
Copied
I have already looked at this. This is my first time ever with Javascript so I do not know how to extrapolate the options given into actual code. Which is why I posted here.
Copy link to clipboard
Copied
Do you have any experience with programming? There are a lot of details, and I think you'd find it worthwhile to spend some time learning the basics.
Copy link to clipboard
Copied
Hi,
You can use the "spawnPageFromTemplate" method:
If you want the page after the page #5 (before the page #6) you must set the nPage parameter to 5 (0-based number for the page #6).
Set "bOverlay" to false for a new page.
Setting bRename to false will not rename the fields with a prefix, so if you spawn several time the template, all the fields with the same name will get the same value.
Have a look on the attached file.
@+
Copy link to clipboard
Copied
This method has been deprecated and replaced by the spawn method of the Template object. You should not use it.
Copy link to clipboard
Copied
Thanks,
What does "superseded" means exactly as this method is still working (such as other superseded methods or properties).
Does that mean it will not work in a next time?
@+
Copy link to clipboard
Copied
Yes, it means that at any point in the future it could stop working.
Copy link to clipboard
Copied
It's all explained in the documentation of that method.