Javascript not working in Adobe Reader
I have created a form with checkboxes that when selected spawn a page at the end of the form and removes the page if unchecked. The script works great for me when I am using it in Acrobat Pro but when sent to the user, the script won't function in Adobe Reader. Here is a sample of the script I have for each check box:
if(event.target.value!="Off")
{this.getTemplate("Template Name" ).hidden=false;}
else
{this.getTemplate("Template Name" ).hidden=true;}
Is there anything I can change or re-work to get the pages to spawn and delete as needed for the user? I am a complete novice at this.
