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
Increase Zoom In Limit (> 250%)
Re: Increase Zoom In Limit (> 250%)
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:
You should pass P2FListener as an eventSink argument of LoadPrint2FlashDoc function you use to load the document.
Code: Select all
var P2FListener=new Object()
P2FListener.onLoaded=function (p2f) {
p2f.maxZoom=p2f.ScaleSlider.Max=300
}
Re: Increase Zoom In Limit (> 250%)
Thank you for the reply.
It worked perfectly.
It worked perfectly.