How do I clear a total black screen so I can read the pdf in Adobe Reader?

I've searched everywhere!  Can someone send simple directions?

I am on a Mac and the software is downloaded onto my computer. i keep it updated.  Had been working fine and then a few months ago this happened.  It's as if the reader is programmed to be reading it "opposite".   as if where there would be a white page there's black and where the text would be it's invisible.  Seems like there's some kind of setting I could change to right it back to read correctly.

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.

  • HT201401 last night my iphone screen all of a sudden was solid blue and now it is black. I put it on the charger and this morning it is totally black.  However, I did hear the text message signal go off. When I turned the volume on and off a big white bel

    Last night my iphone screen all of a sudden was solid blue and now it is black. I tried turning it on and off.  Still nothing appeared on the screen.  I put it on the charger and this morning it is totally black.  However, when I hit the on and off button, I did hear the text message signal go off. When I turned the volume on and off a big white bell flashed.  In the last week, there were some other display problems such as the screen blowing up large. The only way to fix it was to turn off the phone and then turn it back on. 
    What does all of this mean? It seems like I've had these problems since the iphone 4 upgrade.

    just do reset, press home button and power butoon for a while untill you can see apple
    gud luck

  • All my downloaded(digital copy) movies will no longer play in itunes, i get a black screen, and no sound, but the time keeps going. how can i fix this?

    All my downloaded (digital copies from dvds) won't play in itunes. I get a black screen and no sound, but the time keeps moving. How do i fix this?

    Hi 22chill,
    I recommend that we delete and re-download the movie from your purchase history:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Thanks,
    Matt M.

  • My ipod touch was with the total black screen

    mine ipod touch was with the total black screen, and itunes does not recognize it you not binding

    Try holding down the on/off and home buttons at the same time until you see the Apple logo. 

  • HT2499 I ejected ACDs from my Mac Pro DVD player and now there is just a black screen with DVD player and the Apple insignia the bottom right corner. I can't get anything to turn on and shut this down. Got stuck. What do I do?

    On my MacBook Pro I finished using a CD and it ejected. Then I have a black screen just a DVD player showing on the bottom of a black screen. I can't do anything with my cursor at all nothing opens up and I don't know how to get that off the screen and start using the computer again – thanks for any help you can give me

    Hi there,
    You may need to force quit the application. Take a look at the article below for more information.
    Mac OS X: How to quit an unresponsive application using Force Quit
    http://support.apple.com/kb/ht3411
    -Griff W.

  • I have recently received a pdf file that, although previously opened, now shows totally blacked out?  What can I do to correct this?

    I have recently received a pdf file that, although previously opened, now shows totally blacked out?  What can I do to correct this?

    Hi rdfnra,
    Please check the Page Display preferences (File > Preferences/Acrobat > Preferences) and make sure that Show Large Images is selected. If sounds as though this PDF may have been created from a scanned document, and this preference is disabled.
    Please let us know how it goes.
    Best,
    Sara

  • HT201210 Help, I just gave iTunes the assignment to update my iPhone5 to iOS7 and now it gives an unknown error (6). The iPhone is still hooked to my laptop, and shows the black screen and bright Apple with the horizontal bar, telling it's in the middle o

    Help, I just gave iTunes the assignment to update my iPhone5 to iOS7 and now it gives an unknown error (6). The iPhone is still hooked to my laptop, and shows the black screen and bright Apple with the horizontal bar, telling it's in the middle of something. What should I do?

    DFU mode? How do I do that? So far the only thing I can do is hold down both buttons to power it on and nothing is on the screen and it wont reconize on my computer....

  • HT1414 I tried to do an update in the settings mode and now my ipad is frozen with a black screen with itunes app in the middle and showing to plug in the charger. Nothing is happening and tried turning off device and still nothing.

    Ipad locked up while trying to do an update. Don't know how to fix and can't use ipad at all. Black screen with itunes app in the middle of screen and it shows picture of charger that it wants me to plug in. Nothing works.

    You are in recovery mode, you need to restore it through iTunes on your computer. Follow the article you linked from.

  • Black screen on reboot - can only see mouse pointer

    Installed a couple new apps yesterday and on reboot, I can no longer get my login screen. The workstation boots and I hear the windows login screen sound, but all I get is a black screen which I can see my mouse cursor on when I move it. I've tried powering
    off and on a few times and still the same result. I'm unable to figure out how to get to Safe Mode in Windows 10. Any assistance would be appreciated.
    DH

    Installed a couple new apps yesterday and on reboot, I can no longer get my login screen. The workstation boots and I hear the windows login screen sound, but all I get is a black screen which I can see my mouse cursor on when I move it. I've tried powering
    off and on a few times and still the same result. I'm unable to figure out how to get to Safe Mode in Windows 10. Any assistance would be appreciated.
    DH
    did you install the preview as a clean fresh install?
    could be there is some driver compatibility issue
    Place your rig specifics into your signature like I have, makes it 100x easier!
    Hardcore Games Legendary is the Only Way to Play!
    Vegan Advocate How can you be an environmentalist and still eat meat?

  • Black Screen - Setup Incomplete - Can't reload

    So, my Passport screen works, I can see the screen reset, all the visuals work on startup, showing progress, etc.  When the phone turns on however, I get a black screen (it's on, just blank, black background). This occurred after an apparent software update using Link. All was working well, until that update. Wish I could tell you the version, as I now can't access anything on the phone with the black screen. When I press volume buttons, it shows volume visuals for increaseing/decreasing volume, when I take a screenshot, it also shows the usual message for saving to my images. but, nothing else works.  When I reconnect to Link and try a factory restore or reload, I get the Setup incomplete messages. I can't try Sachesi or anything else for this same setup incomplete error message.  Not sure what other options I have.  Already tried reload, factory restore, hard reset with volume buttons - always the same result - black screen, do not pass go.  When I try the update software option (even though it went through the update that caused all these problems), I then get an Unspecified error encountered [A:0x000000A2] message, if that helps. W...T...F...

    Hi and Welcome to the Community! The most common thing to do after an update that results in issues is to perform an OS reload. Sometimes, the update processes have errors and such...with a reload often curing the issues. The official methods, which will be controlled as to what exact OS versions you are offered:http://supportforums.blackberry.com/t5/BlackBerry-10-Functions-and/How-to-Reload-your-Blackberry10-O...Unfortunately, you've already tried those without success, which leads then to the unofficial methods, which are cleaner (and more forceful), and allow you to choose an OS version that perhaps your carrier (or whoever it is controlling your offers) has been slow to approve:http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...http://forums.crackberry.com/bb10-leaked-beta-os-f395/bb10-os-archive-943672/Of course, before you started any of this, hopefully you took a good backup via LINK, a manual copy of your Device Memory to your PC, and full documentation of your configuration (account credentials, added apps, configurations, etc.). Sometimes, restoring from a backup returns to the device the very corruption one needs to eliminate, and reconfiguring from scratch can resolve that. Good luck!

  • My iphone is no longer working I have black screen with a picture of the itunes logo and a USB cable.  When I try to connect my iphone to itunes the device is not detected, can anyone help me? I desperatley need my phone back

    My iphone is no longer working I have black screen with a picture of the itunes logo and a USB cable.  When I try to connect my iphone to itunes the device is not detected, can anyone help me? I desperatley need my phone back

    I have had a 3GS for 2+ years.  After upgrading to IOS 4 (now 4.3.5) I began having problems.  In the past week, my screen went to the itunes logo and USB cable twice -- unprovoked -- just found it sitting there like that!  I connected to itunes and it did restore from a backup but it is a major inconvenience.  I am also searching for answers, but better back-up regularly!

  • Why do I get a black screen when i click on a PDF in a web page?

    why do I get a black screen when i click on a PDF in a web page? Firefox works as is should.

    Hi,
    From your Safari menu bar click Safari / Preferences then select the Extensions tab. If you have any installed, turn that off, then relaunch Safari. Try a PDF file.
    If it's not Extensions, open a Finder window. Select MacintoshHD in the Sidebar on the left. Now open the Library folder then the Internet Plug-Ins folder. If you see any files such as this:
    AdobePDF Browser or Viewer Plug-in
    Move it to the Trash, relaunch Safari.
    Carolyn :-)

  • After a one week logout and shutdown my macpro 1,1 laptop shows a black screen at startup attempts. The battery is fully charged and both resetting the power manager  and zapping the PRAM have failed to permit startup. What else can I try?

    After a one week logout and shutdown my macpro 1,1 laptop running OSx 10.6.8 shows a black screen at startup attempts. The battery is fully charged and both resetting the power manager  and zapping the PRAM have failed to permit startup. What else can I try?

    Startup – Black screen with cursor
    Startup Issues - Resolve
    Startup Issues - Resolve (2)

  • When I click on a link from a web page opened in Safari I get a blank black screen. Why can't I see the contents of the page?

    When I click on a link from a web page opened in Safari I get a blank black screen. Why can't I see the contents of the page?

    Is this any link in any page, or one particular link in a particular page?

Maybe you are looking for

  • Creating New Material Type

    Hi, While creating new material types what things should be taken in to consideration? If i want to create it by using copy function which ref. material type we should select and why?.e.g. ZSCRAP- Scrap Material

  • Getting Wireless PCMCIA card to work

    Attempting to get a Linksys wpc54G wireless PCMCIA card to work on my 1.5Ghz G4 PB. I verified that the card works, by plugging it into to a PC.. ( works fine) Plugging the card into my pcmcia slot, on nothing. No lights.. nothing. I get the PCMCIA i

  • Satellite C650 Windows 7 64-bit video driver

    I have removed the home edition of Widows 7 from a new Satellite C650 laptop so I can install Windows 7 Professional (I need to join a domain). I have all drivers installed as well as the BIOS 1.50 update, but the display driver fails to run with an

  • SX10 with 802.1x

    I have a sx10 (TC7.1.1 or TC7.1.3 or TC7.1.4 it is the same problem with each SW Release)  codec and want to use 802.1x for network authentication but this isn´t working. I configured the user name for the authentication in the Identity field of the

  • Error 404 when attempting to download purchased software

    I am attempting to download some Adobe software I purchased. In Firefox, when I click the download link that says "Akami download manager" or "alternate download method" the page loads with the following error: HTTP ERROR: 404 /support/downloads/dlm/