Expand my Community achievements bar.

Page Display

Avatar

Former Community Member
Hi All,



I have designed one PDF Form using designer 8.

The Form contails 4 pages. I want to display only one page at time.



Click on particular button, I want to show the particular page.

How to do this?



Thanks,

Saravanan
1 Reply

Avatar

Former Community Member
Hi,

You can create a form with 4 pages. Than you can change visibility of each page on the click action of button.



if(button1 clicked)

{

page1.presence = "visible";

page2.presence = "hidden";

page3.presence = "hidden";

page4.presence = "hidden";

}

else if(button2 clicked)

{

page1.presence = "hidden";

page2.presence = "visible";

page3.presence = "hidden";

page4.presence = "hidden";

}

...