Avatar

Level 10

Hi,

The first part is standard Acrobat start up:

Acrobat EScript Built-in Functions Version 9.0
Acrobat Annotations / Collaboration Built-in Functions Version 9.0
Acrobat Annotations / Collaboration Built-in Wizard Functions Version 9.0
Acrobat SOAP 9.0

The next line is script in the initialise event of the root node: form1:

RegularAccessSubform is not defined
1:XFA:form1[0]:initialize

You can hit the clear/trash button to clear the window and then when you hit the reset button it will be the only message.

You should look at the script on (or around) Line 5 of the click event. It might be this line:

oNode.rawValue = "";

So possibly try

oNode.rawValue = null; 

Niall