swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Swftools-common] pdf2swf/rfxview zoom in/zoom out


From: Matthias Kramm
Subject: Re: [Swftools-common] pdf2swf/rfxview zoom in/zoom out
Date: Tue, 25 May 2010 19:40:32 -0700

On Tue, May 25, 2010 at 8:23 AM,  <address@hidden> wrote:
> Is it possible to increase the number zoom steps of the viewer?

Sure! Edit rfxview.sc (it's in swfs/). Change the following code:

    p1.onRelease = function(){
        if(zoom < 4) {
            zoom = zoom + 1;
            setZoomLevel();
        }
    };

(e.g. to zoom < 8).

Then afterwards run
  swfc rfxview.sc
to create the new viewer.

Matthias



reply via email to

[Prev in Thread] Current Thread [Next in Thread]