I am using Acrobat 8/LiveCycle Designer.
How do I get fields on one page to capture values from fields on a previous page. In this case the form is named HDContract and on Page1 there is a text field named CustName and a calculated numeric field named Total.
How do I set fields on a subsequent page to capture the values from those two fields automatically?
So far I am at a loss.
The following code lists all properties of a field. This technique can be used to programmatically duplicate a field.
f = this.getField("myField");
for ( var i in f ) {
try {
if ( typeof f[i] != "function" ) // remove a field methods
console.println( i + ":" + f[i] )
} catch(e) {} // an exception occurs when we get a property that
}// does not apply to this field type.
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.