I have 2 forms developed in LiveCycle Designer. They have a few common fields. I need fields in 1 form be populated with data (values) from another. I believe this needs to deal with JS and global objects.
For instance, this script works in AcroForms.
//in one form
global.name = this.getField("Name").value;
//the following line in another form
if (global.name) this.getField("Name").value = global.name;
Is it possible to create anything similar for LiveCycle form?