cancel
Showing results for 
Search instead for 
Did you mean: 

How to Set Default Zoom For Adobe Form

chhanda_sarkar
Explorer
0 Kudos

Hello All,

I have created a form through webdynpro. Now I want that when I will run my webdynpro component my  form should appear with a default zoom of 75%.

Any one can help me that how to set default zoom for a adobe form.

Thank and Regards

Chhanda

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Try this.

in the Docready Event.

put this code

event.target.zoom  = 75

check the following Link.

http://forums.adobe.com/thread/781844

Thanks.

Uma

chhanda_sarkar
Explorer
0 Kudos

Hello Uma,

Thanks for your correct answer and sorry for late reply.

I have used this one and it worked.

Inside the DocReady Event of main node of the adobe form

I have written the following code using java script

event.target.zoom = 75

Former Member
0 Kudos

it is not working for me.. I have followed the same coding as above. please suggest where I might be wrong

Answers (1)

Answers (1)

Former Member
0 Kudos

hi sarkar,

try these codes

data: lr_win type ref to if_wd_window.

lr_win->set_window_size(

      width  = '75%'

      height = '75%'

         ).

billy