Adobe Reader View Problem

Hi, I usually use preview for PDFs but sometimes I have to use my Adobe Pro when marking up docs with my colleagues.
One really annoying thing with Adobe that I can't figure out is when I am pressing the arrow-down key to scroll through the document (I don't have a mouse and the documents are too long to use the side button). It keeps snapping to the next page and I need to be able to read what's on the last part of the previous page (like a footnote) and what is on the current page. Is there a way to get this to read continuously without this snapping feature? I have the preferences set to read continuously...is there anything that I am missing?
Thanks!

If you don't get an answer here, ask in the forums dedicated to helping people use Adobe products:
http://forums.adobe.com/index.jspa

Similar Messages

  • Adobe Content Viewer problem. Please Help me...

    Hi after updating online. Folio, I tried to update the trial version of the publication on my iPad but I get this message: "the issue isavailable for dowload, but new signing for an application version. Update the application from the App Store. "I went to the AppStore and was not any update of the Content Viewer ... I deleted the version on my iPad I downloaded again ... but without success gives me the same problem ... Please help me ... how can I do??
    thanks

    Hello Bob and thank you for responding so quickly ... Would you be kind enough to send me the link where I can download older versions of Folio Builder and Folio Producers Panel tools for InDesign 5.5. I'm looking for them but I can not find them.
    Thank you for your patience.
    Il giorno 21/gen/2012, alle ore 16:18, Bob Levine ha scritto:
    Re: Adobe Content Viewer problem. Please Help me...
    created by Bob Levine in Digital Publishing Suite - View the full discussion
    As discussed in numerous threads already, the new viewer has not been approved by Apple yet.
    If you’re a pro or enterprise customer you can create your own viewer app. If not, you’ll have to wait or roll back to the older tools.
    Bob
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4155907#4155907
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4155907#4155907. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How will read the value from Adobe Reader/Viewer in c# windows App

    I m using VS2005 . working in windows appliction. i am using adobe Reader 9, Then the new pdf document open  inside the Acrobat adobe reader , Exsiting PDF file is created by Adobe Forms(Adobe LiveCycle designer and Adobe pro 9).
    Using the Class is:
    1.AcroExch.App
    2.AcroExch.AVDoc
    3.AcroExch.pdDoc
    4.Acrobat.CAcroApp
    namespace is:
    using AxAcroPDFLib;
    using AFORMAUTLib;
    using Acrobat;
    Using DLL is:
    1. Interop.Acrobat
    2. Interop.AcroPDFLib
    3. Interop.AFORMAUTLib
    4. AxInterop.AcroPDFLib
    My problem is,
    I am Working in
                       PDFis open inside the adobe reader/Viewer, but i can not able to get the value from PDF Forms.
                        ( This Pdf forms is Some more Control Design is Available)
    Ex:
    I have Attached my Pdf  disgn file.        Please see this Pdf file.
    I am not able to get the value from  inside window(adobe Reader/Viewer),  but i can able to get the value from the out side of adobe viewer/Reader.
    This coding not working properly,
    try
                    CAcroAVDoc AcroExchAVDoc = default(CAcroAVDoc);
                    CAcroApp AcroExchApp = default(CAcroApp);
                    CAcroPDDoc oDoc = default(CAcroPDDoc);
                    AFORMAUTLib.AFormApp AFormAut = default(AFORMAUTLib.AFormApp);
                    AFORMAUTLib.Field Field = default(AFORMAUTLib.Field);
                    AFORMAUTLib.Fields Fields = default(AFORMAUTLib.Fields);
                    bool OK = false;
                    AcroExchApp = new AcroApp();
                    oDoc = new AcroPDDoc();
                    AcroExchAVDoc = new AcroAVDoc();
                    AFormAut = new AFormAppClass();
                    //AcroExchApp = (Acrobat.AcroApp)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.App" ));
                    //oDoc = (Acrobat.AcroPDDoc)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.PD Doc"));
                    //AcroExchAVDoc = (Acrobat.AcroAVDoc)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.AV Doc"));
                    //AFormAut = (AFORMAUTLib.AFormApp)Activator.CreateInstance(Type.GetTypeFromProgID("AFormAut .App"));
                    bool bOK = AcroExchAVDoc.Open(pdfWindowLeft.src, "Temp"); ' some time not true
                        ' if  ok (true) then
                    if (bOK)
                        Fields = (AFORMAUTLib.Fields)AFormAut.Fields;
                        foreach (Field myField in Fields)
                            if (myField.Name == "form1[0].#subform[0].Id[0]")   ' field value not get from the inside window
                                string Id = myField.Value; ' not getting a answare
                            if (myField.Name == "form1[0].#subform[0].PatientName[0]")
                                string PatientName = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].Email[0]")
                                string Email = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].PhoneNo[0]")
                                string PhoneNo = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].Address[0]")
                                string Address = myField.Value;
                catch (Exception Ex)
                    lbl_Result.Text = Ex.Message;
                finally
                    Conn.Close();
    This coding is working properly,
    try
                    String FORM_NAME = addressLeft.Text;
                    //String FORM_NAME = Application.StartupPath + "\\..\\..\\..\\..\\..\\TestFiles\\SampleForm.pdf";
                    // Initialize Acrobat by cretaing App object.
                    CAcroApp acroApp = new AcroAppClass();
                    // Show Acrobat Viewer
                    acroApp.Show();
                    // Create an AVDoc object
                    CAcroAVDoc avDoc = new AcroAVDocClass();
                    // Open the pdf
                    if (!avDoc.Open(FORM_NAME, ""))
                        lbl_Result.Text = "Cannot open" + FORM_NAME + ".\n";
                        return;
                    // Create a IAFormApp object, so that we can access the form fields in
                    // the open document
                    IAFormApp formApp = new AFormAppClass();
                    // Get the IFields object associated with the form
                    IFields myFields = (IFields)formApp.Fields;
                    // Get the IEnumerator object for myFields
                    IEnumerator myEnumerator = myFields.GetEnumerator();
                    bool bFound = false;
                    // Fill the "Name" field with value "John Doe"
                    while (myEnumerator.MoveNext())
                        // Get the IField object
                        IField myField = (IField)myEnumerator.Current;
                        // If the field is "Name", set it's value to "John Doe"
                        // form1[0].#subform[0].Name[0]
                        if (myField.Name == "form1[0].PatientInformation[0].Id[0]")
                            //form1[0].#subform[0].Id[0]
                            bFound = true;
                            lbl_id.Text = myField.Value;
                        //form1[0].#subform[0].Name[0]
                        if (myField.Name == "form1[0].PatientInformation[0].PatientName[0]")
                            bFound = true;
                            lbl_name.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].Email[0]")
                            bFound = true;
                            lbl_email.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].PhoneNo[0]")
                            bFound = true;
                            lbl_phoneno.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].Address[0]")
                            bFound = true;
                            lbl_address.Text = myField.Value;
    can u anyone help me. It's very urgent for my project.
    Thanks for ur replay,
    Regards
    Ganesaselvam.I

    First off - the code you wrote won't work with Reader, it will only work with Adobe Acrobat.
    Second, LiveCycle Designer-based forms are a special type of PDF and don't use AcroForms, they use an XML-based forms grammar.  Therefore, the AcroForms API calls aren't designed to work with them.  You should be using the JSObject bridge code along with JavaScript to access the values of the fields.

  • Adobe reader download problem on mac.  when i try to download reader it says i need adobe air.  when i try to download adobe air it says it's no longer available or supported.  i deleted the old air because i got a message saying i needed to delete it.

    adobe reader download problem on mac.  when i try to download reader it says i need adobe air.  when i try to download adobe air it says it's no longer available or supported.  i deleted the old air because i got a message saying i needed to delete it. what should i do?  my operating system is Mac 10.7.5

    You don't need Adobe AIR to download or install Adobe Reader.
    Try downloading the offline installer from http://get.adobe.com/reader/enterprise/

  • Adobe Reader Printing Problem

    I have a PC with Windows XP SP3. When I try to print a PDF document, I get the following message: "The document could not be printed. There were no pages selected to print." Of course, I had selected the pages to print.
    Recently, I had many problems with Adobe Reader 10, so I removed it and reloaded Adobe 9. Today, when this printing problem appeared, I did a restore on my computer, taking it back a few months. I still have the printing problem.
    Any idea what's wrong? Any idea how to fix it?

    I have Acrobat Pro 9, but the feature I am using is listed under my
    printers.
    If I go to Print, then in the drop-down list of printers, I have PDF -
    which essentially creates a new PDF document.  I don't really understand
    why it worked, but it did.  The Print - PDF is also available to Word,
    Publisher, etc.
    Hope tis works.
    Darlene M. Stoops
    Corps Ministries Communications Consultant
    The Salvation Army Territorial Headquarters
    Canada and Bermuda Territory
    NOTE: New phone number 416-467-3306, or extension 3306. Visit our websites
    for news, updates, and program ideas!
                                                                                    From:       Lindsay_MP <[email protected]>                                                                               
    To:         Darlene Stoops <[email protected]>                                                                               
    Date:       05/17/2011 11:40 AM                                                                               
    Subject:    Adobe Reader Printing Problem                                                                               
    Do you have Acrobat Pro 9? I can't find how to Print to PDF under File.....

  • Unable to print drawing properly in Acrobat - however with Adobe Reader no problem !!!

    Got a pdf (converted ACAD drawing) of which certain sections appear hardly readable on screen (grey, distorted ??)
    Tried all print options (colour, B&W, save PDF again, check rersolutions, contacted supplier of printer etc.) I could think of but no improvements
    By mistake I printed the file direct from explorer view and amazingly enough TEXT OKAY !
    Printed original file to CutePDF_writer and - once again - section could be read without any problem
    Thought I give the free Adobe Reader a try and once again: no problem at all
    Adobe Acrobat is fully updated - beside a Java flattening scripts I have not had anything modified.
    Strang situation: only with the professional tool I am using very often I am unable to print as required.
    Looks to me the file to be printed has some fonts not recognized / supported / missing in my Acrobat software?
    When yes how can I check & resolve ?
    Actually puts me in a delicate position now - help urgently needed !
    Assume I have to add fonts ? But got no warning anything missing...
    And: should a professional software tool not at least match options / features of a free version ?
    Added comment:
    It's even getting more weird
    Printing on an other printer (Minolta instead of Canon) NO PROBLEM AT ALL
    Thanks for help in advance
    Eddie

    Got a pdf (converted ACAD drawing) of which certain sections appear hardly readable on screen (grey, distorted ??)
    Tried all print options (colour, B&W, save PDF again, check rersolutions, contacted supplier of printer etc.) I could think of but no improvements
    By mistake I printed the file direct from explorer view and amazingly enough TEXT OKAY !
    Printed original file to CutePDF_writer and - once again - section could be read without any problem
    Thought I give the free Adobe Reader a try and once again: no problem at all
    Adobe Acrobat is fully updated - beside a Java flattening scripts I have not had anything modified.
    Strang situation: only with the professional tool I am using very often I am unable to print as required.
    Looks to me the file to be printed has some fonts not recognized / supported / missing in my Acrobat software?
    When yes how can I check & resolve ?
    Actually puts me in a delicate position now - help urgently needed !
    Assume I have to add fonts ? But got no warning anything missing...
    And: should a professional software tool not at least match options / features of a free version ?
    Added comment:
    It's even getting more weird
    Printing on an other printer (Minolta instead of Canon) NO PROBLEM AT ALL
    Thanks for help in advance
    Eddie

  • Adobe Reader/Safari Problems

    When I tried to use my Mac (Snow Leopard) to access my bank statement, I got a message that I needed to download Adobe Reader to view the statement. I already had Adobe Reader, so I tried to update it, but I got an error message (1852). I tried reinstalling and got the Installation Successful message. I checked the Internet Plugins in the Library, and the Adobe PDF Viewer Plugin was there, but I didn't see it in the Installed Plugins for Safari. I'm able to view existing PDFs with Adobe Reader, but I still can't read the bank statement on my my Mac; it works fine on our Ubuntu (Linux) computer! I also found another website that requires Adobe Reader where I was not able to view anything!
    I did find this statement in an Adobe Advisory that may explain the problem:
    "Adobe Reader plug-in and Acrobat plug-in are not compatible with the Safari 5.1 browser that
    shipped with Mac OS X 10.7 and for 10.6. The Adobe Reader and Acrobat standalone applications
    are unaffected and Safari 5.1 renders PDF documents natively. However, the Adobe Reader and
    Acrobat browser plug-ins will not function as expected in LiveCycle and Acrobat workflows that
    require either plug-in to render PDF documents in Safari 5.1." (http://kb2.adobe.com/cps/908/cpsid_90885.html)
    I tried reinstalling from FireFox, but I didn't have any success with that either! Anyone have any ideas about how to fix this?

    I checked the Internet Plugins in the Library, and the Adobe PDF Viewer Plugin was there, but I didn't see it in the Installed Plugins for Safari.
    In the "Installed Plug-ins" display it would be listed as "Adobe Acrobat Plug-in, Version 10.1.2". 
    I assume you remembered to relaunch Safari after you installed the plugin.

  • InDesign to Adobe Acrobat to Adobe Reader Link problem

    Hi - I'm responsible for a long conversation about link problems in creating file links in InDesign that did not work in Acrobat. At the end of that long discussion, I thought I solved the problem, but didn't. Since then, I've been MUCH more observant.
    The problem appears to take place in Adobe Reader.
    My home computer on Win7 is different than my work Computer (XP), but I have the same software on both.
    At work, I discovered that when I clicked on a PDF, it worked fine, that its links opened a new PDF window, but when I clicked on links on the second document, the links failed and Microsoft returned an error message telling me that I was screwed. Because I was screwed, I couldn't see what was in the path of that error.
    It turns out that for some unknown reason (which you might clarify for me), my Adobe Readers are attempting to open my documents in Internet Explorer and that just won't work.
    What I observed at home is that I made 5 test documents in ID, and ported them to Acrobat. As it turns out, my default for opening PDFs is Adobe Reader, which I saw on the chrome of the first document I opened. When I clicked a link, and I got the error message, I noticed my browser was up.
    When I set my default for opening in Acrobat, everything worked like a charm! How about that!
    Now then, what that says to me is that Adobe Reader is to be used exclusively with a browser, so if the people who are going to read your internal PDF files with Reader without those files being on a web server of some type, you are totally screwed. The only way you can use Reader is if you click on the file and bring it up directly. Don't rely on linking to other documents.
    I mean, that is what it seems to me.
    Now, I am creating a big project for an environment without a webserver and obviously my sense of panic is palpable. That said, I believe that all my users can read my files using Acrobat (to be tested tomorrow), which I hope means I can breathe a bit easier.
    Do any of you have any thoughts on this subject? If you are really curious, I can make a packet of test files available.

    Karen_Little wrote:
    The files and the PDFs are all in the same directory.
    The tests are on local drives. All indesign files and their related PDFs were in the same directory.
    The same for Word and its related PDFs. Note that the PDFs created by Word then read by Adobe Reader worked correctly. They all opened in Adobe Reader.
    If the default program for opening PDFs is Acrobat, everything works correctly, with the added benefit of everything opening in a different window, which is what I want (yet to be tested at work). If the default program is Adobe Reader, the second generation of links do NOT work because Reader opens in Internet Explorer.
    When I open a Word-created PDF with Acrobat, view the link, and click to the Actions menu, the action is "Open a file"
    When I open an InDesign PDF with Acrobat and do the same, the action says "Open a web link"
    Big BIG BIG bug.
    Are you seeing the link commands by editing them in Acrobat? If not, try, so you can see the exact command and file or URL instruction. It still may be a bug, but you'll have better evidence when you report it here:
    Adobe - Feature Request/Bug Report Form
    And, you might want to try correcting a link command in Acrobat, to see if can work for both Acrobat and Reader.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Adobe Reader Search problem

    Since Adobe Reader 9 we have a problem with the "find" (search the content of pdf files). Sometimes it works fine and sometimes the search result highlights incorrect words.
    We use now Adobe Reader 9.1.2 but had the same problem on 9.1.0. It seems that the count of results is correct, but not the highlightet word. The files have the PDF-version 1.4.
    Do anyone know the problem or have an idea whats wrong?

    The Problem was not Adobe Reader!
    We use ScanSoft PDF Create! to create the PDF files directly from Word 2007. In the tool settings we activated now the option "Optimize for Web Viewing". Now it works correctly with every testet document.
    But it still strange, that we didn't had the Problem with Adobe Reader 8.
    Many thanks for your support.

  • Adobe Content Viewer Problem

    Hi All,
    I am having trouble testing a new folio on the desktop of one of my students' computers. I have double checked her files are all setup properly. I checked her articles and her folio too. Everything is set up the way it should be. We can test it on an iPad without any problems, but when we try to test it on her desktop via the Adobe Content Viewer the screen loads and then remains grey. No error codes. Just completely grey.
    Any suggestions as to why this may occur?
    Thanks,
    Jessica

    Did your student set her folio as PDF? You can't view PDF folios on the desktop content viewer. If you were to try and view it then you would get a grey screen.

  • Adobe Help Viewer Problem

    For some reason, I recently noticed that the Adobe Help Viewer for After Effects CS3 is not displaying properly.  When I use the help viewer for any other applicaiong (I have CS3 Production Premium) it looks normal (like a flash display).  But I when I open it for After Effects, there is no image on top and the text is larger blue on a white background (instead of smaller on a greay background, etc.).  No images are displayed in the help text.  This just happens for after effects.  I have Help Viewer version 1.1, build 198.  I tried downloading the 1.1 update from the website (even though it's the same build number) but when I try to install I get an error in setup.exe.  Any ideas?
    I can still navigate through the help viewer but it is definately not displaying properly.
    Thanks.

    I don't know what's causing the problem that you're describing, but I recommend against using the Help Viewer for After Effects CS3. I recommend that you either use the After Effects CS3 Help on the Web or the After Effects CS3 Help document in PDF. For After Effects CS3 and After Effects CS4, the Help document installed on your hard disk is not as complete and current as the HTML and PDF versions available on the Web.

  • Adobe reader printing problems

    Hi all,
    I have created a word document, and converted it to .pdf using Cute PDF writer. When I open the document in Adobe reader 7/8 I can see the document fine and clear with all fonts and images as they should be.
    The problem is when I try to print the document. When I print from Adobe 8, the font (Gill Sans MT to be specific) doesn't print correctly. Instead of getting a word with one letter after the other, all letters of that word are printing on top of each other if you get me. This can happen anywhere on the page.
    However, if I open the document in Adobe reader 7 - the document prints correctly. No problems. I have tried this on a number of machines so I can safely say its not a problem with the install of the software on any of the machines. It just seems to be an incompatibility with the Adobe reader 8 software.
    Can anyone tell me why this is happening or how I can get around this on Adobe reader 8?
    Any help is greatly appreciated.
    Thank you.
    Mo

    a bug most likely. I can only see a couple of options for you. Don't use Reader 8, use a different PDF creator, or try to tweak the settings in in Cute PDF to make it embed and encode the fonts so that Reader 8 can print successfully.

  • Adobe Reader Installation problem

    Originally I got this error message:
    "Error 1321. The installer has insufficient privileges to modify the file C:\Program Files (x86)\Adobe\Reader 11.0\Reader\Browser\nppdf32.dll"
    A user give me this response:
    hi jhohn1190, this problem won't be related to javascript which is enabled in firefox by default - this would only apply if you're not able to download the setup file at all. since the error message is referencing missing privileges, please try right-clicking and running the setup as administrator. in case this doesn't help, please contact adobe's support in order to get their product working.
    I did what he said and now I get this error message:
    "Error 1310. Error writing to file:\Program Files (x86)\Adobe\Reader 11.0\AcroTextExtractor.exe. Verify that you have access to that directory.” Note that
    At least this time the sub directories "Adobe\Reader 11.0" exist, but below them is another - empty - directory "Reader", and nothing else. I'd appreciate more help,
    and thanks ...

    Please continue in your original thread.
    *[[/questions/1054476]] install Adobe Reader fails; says I should check javascript but how do I do it?
    You can edit the title if it doesn't fully state your issue.
    ''(locking this thread)''

  • Adobe Reader XI Problem

    After I was prompted to download Adobe Reader XI, installed and tried to use it, a pop up message appears stating that Adobe Reader has encountered a problem and needs to close.   I have tried several times and still failed.  I cannot read by pdf files and what can I do??  Very, very frustrated.

    uninstall your reader.
    run the cleaner: http://labs.adobe.com/downloads/acrobatcleaner.html
    restart your computer.
    install the reader: http://get.adobe.com/reader/  (untick mcafee unless you're certain you want it.)

  • Adobe reader Firefox Problem

    Hallo ich habe das Problem das Firefox keine PDF´s anzeigt es kommt immer nur die fehlermeldung 8siehe Anhang)
    Ich benutze Vista Home Prem. 32 Firefox 7.01 und Reader 10.1.1
    Hoffe es kann mir jemand helfen...
    Danke
    P.S. Plugins sind korrekt eingetragen, Reader wurde schon neu installiert,auch ein neues Profil in FF hilft nicht

    Thanks for the info. But i have used adobe reader plugin with chrome when i used windows 7 in another PC. And in windows7, adobe reader plugin is listed in Chrome. So i was able to save and edit forms in that system.

Maybe you are looking for