Showing/Hiding a Template in Reader; Workaround?
Hello!
I am working on a multi-page form for my company that is to be used in three different states. Along with this master document, I have three different sets of supplementary forms (Title Applications, for example) that need to be appended to the document depending on which state is selected (via check boxes on the cover page).
I've figured out how to make this work using templates and this code (placed under Actions; mouse up under the check box properties):
if(event.target.value!="Yes")
{this.getTemplate("NH_TITLEAPP").hidden=true;}
else
{this.getTemplate("NH_TITLEAPP").hidden=false;}
My problem is this; not all of my target users have Adobe Acrobat (most only have reader), and the "hidden" property does not work with Reader (why??).
I did try "spawning" the template pages which works just fine in Reader, however I could not figure out a simple way to get remove the added pages if someone checks a box by accident. Instead, when you "uncheck" the box the page just spawns again.
I am desperately searching for a workaround; either a way to let Reader "hide" the template; or a safe way to delete a spawned page by unchecking a check box.
Any help would be greatly appreciated! I've already spent hours trying to find a workaround... googling just isn't effective when it comes to something complicated like this.
Thank you!
