Hi chad,
If you want to make an exclusion group, you could just use radio buttons rather than scripting checkboxes. Only one radio button of a group can be selected.
If you want to use checkboxes anyway, here's the script:
if (this.rawValue == 1) { //this stands for current checkbox
formname.subformname.FirstCheckBoxName.rawValue = 0 // clear checkbox
}
if (this.rawValue == 1) { //this stands for current checkbox
formname.subformname.SecondCheckBoxName.rawValue = 0 // clear checkbox
}
This script would be placed in the click event of the 3rd checkbox, with JavaScript selected as the language.
As for saving a copy, you'll first have to enable saving with either Acrobat 8 or with ReaderExtension software for Designer forms so that Reader users can save a copy.
Regards,
Dave