Expand my Community achievements bar.

Send form by email for 3 pages instead of all 7 pages.

Avatar

Former Community Member

Hello,

I have the form that has 3 pages of instruction and 2 pages of the form itself. Currently the form is submitted by email button which includes all 5 pages. Is there a way to make it down to 2 pages for the form itself without including instruction when they submit the form by email? Can any one please advise.

Thanks,

Han Dao

1 Reply

Avatar

Level 10

You can use the preSubmit event of the button to hide the Subforms that hide the 3 instruction pages..and in the postSubmit re-display the subforms.

preSubmit event

     Subform1.presence = "hidden";

postSubmit event

     Subform1.presence = "visible";

Replace the Subform1 with the relative path for each of the instruction pages.

But to make it work you need to place a Submit button instead of Email submit. That way you can control the form before it is being submitted..

For screenshots on how to set the Submit button check the below thread..

http://forums.adobe.com/thread/610512

Thanks

Srini