Skip to main content
Known Participant
October 26, 2021
Question

Templates not spawning in Adobe Reader DC

  • October 26, 2021
  • 1 reply
  • 734 views

I have created a form via Adobe Acrobat Pro.  I have made some pages templates and hid them until a checkbox is selected.  Then through javascritping they will spawn the page.  It is working perfectly in Acrobat, but the templates aren't spawning in Adobe Reader DC when someone selects the box.  Is this a known issue and is there a work around (or setting) to get these pages to spawn in Adobe Reader DC? 

This topic has been closed for replies.

1 reply

Bernd Alheit
Community Expert
Community Expert
October 26, 2021

How does you spawn the pages?

Bobbi5CA8Author
Known Participant
October 26, 2021

I have the template page hidden, and using the following javascript on the MouseUP action for the checkbox: 

 

if (event.target.value!="Off")
{this.getTemplate("Template1").hidden = false; }
else
{this.getTemplate("Template2").hidden = true;}

Bobbi5CA8Author
Known Participant
October 26, 2021

Sorry - typo - they both should say Template1