Copy link to clipboard
Copied
Can anyone advise how to create an interactive pdf where if you answer yes - you go to next page, and if you answer no - you can't go on to the next stage.
Thank you,
Sharon
Copy link to clipboard
Copied
I doubt that’s possible in PDF. What is the full purpose of this document?
Copy link to clipboard
Copied
Thank you for the answer. A document for new clients, where if they press YES, they can go to the next stage, and if they press NO, they get a message of thank you, good bye! Do you have any idea how it can be done? HTML? Thanks again!
Copy link to clipboard
Copied
You can create in Indesign a radio button, check box or combo list form element that can have multiple actions based on the choice the user makes in the PDF. The Yes choice could advance a user to the next page, however, there is no way to prevent a user from navigating to any pages within a PDF they like. The form element can have actions that could hide and show other elements. And, in effect, create the situation of allowing or preventing a user to do things based on prior choices.
Copy link to clipboard
Copied
I suppose you could make all kinds of work for yourself with PDF but why?
http://boblevine.us/its-okay-to-say-no-to-interactive-pdf/
I’d use Survey Monkey and be done with it.
Copy link to clipboard
Copied
Thank you! this has been very helpfull
Copy link to clipboard
Copied
Hi Sharon,
not with InDesign. But with Acrobat Pro or Acrobat Pro DC perhaps.
However this will imply some JavaScript for Acrobat.
"Next page" will be no actual page in the document, but maybe a "layer" turned on that is turned off at default.
You may ask in or search the Acrobat JavaScript forum by the term "OCG":
Technically a PDF layer consists of single objects organized in OCGs one can access by JavaScript.
If you have a PDF with OCG tagged objects ("that would assign the object to something like an "layer") in Acrobat Pro and open the JavaScript Console you could access all the layers with:
this.getOCGs();
York Simon at hilfdirselbst.ch used the Preflight functionality of Acrobat Pro to convert a PDF with layers to PDF/X-4.
That could hide all the layer information in the Layers panel of Acrobat so that a user has no direct access to the layers. I could confirm this by using Acrobat Pro 9. The layers are still there and the associated objects can be made hidden or visible by controlling the OCGs.
It may be not much, but see this thread in German for some details:
PDF-Formular, Ebenen schützen - PDF Grundlagen/Web/eForms - HilfDirSelbst.ch - Forum
Regards,
Uwe
Copy link to clipboard
Copied
Thank you for the reply!