Page 1 of 1

Increase Zoom In Limit (> 250%)

Posted: Sun Apr 29, 2012 2:46 pm
by kns
Is it possible to increase the Zoom In Limit. Using either the zoom scroller or the api (with as2) I can't zoom in closer than 250%.

Is is possible to increase this limit or override it?

Thank you

Re: Increase Zoom In Limit (> 250%)

Posted: Wed May 02, 2012 3:43 pm
by staff
There is no documented method to achieve this with Document API. However, you may use this undocumented code by executing it, for example, in the onLoaded event handler:

Code: Select all

var P2FListener=new Object()
P2FListener.onLoaded=function (p2f) {
	p2f.maxZoom=p2f.ScaleSlider.Max=300	
}
You should pass P2FListener as an eventSink argument of LoadPrint2FlashDoc function you use to load the document.

Re: Increase Zoom In Limit (> 250%)

Posted: Tue May 08, 2012 4:58 am
by kns
Thank you for the reply.

It worked perfectly.