Adobe reader viewing

I just bought a new laptop and am attempting to view an adobe reader file.  The issue is that I can only see the first page of a multipage file.  The bookmarks show up on the left side but they do not function when clicked upon.  Furthermore on my old laptop I can open this file in Adobe reader and it displays fine.  Any help would be appreciated.  Thank you for your time.

Do you have a direct link to that PDF, or is it built from that database when you click on the link?
If you have a direct link, download the PDF to your local disk (right-click on it, then select Save target as), then open the PDF from there.

Similar Messages

  • 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 view in Internet Explorer is very narrow

    I am able to open PDF files inside Internet Explorer but they show up in a 2 inch wide (or so) column on the left side of the screen and I am unable to get this very narrow view to widen. The PDF is there but very very small. Zooming in works but again all I can see is 2 inches or so of the left hand side. The right hand side is solid black as if the plugin is just sized down to be very narrow. I've reinstalled Acrobat Reader but still have the issue. Has anyone ever seen this?

    Does this happen on every site?  Try opening the PDF on this site
    http://www.adobe.com/devnet/flashplayer/articles/flash_player_admin_guide.html
    Does it happen here as well?
    Can you provide a screenshot on how that looks?

  • 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

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         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:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

  • I'm not able to open PDF files in Adobe Reader XI.

    I recently updated to Adobe Reader XI and now I can't open any of my PDF documents or PDF e-mail attachments.  When I click on a document I now get a window that asks if I want to allow this file to open.  I click yes and get a monstrousity the likes I've never seen.  It blacks out my screen for a couple seconds and then I get a mixture of my desktop, task bar, and a window wanting to know if I want to open this with Protected Mode disabled.  It only fills 3/4 of the screen, the items all all blown-up in size, and are distorted.  In playing with this I have gotten notes that I have an "Incompatable Application" and "Acrobat failed to connect to a DDS Server".  On occasion I will get an Adobe Reader screen that is completely greyed out with no content in it and after a couple of seconds it goes off.  Other times I got the window about Protected Mode and I've clicked on to disable it but that doesn't work either.  I removed Adobe Reader XI and re-installed Adobe Reader X and I still have the same problem which I did not have before.  I 'm running Windows 7 Professional and have McAfee anti-virus, which I have disbled on one occasion during download and that I still had the same problem.  I went to program files to find the End User License Agreement and try to see if I needed to click on 'Accept" but it tells me the file does not exist.  I even tried using System Restore to take me back to before I did the upgrade to Adobe Reader XI and I still have this problem.  I'm at the end of my knowledge level and because these files are needed in my business I'm only able to operate at about 50%. 

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

  • FW: [Adobe Reader] I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie

    What a dumb answer, the payment is done and charged already,
    ADOBE DOES NEED MY CREDIT CARD INFO ANYMORE, PLEASE REMOVE IT
    FROM YOUR DATABASE AS I CANNOT DO IT MYSELF.  It is quite annoying
    to be controlled like this, please confirm that my request has been answering
    with intelligence please.
    Lucie Lévesque
    Date: Mon, 8 Dec 2014 08:09:59 -0800
    From: [email protected]
    To: [email protected]
    Subject:  I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        created by Bernd Alheit in Adobe Reader - View the full discussion
    Adobe needs the credit card information for the payments.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/6995243#6995243 and clicking ‘Correct’ below the answer
         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:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/6995243#6995243
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

    Adobe Reader is a FREE program, so you would not enter a credit card
    If you have a subscription to a PAID program, removing your credit card information would cause that program to stop working when you stop paying for your subscription
    If that is what you want, here is the information on how to cancel
    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Adobe Reader freezes all browsers when opening a url to a PDF containing form fields...

    There is an issue we are currently experienceing with Adobe Acrobat 9 (updated to the latest version) where ALL BROWSERS (Internet Explorer, Firefox, Chrome and Safari) on each of two different systems (a MacBook Pro with Mac OSX Leopard and a Sony Vaio Laptop with Windows Vista) where the application will freeze up and crash the browser when we view a .pdf file from a url if the .pdf file iteself contains form fields.
    At first I though it may have been specific to Mac OSX and this MacBook we were trying to view the document on, but the same issue is now occuring with a new Sony Vaio laptop (running Windows Vista) as well.
    It seems like it is able to open .pdf documents containing form fields when they are stored locally, but when trying to access them via a url, the program will freeze up.  Sometimes it will eventually work if you had previously opened a .pdf prior to opening it via the url link and sometimes it doesn't.  And it seems to only be related to .pdfs containing fillable form fields (others open fine when accessing them by a url)
    Obviously it's become quite irratating and I'm hopeing I can find some insight on this support forum as to what may be causing this issue.
    Previous versions of Acrobat (installed on the MacBook) opened this very same .pdf file (url) fine before upgrading to version 9.
    Any help is greatly appreciated.  Thanks!

    From: Ankit_Jain [email protected]
    Sent: Monday, February 27, 2012 8:58 AM
    To: TAGold
    Subject: Adobe Reader X internal error when opening PDF that worked with 9
    Re: Adobe Reader X internal error when opening PDF that worked with 9
    created by Ankit_Jain <http://forums.adobe.com/people/Ankit_Jain>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/4232243#4232243

  • Adobe Reader does not recognize file name (filename10.5.11.pdf) but does in Adobe Standard 9.  Why?

    I post documents to our Intranet site and found out recently that Adobe Reader does not recognize certain file names in PDF files.  For instance,  when trying to open a PDF file with the name
    filename10.5.11.pdf  in Adobe Reader, the web browser will not open the PDF and the display is blank.   When I'm using another computer with Adobe Standard 9, I do not have a problem opening the file.
    I would like to know if anyone else has had a similar issue and why Reader will not recognize the file name and Standard does.

    The version is Adobe Reader 10.1.0    I will request the latest version
    and let you know if that fixes the problem
    Actually I had changed the name of the file so our associates could access
    the file (changed the  .  to a hyphen)  It still made me wonder why Reader
    wouldn't open it at that time.
    Thanks again for you assistance and I will let you know if this resolves
    the  issue.
    Regards,
    Susan
    From:   Ankit_Jain <[email protected]>
    To:     SusanPleso <[email protected]>
    Date:   10/19/2011 12:56 AM
    Subject:        Adobe Reader does not recognize file name
    (filename10.5.11.pdf) but does in Adobe Standard 9.  Why?
    Re: Adobe Reader does not recognize file name (filename10.5.11.pdf) but
    does in Adobe Standard 9. Why?
    created by Ankit_Jain in Adobe Reader - View the full discussion
    Hi Susan,
    Thanks for providing the information.
    Could you also let me know what is the exact version of Adobe Reader on
    your system. You can check the same y clicking on Help > About Adobe
    Reader X.
    In case its not 10.1.1, please try updating to the latest version and see
    if the problem persists.
    Also, does any other PDF with a different filename open in Internet
    Explorer correctly?
    Thanks
    Ankit
    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/3979020#3979020]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3979020#3979020]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Reader 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.

  • Authorisations to run Adobe Reader under Windows 8

    Under windows 8 with adobe reader 11, I have not been able to launch the program. Each time the system says I don't have the authorisations required (even when I follow instructions to get additional authorisations which I seem unable to obtain despite using the normal sequence of "properties" , "security" " advanced  etc. and in this case I get the following message in the "target" slot"
    The name "c:\program files\adobe\READER 11.0\Reader\AcroRd32.exe" is not valid. Verify that the routing (?) and the name of the file are correct
    when I click on  the Security tag although the location of the programes of Adobe Reader 11 are in fact in the location detailed above. It would seem that windows 8 has a security system that I don't seem to be able to adjust. (I have used Acrobat under Vista and under XP without these problems) . At the moment and after three days of efforts I am still incapable of getting Reader 11 to run..

    (a) After installation of Reader 11.0, the following text appears on the 
    screen after either double clic on the screen icone or clic on c: directory 
    (c:\programmes\adobe\Reader 11.0 :-
    Title: Reader 11.0
    Vous ne disposez pas des autorisations requises pour acceder à ce dossier 
    (Translation (not on screen): You don't have the authorisations required to 
    accede to this file)
    (There are two tabs ("Continue" and "Cancel")
    If one clics on "Continuer" the screen reads:
    Reader 11.0
    L'acces à ce dossier vous a été refusé. Pour acceder à ce dossier vous 
    devez utiliser l'onglet de securité :
    Translation: Acces to this file for you has been denied. To acces this 
    file  you should use the "Security" tab.
    One tab: "Fermer" (Close)
    If one then does a right clic on the Reader 11.0 screen icone, and then 
    clic on "properties" then clic on "Security", I get a listing of "groupes or 
    users"  which for this computer gives the following : "System", "John 
    Willis([email protected]"), "Administrateur (rulepar\Administrateur), 
    "Administrateurs (rulepar\Administrateurs), "Interactif". Each of these has a  check
    mark against "Controle Totale",
    "Modification", "Lecture et execution", lecture", "Ecriture" and the three 
    "rulepar" entries each have a check mark against "Autorisations  spéciales".
    If one clics on the tab "Avancé" then
    on the "Autorisations tab  'john willis ([email protected]_
    (mailto:[email protected]) ), 'Administrateur  (rulepar\Administrateur), "INTERACTIF",
    "Administrateurs  (rulepar\administrateurs), "Systeme"  all have "Controle Totale"
    ,  "Interactif" has "Lecture et Execution"  and "Administrateyr 
    (rulepar\Administrateur) and "john willis ([email protected]_ (mailto:[email protected]) )
    have "Special"
    on the "Partage" (share?) tab there are two entries (Type = Autoriser" 
    Principal for "Administrateurs (rulepar\Administrateurs) and "Tout le monde 
    (everybody)
    on the Audit tab there is nothing and on the Acces Effectif page there is 
    "Select a user but nothing else.
    The title of this page is c:\users\Public@Desktop\Adobe Reader XI. lnk 
    under a page title "Parameters of advanced security for Adobe Reader XI
    Regards and thanks
    John Willis
    [email protected] (mailto:[email protected])
    In a message dated 05/06/2013 14:35:32 Paris, Madrid (heure d’été), 
    [email protected] writes:
    Re:  Authorisations to run Adobe Reader under Windows 8
    created by Pat Willener (http://forums.adobe.com/people/pwillener)  in 
    Adobe Reader - View the full  discussion
    (http://forums.adobe.com/message/5380876#5380876)

  • Adobe Reader error when downloading a Form (IMM5257E - required for CIC - Canadá)

    I received an error when downloading a file viwh the Adobe Reader version 11.0.07.
    A message like this appear:
    To view the full contents of this document, you need a later version of the PDF viewer.

    Pat Willener!
    GREAT THANKS! GREAT THANKS! GREAT THANKS!
    I was using Google Chrome, and did not suspect that this could be the
    problem.
    I used I.E. and the download worked. So that's it.
    Great thanks again.
    Vilson Drehmer
    Rua Balduíno Pedro Vier, 693
    CEP 95.880-000 - Estrela - RS
    Fone: (51) 8401.2253
    E-mail: [email protected] <[email protected]>
    CRA-RS 6364
    2014-05-28 5:26 GMT-03:00 Pat Willener <[email protected]>:
        Adobe Reader error when downloading a Form (IMM5257E - required for
    CIC - Canadá)  created by Pat Willener<https://forums.adobe.com/people/pwillener>in *Adobe
    Reader* - View the full discussion<https://forums.adobe.com/message/6414530#6414530>

  • Slow to open PDF files in Adobe Reader

    Hello,
    after upgrading to Mac OS 8.5.3 and 10.9 Maverick'm slow to open PDF files from a Windows 2003 Server share.
    In the terminal I get the following errors Print Screen below.
    PING to the IP of the share is less than 1 ms.
    I'm working with adobe reader for Mac.
    How can I fix this?
    Thanks

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

  • "Full Screen Mode" in Adobe Reader XI for Windows 8 loads way too slow!

    I recently got a new laptop with Windows 8, after having used Windows Vista for years.  I installed Adobe Reader XI for my new computer.  Before, I used Adobe Reader X on Vista.  I used Adobe Reader "Full Screen Mode" to read the nice-looking Bible chapters I created with internet audio from Biblegateway.com.  In Vista, the "Full Screen Mode" appeared quickly, before the audio fully started, so I could see the text in time for the reading. 
    However, with Windows 8, "Full Screen Mode" takes around 5-10 seconds to appear at all, and a black screen is present throughout the wait.  It does the same thing when I hit "escape" to exit "Full Screen Mode" as well.  I even uninstalled Adobe Reader XI from my new laptop, and tried using Adobe Reader X, even though it is not recommened by Adobe to do that on Windows 8, in order to test the speed of "Full Screen Mode" there.  Adobe Reader X had the same problem!  I do not know if this can be fixed, but I am pretty unhappy about it!  I enjoyed the "Full Screen Mode" with my PDF chapters and the online bible audio!  Finding that function for the first time with Adobe Reader X was a delight for me!  It gave the reading a theater feel!
    Has anyone else here had a similiar problem with "Full Screen Mode" loading way too slow on Windows 8?  I am very disappointed!  If this cannot be fixed by a user, is there a place to complain to Adobe and make a recommendation for software improvement?  Thank you!             

    From: Test Screen Name [email protected]
    Sent: Sunday, August 04, 2013 11:32 AM
    To: gunner0490
    Subject: I'm not able to open PDF files in Adobe Reader XI.
    Re: I'm not able to open PDF files in Adobe Reader XI.
    created by Test Screen Name <http://forums.adobe.com/people/TestScreenName>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5565198#5565198

  • Adobe Reader 11.0.03 crashes on opening a document

    Adobe Reader 11.0.03 crashes on opening a document - why? Never happened in 11.0.02.

    From: Ankit_Jain [email protected]
    Sent: Monday, 20 May 2013 3:18 PM
    To: Barleyman44
    Subject: Adobe Reader 11.0.03 crashes on opening a document
    Re: Adobe Reader 11.0.03 crashes on opening a document
    created by Ankit_Jain <http://forums.adobe.com/people/Ankit_Jain>  in Adobe Reader - View the full discussion <http://forums.adobe.com/message/5335394#5335394

  • Century gothic displays in adobe reader 8 and not in 9

    Hi
    I have created a pdf using adobe livecycle and i have set the address font in my header to Century Gothic. When i view the doc in Adobe reader 8, it shows it exactly the way i want. When i view it in adobe 9, it has changed to arial. Why is this happening? and how can i prevent it from changing when viewed in the different versions of adobe reader?
    Also, it doesnt make sense to say that the font is supported in adobe 8 and NOT in 9. Surely capability should be backward compatible?
    PLEASE HELP!!!
    Fatima

    Hi Hitender
    The document does not show the correct font in Adobe Reader 9.0. We have now downgraded our adobe reader on the server where we are printing the docs from.  We have tried installing the font onto that server but that was also unsuccessful.
    Please let me know if you have any advice for my problem.
    Thanks
    Fatima
    From: HitenderPrakash [email protected]
    Sent: Monday, February 20, 2012 3:39 PM
    To: Fatima Badat
    Subject: Century gothic displays in adobe reader 8 and not in 9
    Re: Century gothic displays in adobe reader 8 and not in 9
    created by HitenderPrakash<http://forums.adobe.com/people/HitenderPrakash> in Adobe Reader - View the full discussion<http://forums.adobe.com/message/4217665#4217665

Maybe you are looking for