On Tue, May 25, 2010 at 8:23 AM, <[email protected]> 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
