Expand my Community achievements bar.

Nomination window for the Adobe Community Advisor Program, Class of 2025, is now open!
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

Avatar

Former Community Member

Thanks, BR001.

Its working fine.