Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Magnification setting in LiveCycle Designer

Avatar

Former Community Member

Hi Everybody

Can anybody help me to know how to set the magnification of a pdf designed in the LiveCycle Designer?

I know to do this in Acrobat. But help me know to do this in LiveCycle Designer.

Thanks,

Manjeet

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi Manjeet,

It's is much the same as Acrobat but to reference the app object in Designer forms you use event.target.  So in the docReady event;

 

event.target.zoom = 400;

or to fit width,

event.target.zoomType = zoomtype.fitW;

Regards

Bruce

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi Manjeet,

It's is much the same as Acrobat but to reference the app object in Designer forms you use event.target.  So in the docReady event;

 

event.target.zoom = 400;

or to fit width,

event.target.zoomType = zoomtype.fitW;

Regards

Bruce