cancel
Showing results for 
Search instead for 
Did you mean: 

Footer for Adobe/PDF Form

Former Member
0 Kudos

Hi,

I have a requirement of designing a print PDF form which has two footers say Foot1 and Foot2.

If data flows to subsequent pages than last page should display Foot2 and all other pages should display Foot1.

If data doesn't flow then the only page should display Foot2.

Please help.

Regards,

Parul.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Parul,

Try with this code. Set the language as FormCal and put this code in Docready event of the page.


if (xfa.host.numPages eq xfa.host.currentPage ) then
	StaticText1.presence = "hidden"	
else	
	StaticText2.presence = "hidden"
endif


Regards.