formsacrobatexpandlivecycle

How to Make PDF Form Sections Expand / Collapse


For print-out and offline electronic form purposes, I am looking for a way to create a form that has different sections that can be " Expanded / Collapsed " depending on which check-box is selected.

How can this be done?


Solution

  • One way, you can make prePrint Script like this:

    sectionName.presence="visible"
    

    or you can use checkBox Script like this:

    if(this.rawValue==0){
        sectionName.presence="visible"
    }