On Tuesday, December 14, 2010 at 7:56:41 AM UTC-5, AndyHancock wrote:
Acrobat reader only shows two pages side by side ("facing"). Is there
a windows-based application (hopefully friendly to Windows 7 64-bit)
that spreads out PDF pages horizontally across the viewing
application's window, as many pages as weill fit, before starting a
new row in the window for successive pages? (I note that Google Docs
will do this, but an app residing on my machine would be nice too).
var newWidth = document.getElementsByClassName('kix-zoomdocumentplugin-outer')[0].style.width.replace('px','') *2 +10 +'px';
document.getElementsByClassName("kix-paginateddocumentplugin")[0].style.width = newWidth;
var pages = document.getElementsByClassName("kix-page");
for (var i = 0; i < pages.length; i++) {
if(i==0) {
pages[0].parentNode.width = newWidth;
}
pages[i].style.float = "left";
}
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)