Answered
I have been trying to find a solution or answer to my question which is how can a user submit only one page of a multi page form. After searching this forum, I found several posts asking the same thing however, they were all unanswered.
Can only 1 page of a multi page document be submitted and if so, how? Do you have to have Livecycle ES to do this?
You can however submit the data that's on a single page. After all, it's the data that's the important bit. There are two different ways to do this. First, the "submitForm" function has an "aFields" input for specifying the exact fields that will be submitted. This method isn't very useful for an XFA form. So, for a LiveCycle form you'll need to use the second method, which is to submit custom XML data.
Write a script to walk through the fields on the form and find out which ones fit your criteria for submission. Add these fields to an XMLData object and send them off with the "submitForm()" function.
BTW: there are ways to submit an actual phisical page. But they are not easy to implement and are not suitable for all users. If you are not a prgramming guru or up to major coding, then it's best to consider this a non-feature.
Thom Parker
The source for PDF Scripting Info
[url=http://www.pdfScripting.com]pdfscripting.com[/url]
The Acrobat JavaScript Reference, Use it Early and Often
[url=http://www.adobe.com/devnet/acrobat/javascript.php]http://www.adobe.com/devnet/acrobat/javascript.php[/url]
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script