Loading trouble with reader

In trying to load reader from the online store, it gets about 80% finished and then gives an error saying I need a registration key. I have had Reader on this computer before and it worked fine but one day it stopped coming up automatically on the list for opening attachments. If I could load an older version that is simpler that would be the best. Any ideas? Running windows XP pro. Thanks

I just wanted to say I was "searching" for answers to my own trouble with Adobe Reader 9, when I came across your post and "graffiti's" answer!
Graffiti wrote:
"Are you trying to get it from here: http://get.adobe.com/reader/
If so, try downloading from the FTP site at ftp://ftp.adobe.com/pub/adobe/reader/win/9.x/9.1/enu/AdbeRdr910_en_US.exe and see what happens. It should work."
I clicked directly on that link ftp://ftp.adobe.com/pub/adobe/reader/win/9.x/9.1/enu/AdbeRdr910_en_US.exe and it did WORK!!! I'm so grateful because for days I've been unable to access documents that require Adobe Reader!
Thank you Graffiti, and thank you duendestudio for the post heading I needed ~ I'm now a happy camper! 
God bless you both!
Litaseat
PS: I run Win XP Home

Similar Messages

  • Trouble with Reader

    Having trouble with Adobe Reader 9.5.  Cannot open program; and cannot open a .pdf file.  No error messages, just nothing happens.  Tried to delete software and re-download.  Cannot delete it - message says patch package could not be opened.

    What is your operating system?  If Windows, use http://labs.adobe.com/downloads/acrobatcleaner.html and reinstall Reader.

  • Trouble with Reader 9.3.0

    Having trouble downloading 9.3.0. Erros 1304 and 1310 keep coming up.  I don't know what to do.

    Hi,
    we have exactly the same problem here and I also figured out, that the GUID seems to be the one from Adobe Reader 9.1. Is there any chance to update an administrative installation to 9.3.1 without uninstalling installed 9.3.0? In my opinion, an administrative installation will be made to avoid uninstalling on the client side, so hopefully Adobe will soon publish a patch which can be used  with an administrative share.
    Thanks,
    Stephan

  • Trouble with reader & player

    Tried to download, went ok, but when tried to install, got to 50% than got a message failed to initilaize?  Any ideas?  Tried many times, does it to both.
    thanks,
    Sean

    Could you provide some details about the computer/OS/Browser?
    Are you signed in with Admin priviliges?
    Does the error occur even if you use a different browser?

  • Trouble with Reader Option Screens

    I have Windows XP SP3 32bit. I have completely uninstalled and reinstalled Adobe Reader with no errors. I can open pdf files, read them and even fill in forms. When I try to print, change preference or settings, I get strange looking DOS like screens with very large block letters which have strike marks through them. This is driving me absolutely bananas. Any help would be greatly appreciated.

    Strangest thing, another response to my question pointed out a German
    version with the same problem. A corrupt Tahoma TTF font. I checked the
    font first with my word processor with no problem. I uninstalled and
    reinstalled it anyway and my Adobe Reader problem was fixed.
    Go figure.
    Thanks for your response.

  • Having trouble with reading hex from an input file - please help

    Hi, I have a txt file with rows of hex, and I need to read each line and add it to an int array. So far I have:
    BufferedReader fileIn = new BufferedReader(new FileReader("memory.txt"));
                    int count = 0 ;
                    String temp = fileIn.readLine();
                    int file_in = Integer.parseInt(temp) ;
                    while(temp!=null) {
                         data[count] = file_in;
                         temp = fileIn.readLine();
                         file_in = Integer.parseInt(temp,16);// Integer.parseInt() ;
                         count++ ; /* increment counter */
                    } memory.txt:
    4004000
    4008000
    3FDF4018
    4108200
    3C104001
    FFFFFFE8
    4010C6C0
    FFFFFFE8
    94000000The above code crashes on the third input (my guess is becuase there are letters in and it can't parseInt letters.
    I think I need to parse it into an array of chars instead, however I don't know how to get from the string (temp) to the char array.
    can anyone help?

    ok turns out it's just a null pointer exception on the data[count] line, becuase I've only initialised the first two slots of data. i didn't see it before becase it was just throwing an error and i never printed it out.
    here's how I've defined data:
    in the class
    int[] data;just before the code to input the file data:
    for ( int i = 0; i < length; i++ )       
                    data [ i ] = 0;thinking this shoudl go through all the array and initialise it. but it gives a NullPointerException on the data=0; line.
    any ideas?
    Edited by: rudeboymcc on Feb 6, 2008 10:50 PM
    Edited by: rudeboymcc on Feb 6, 2008 10:51 PM

  • Trouble with reading from partitioned drive.

    Hi guys.
    A family member has entrusted me with trying to sort out her laptop. Her internal hard drive was full and was not letting her do anything.
    I found out that the drive was partitioned in half 80GB/80GB.
    I then proceeded to clean up the laptop as it hadn't had any cleanup done to it in the 4 years of owning it and it was very slow.
    I got to the iTunes folder and moved it to the partitioned half. I then looked into getting the iTunes program to read the files from this drive b changing the folder location through Edit> Preferences> Advanced> Change iTunes Media folder Location.
    I changed it to D:\iTunes Media\Music
    At first this worked and all the library was listed. Then after the family member got it home she opened it up and there wasn't anything in the library.
    It had reverted back to :C drive where there wasn't any media anymore as I have deleted it. Currently it is still in the : D drive and also on an External HDD backed up.
    I would like to know how I am supposed to get iTunes to read the media from the Partitioned drive and also use this drive as its storage drive all the time when purchasing media.
    I am not all that good with this kind of thing as there is only so much I can understand from the internet

    anyone?

  • Still having trouble with reading text file into array

    Hi, This is from another post, I have tried one of the solutions that were provided, but got the following error at runtime:
    C:\j24work>java Test7
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException
    at java.lang.StringBuffer.deleteCharAt(StringBuffer.java:681)
    at Test7.main(Test7.java:26)
    My code is attached. My text file reads as follows:
    7 5.5 15 5.35 30 6.5
    The first , third and fifth numbers should ultimately be int values representing the term of a mortgage. The second, fourth and sixth numbers ultimately need to be doubles representing the rate on a mortgage. Do I need a 2d array??
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.text.*;
    public class Test7 {
        public static void main(String[] args) throws Exception {
            String line        = null;
            int count   = 0;
            StringBuffer Term  = new StringBuffer();
            StringBuffer Rate  = new StringBuffer();
            BufferedReader input = new BufferedReader (new FileReader ("MortgageValues.txt"));
            while ((line = input.readLine()) != null) {
                if(count%2 == 0) Term.append(line).append(",");
                else        Rate.append(line).append(",");
                count++;
            Term.deleteCharAt(Term.length() -1);
            Rate.deleteCharAt(Rate.length() -1);
            System.out.println("Term>>>" +Term);
            System.out.println("Rate>>>" +Rate);
           // input.close ();
        }

    Okay, modify the code as below:
    import java.io.*;
    import java.util.*;
    public class Test7 {
        public static void main(String[] args) throws Exception {
            String line             = null;
            StringTokenizer strTok  = null;
            int count          = 0;
            StringBuffer term  = new StringBuffer();
            StringBuffer rate  = new StringBuffer();
            BufferedReader input = new BufferedReader (new FileReader ("MortgageValues.txt"));
            while ((line = input.readLine()) != null) {
                strTok = new StringTokenizer(line);
                while(strTok.hasMoreTokens()) {
                    if(count%2 == 0)    term.append(strTok.nextToken()).append(",");
                    else                rate.append(strTok.nextToken()).append(",");
                    count++;
            term.deleteCharAt(term.length() -1);
            rate.deleteCharAt(rate.length() -1);
            System.out.println("term>>>" +term);
            System.out.println("rate>>>" +rate);
           input.close ();
    }Cheers!
    ***Annie***

  • Trouble with reader installing on vista gets to 92%

    Do not remember the version I had of adobe reader then it stopped working. I have download several times the new adobe reader. it gets to about 92% downloaded and then freezes up. What cn I do? Thanks

    Try saving the Reader to your desktop by downloading from this link:
    http://tinyurl.com/2qfksc
    If you are on Vista either disable Protected Mode in IE or use Firefox to download.
    Good Luck!

  • I down loaded new version of Lion on my mac and then Icloud for all my other devices and now I am having trouble with my mail

    after downloading latest version of LION I have had trouble with my email boxes on my mac.

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong
    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images, the permissions.default.images pref should be 1.
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.

  • DW MX trouble with loading PDF files

    I'm using Dreamweaver MX on an XP Pro machine and have
    trouble loading pdf documents to my web pages. It cooperates
    intermittently. I'm using a virtual pdf printer to convert word
    documents to pdf, then saving them to my website folder, selecting
    the linking text on my page in DW, using the link box to select my
    pdf document, then saving the page and putting files in both the
    local and remote views.
    This method has worked for me before, and now it's not. Does
    anyone know of a reason for this? The documents are saved
    correctly, as I can get them to open as pdf outside of dreamweaver
    and my webpage...when I click on the link I created online I get
    "page not found."
    Thanks for any help!

    I am having the same trouble with Dreamweaver MX 2004 on
    Mac-OSX since I switched from MacOs9. I still have no solution .
    When I want to export a .pdf file I get a message saying <ftp
    error>.
    I never had problems on Mac Os 9 and it started when using
    the first version of Mac Os X. I am presently using mac Os 10.4.10
    and I am still unable to transfer .pdf files, no matter whether I
    use acrobat or the Mac system to produce the.pdf file.
    When I try the page on my computer the link to the.pdf file
    functions allright, but not on the server as the file cannot be
    transfered to it by the software.
    Does someone know how to solve this ?
    Q]
    Originally posted by:
    milflib
    I'm using Dreamweaver MX on an XP Pro machine and have
    trouble loading pdf documents to my web pages. It cooperates
    intermittently. I'm using a virtual pdf printer to convert word
    documents to pdf, then saving them to my website folder, selecting
    the linking text on my page in DW, using the link box to select my
    pdf document, then saving the page and putting files in both the
    local and remote views.
    This method has worked for me before, and now it's not. Does
    anyone know of a reason for this? The documents are saved
    correctly, as I can get them to open as pdf outside of dreamweaver
    and my webpage...when I click on the link I created online I get
    "page not found."
    Thanks for any help!

  • Trouble with iTunes loading on my mac running OSX 10.9.2

    Lately every time I go to load iTunes, I get a "not Responding" causing me to Force Quit. It seems crazy that this should be a recurring problem. I diligently update everytime something shows up as available. I am getting tired of seeing the "color wheel" spin and spin. Anyone out there with the same/similar problem. But better yet any solutions?
    Thanks for your help

    Log out or restart the computer and try again. If there's no change, see below.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • HT6147 With the latest iOS 7 update (Feb 2014) is anyone else experiencing trouble with the App Store not able even to load updates for existing apps, and unable to download new apps?

    With the latest iOS 7 update (Feb 2014) is anyone else experiencing trouble with the App Store not able even to load updates for existing apps, and unable to download new apps?

    With the latest iOS 7 update (Feb 2014) is anyone else experiencing trouble with the App Store not able even to load updates for existing apps, and unable to download new apps?

  • Why is it that when I am trying to install an adobe product, I get 33% of the way through and then it gives me an error "unable to load metafile"??  It happened with Reader and now with Flashplayer.  With the Reader, I was able to find a different install

    Why is it that when I am trying to install an adobe product, I get 33% of the way through and then it gives me an error "unable to load metafile"??  It happened with Reader and now with Flash player.  With the Reader, I was able to find a different installation link using the troubleshooting guide.  I cannot find the same with flash player.  Please tell me how to install Flash player because there is a website that I cannot even view without it.  BTW That is annoying that I cannot even see the website without flash player
    my system is XP

    Use these installers:
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    Flash Player for Mac OS X
    For Adobe Reader go to http://get.adobe.com/reader/enterprise/

  • I down loaded ios7 and now I'm having trouble with my audio on Skype, does anyone knows how to fix it? Please help!

    WWith the new ios7, I became frustrated in using my iPad3..I'm using Skype as my main communications with my love ones back home,now it seems that ios7 doesn't help me a lot for I'm having trouble with my audio communication coz my family can't hear anything from me.. My skype doesn't have any options or settings that I can check with to see if I can fix it...I need help...please if any of u knows how to fix it..I would greatly appreciate it...

    You can try removing app then reinstalling. If that doesn't work
    Try a Restart. 
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
     Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple. 
    Here is a link to their contacts with most of the information below. 
    http://www.apple.com/contact/

Maybe you are looking for