Expand my Community achievements bar.

Guidelines for the Responsible Use of Generative AI in the Experience Cloud Community.

Page by page display - interview mode

Avatar

Former Community Member
Hi,



I have the requirement of showing one page at a time to collect information through a pdf form. I am trying to do something similar to interview mode where I collect information page by page. At the end I want to send the collected information from the pdf form to the server.



I plan to create all the pages at design time and at runtime using scripts I want to show one page at a time. I wonder how to show only one page at runtime and hide others. Any help (script fragment) would help.



-V Prabhakar
1 Reply

Avatar

Former Community Member
Hi,



try this:



create a form with the following structure:



Page (flow subform)

Page1SubForm (presence is visible)

Page2SubForm (presence is hidden)

Page3SubForm (presence is hidden)

...



Then, through some event, such as a click event on a button use the following script:



Page2SubForm.presence = "visible";

Page1SubForm.presence = "hidden";



there are plenty of of samples here.



check out:

Program Files\Adobe\Designer\EN\Samples\E-Ticket