Hi,
I have a form which has 2 pages. I have a bunch of JavaScript functions under script objects on page 1. How can I access these functions from page 2?
I tried the following but none of it work:
form1.page2.#variables[0].testScript.doThisNow();
form1.page2.variables[0].testScript.doThisNow();
form1.page2.variables.testScript.doThisNow();
Please help.