I am new to LiveCycle and PDF creation, and I am wondering if I can create a new copy of an exisiting page and insert it into the PDF.
I have added a button to the page and inserted the following code (which I found in a help file):
----- form1.MySubForm.Button1::click: - (JavaScript, client) ---------------------------
methods.MySubForm.instanceManager.addInstance(1);
I am not getting any errors, but nothing happend when I click the button either!
Any information would be greatly appreciated - thanks in advance.
Lisa
MainPageSF.instanceManager.addInstance(1);
"MainPageSF" is how I usually name the subform for the main page. Now when you click the button a new instance of the page subform will be added after the first instance and since it bigger than what will fit on the page a new page is added so now there are two page in the document.
StevenD