Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.
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