I like the "Page Display" option in Adobe Reader to be set to "Single Page Continuous", so it doesn't suddenly jumps to the next page.

But for some unknown reason the Adobe Reader at my work (version 9.1.1) doesn't always remember this setting. Does anybody know where Adobe Reader stores this setting? I suspect its somewhere in the registry.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Did you know PDF files can specify initial layout and zoom settings that take effect when you open them? (For example, when you choose the Export to PDF command in OpenOffice, a dialog box lets you specify the initial view and other user interface options that are saved in the PDF file.)

Your problem may be caused by certain PDF files changing the view settings when you open them. In that case, Adobe Reader has accessibility options to ignore the settings specified in PDF files.

I don't have Adobe Reader 9.1.1. But in Adobe Reader 8.2.0, I was able to go to Edit, Preferences, Accessibility, and there's a check box "Always use Page Layout Style" with a drop down box where you can choose "Single Page Continuous".

link|improve this answer
Thanks for this. In Adobe Reader X, I was having this problem. Preferences -> Accessibility -> Always use Page Layout Style fixed it. – Rocket Jul 27 '11 at 16:13
feedback

Apart from what Bavi_H already said, Reader (which I don't have for some reason on this machine, so I can't check this) also has the possibility of specifying command line switches (for example, so it sets the page to fit width every time), so there is a possibility that it has that one as well.

Check it, what can you lose.

link|improve this answer
feedback

In Preferences- Accessibility, change the Override Page Display setting for the required style of display. All PDF files will then open as specified

link|improve this answer
feedback

You can use a script for changing the settings (or do it manually in the registry).

Below example sets the display options to "smooth" for Acrobat X:

REM Set Acrobat X settings to Smooth text for LCD/Laptop
REM Set to LCD
reg add "HKCU\Software\Adobe\Acrobat Reader\10.0\Originals" /V bAntialiasText /T REG_DWORD /F /D 1
REM Set to "For Laptop/LCD screens"
reg add "HKCU\Software\Adobe\Acrobat Reader\10.0\Originals" /V benableDDR /T REG_DWORD /F /D 1
REM Set threshold 
reg add "HKCU\Software\Adobe\Acrobat Reader\10.0\Originals" /V iAntialiasThreshold /T REG_DWORD /F /D 18
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.