• View multiple pages side-by-side

    From bahaaalaa@gmail.com@21:1/5 to All on Thu Aug 11 03:49:30 2016
    I found a way that maybe a solution to your problem
    I am using foxit reader so I don't know if it will work with adobe reader or not!
    and you will need to rotate your monitor (if it has this feature)

    1-in the view tab of the ribbon click on "Rotate view" and select "Rotate left" 2-in the status bar click on the icon for continuous display ( the second icon in the four icons next to the zoom level)
    3-rotate your monitor accordingly.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From kamran100@gmail.com@21:1/5 to All on Tue Jan 24 08:09:44 2017
    Adobe Acrobat/ Reader have a ‘Pages’ navigation panel (the one with
    page thumbnails) that displays pages the way you describe. You can
    make it as wide as the Reader window, and there are options to
    enlarge/ reduce the size of the thumbnails.

    SaGS -- thanks, that's GENIUS! Like someone else said, the feature was there under our noses all along! Such a simple solution. You can press F4 to hide/show the Navigation panel. On Windows, hold the Control key down while rolling the mouse wheel to
    adjust zoom level more easily (I think it's the Option key on Mac).

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From mworkman@logitech.com@21:1/5 to AndyHancock on Mon Jul 15 06:44:45 2019
    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)