Avatar

Level 10

Hi.

1) To uncheck other checkboxes use the a script like this in the click:Event of each checkbox.

// Uncheck checkbox "CB2" and "CB3"

CB2.value.integer.value = 0;

CB3.value.integer.value = 0;

2) You can call the importDataObject method from every PDF with JavaScript.

In Designer it could look like:

var ID = String(new Date().getTime());

try

     {

     event.target.importDataObject(ID);

     }

catch(e)

     {}

But, this method is generally not available for Adobe Reader users!

Means, only if the form was extended with required rights by LiveCycle Reader Extensions.