Answered
I have a form with a series instructions (static text). Each instruction has a check box that is checked off if the instruction applies. What I am seeking to do is print the form but display only the instructions that have been checked.
Playing with this but can't get it to work:
if (rawValue == true) {
CheckboxName.presence = "visible";
CheckboxName.relevant = "";
}
else {
CheckboxName.presence = "visible";
CheckboxName.relevant = "-print";
}
when it comes to printing I find it easier to use prePrint and postPrint scripts
under prePrint set your conditions and make items invisible
under postPrint make all items visible