cancel
Showing results for 
Search instead for 
Did you mean: 

Printing Footer Only on the last page of adobe Form

Former Member
0 Kudos

Hi Experts ,

I have a requirement of printing text only on the last page of the adoe Forms.

I know how to do this in Smart Forms , but being a novice in adobe forms i am unable to get the exact place to puth these conditions.

Please reply ASAP.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member

put a container element( say one variable) on that page...make it invisible..

now,

for the footer, goto the form:ready event..

and check the vraible.. if that's = some value which you can set for number of pages.. make the footer element invisible..

for this you can use form calc or java script

Former Member
0 Kudos

Hi Soumya ,

I really have no idea about the Formcalc or Javascript language.

Can you please explain with help of Code snippet.

It will be really helpful.

Thanks

Former Member
0 Kudos

[formcalc|http://help.adobe.com/en_US/livecycle/es/FormCalc.pdf]

more over.. just press F1 on the event writing area... you will find your help.. search HIDE

Former Member

Thanks .

Problem Solved.

Here is the Code snippet in Formcalc language that i used in the intialize event

var curpage = $layout.page ( ref ( $ ) )

var totpages = $layout.pageCount()

if ( curpage ne totpages ) then

$.presence = "hidden"

endif

akuvinay
Discoverer
0 Kudos

Hi Expert,

I am facing the same issue, unable to print the FOOTER WINDOW in the last page.

Also implemented the same above code using FORMCALC language in Initialize Event.

But I am unable to resolve my issue.

Please provide your valuable inputs.

Regards,

Vinay

Answers (1)

Answers (1)

Hamad
Explorer

Create Your Footer and Wrap in Subform and use this Script in FormCal Syntax.

var curp = $layout.page ( ref ( $ ) )
var totalp = $layout.pageCount()
if ( curp ne totalp ) then
$.presence = "hidden"
endif

Hamad Ahmad