Hello,
I tried this script on the check boxes that I wanted the action to apply; keeping in mind your suggestion for the prePrint event
if (this.rawValue == "0") {
this.resolveNode("$").presence = "hidden";
}
And for the postPrint
if (this.rawValue == "0") {
this.resolveNode("$").presence = "visible";
}
Thanks a lot for your suggestion and idea.