HT204347 I need to find out what is wrong with my Macbook Pro. I have Adobe Reader installed on it and Adobe Flashplayer installed on it. I am not able to do anything with either of these programs, no videos, printing certificates, etc.

I have adobe reader installed on my Macbook Pro and also Adobe flashplayer installed. I am not anble to see any video from the net, news feeds, or anything like that on my computer. I cannot print off certificates that I need all it does when I attempt to print the certificate is that it shows that it is loading and comes back and tells me there was an error in loading the information. I would appreciate any help I can get. Thanks
Very Respectfully
Steven Hetletvedt

SMC Reset - check http://www.apple.com/support/macpro
Clean out the insides and especially the graphic card.
Both the 7300GTs could be failing, or X1900 with heat and dust (and causing the system fans to work harder)
Disk Warrior maintenance along with SuperDuper
Apple Hardware Test

Similar Messages

  • Final attempt to find out what's wrong with my pin...

    This is my final attempt to find out what is wrong with my ping.
    When I try and play online games, they become completely unplayable because very frequently but randomly the ping/latency (ping = milliseconds a request from your pc takes to get to server) spikes up from 20ms to 600ms! This makes it unplayable...
    It happens on wired and wireless, any idea what's wrong?

    pippincp wrote:
    A tracert would help. In windows 7 click the orb and enter cmd in the search box, open the cmd.exe and in the window type tracert bbc.co.uk post back a screenshot of the result.
    Then access the HH5 and copy lines 1-12 in troubleshooting/helpdesk and post here.
    Here's the tracert result to bbc http://pastebin.com/V4PKfksL
    But you have to rememeber when i'm playing the http://pastebin.com/3hmGHS9K
     Here's the helpdesk:
    1. Product name:
    BT Home Hub
    2. Serial number:
    +068343+NQ34341979
    3. Firmware version:
    Software version 4.7.5.1.83.8.173.1.6 (Type A) Last updated 15/01/14
    4. Board version:
    BT Hub 5A
    5. VDSL uptime:
    0 days, 11:30:25
    6. Data rate:
    15142 / 69665
    7. Maximum data rate:
    15041 / 68761
    8. Noise margin:
    5.9 / 6.2
    9. Line attenuation:
    0.0 / 18.5
    10. Signal attenuation:
    0.0 / 18.5
    11. Data sent/received:
    485.9 MB / 1.6 GB
    12. Broadband username:
    [email protected]

  • I need help figuring out what is wrong with my Macbook Pro

    I have a mid 2012 Macbook Pro with OS X Mavericks on it and for the past few weeks it has running VERY SLOW! I have no idea what is wrong with it, i have read other discussion forums trying to figure it out on my own. So far i have had no luck in fixing the slowness. When i open applications the icon will bounce in dock forever before opening and then my computer will freeze with the little rainbow wheel circling and circling for a few minutes... and if i try to browse websites it take forever for them to load or youtube will just stop working for me. Everything i do, no matter what i click, the rainbow wheel will pop up! The only thing i can think of messing it up was a friend of mine plugging in a flash drive a few weeks ago to take some videos and imovie to put on his Macbook Pro, he has said his laptop has been running fine though... so idk if that was the problem. Anyways, could someone please help me try something? Thank you!!

    OS X Mavericks: If your Mac runs slowly?
    http://support.apple.com/kb/PH13895
    Startup in Safe Mode
    http://support.apple.com/kb/PH14204
    Repair Disk
    Steps 1 through 7
    http://support.apple.com/kb/PH5836
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Increase disk space.
    http://support.apple.com/kb/PH13806

  • How do I find out what's wrong with my sound card?

    I just tried to watch/listen to a video on Youtube and no sound was produced. I tried multiple other vidoes and the same thing happened. Then I opened Spotify to see if that would work, and it didn't, but it said that something was wrong with my sound card. I'm not sure exactly what that means, so if someone could potentially help me that would be great! My pro is about 8 months old so it should be having all these malfunctions (there have been others...)
    On a side note, iTunes wouldn't even open due to "an unknown error".

    Try these:
    for some of your issues, open disk utility and verify your disk permissions - repair if needed. might take an hour or less depending on how much errors needs to be repaired....once done, restart your macbook....
    for your sound issue - do a PRAM/NVRAM reset....
    good luck....hope you get it sorted out....

  • I cant use my areplay it keeps giving me a error occurred loading this content try again latter i would like to find out what is wrong with it please

    i just want to know what s going on with it it worked good when i bought it and it has been only a couple of month that i have had it

    I have the same problem I use a BT home hub the old white one and a iPad 4 if I reboot the hub it works ok for pics and some I player content then when I try to load a certain program it crashes and I need to reboot the hub again. Is this a problem with the hub?

  • Need help figuring out what's wrong with my code!

    I am having a few problems with my code and can't see what I've done wrong. Here are my issues:
    #1. My program is not displaying the answers to my calculations in the table.
    #2. The program is supposed to pause after 24 lines and ask the user to hit enter to continue.
    2a. First, it works correctly for the first 24 lines, but then jumps to every 48 lines.
    2b. The line count is supposed to go 24, 48, etc...but the code is going from 24 to 74 to 124 ... that is NOT right!
    import java.text.DecimalFormat; //needed to format decimals
    import java.io.*;
    class Mortgage2
    //Define variables
    double MonthlyPayment = 0; //monthly payment
    double Principal = 200000; //principal of loan
    double YearlyInterestRate = 5.75; //yearly interest rate
    double MonthlyInterestRate = (5.75/1200); //monthly interest rate
    double MonthlyPrincipal = 0; //monthly principal
    double MonthlyInterest = 0; //monthly interest
    double Balance = 0; //balance of loan
    int TermInYears = 30; //term of loan in yearly terms
    int linecount = 0; //line count for list of results
    // Buffered input Reader
    BufferedReader myInput = new BufferedReader (new
    InputStreamReader(System.in));
    //Calculation Methods
    void calculateMonthlyPayment() //Calculates monthly mortgage
    MonthlyPayment = Principal * (MonthlyInterestRate * (Math.pow(1 + MonthlyInterestRate, 12 * TermInYears))) /
    (Math.pow(1 + MonthlyInterestRate, 12 * TermInYears) - 1);
    void calculateMonthlyInterestRate() //Calculates monthly interest
    MonthlyInterest = Balance * MonthlyInterestRate;
    void calculateMonthlyPrincipal() //Calculates monthly principal
    MonthlyPrincipal = MonthlyPayment - MonthlyInterest;
    void calculateBalance() //Calculates balance
    Balance = Principal + MonthlyInterest - MonthlyPayment;
    void Amortization() //Calculates Amortization
    DecimalFormat df = new DecimalFormat("$,###.00"); //Format decimals
    int NumberOfPayments = TermInYears * 12;
    for (int i = 1; i <= NumberOfPayments; i++)
    // If statements asking user to enter to continue
    if(linecount == 24)
    System.out.println("Press Enter to Continue.");
    linecount = 0;
    try
    System.in.read();
    catch(IOException e) {
    e.printStackTrace();
    else
    linecount++;
    System.out.println(i + "\t\t" + df.format(MonthlyPrincipal) + "\t" + df.format(MonthlyInterest) + "\t" + df.format(Balance));
    //Method to display output
    public void display ()
    DecimalFormat df = new DecimalFormat(",###.00"); //Format decimals
    System.out.println("\n\nMORTGAGE PAYMENT CALCULATOR"); //title of the program
    System.out.println("=================================="); //separator
    System.out.println("\tPrincipal Amount: $" + df.format(Principal)); //principal amount of the mortgage
    System.out.println("\tTerm:\t" + TermInYears + " years"); //number of years of the loan
    System.out.println("\tInterest Rate:\t" + YearlyInterestRate + "%"); //interest rate as a percentage
    System.out.println("\tMonthly Payment: $" + df.format(MonthlyPayment)); //calculated monthly payment
    System.out.println("\n\nAMORTIZATION TABLE"); //title of amortization table
    System.out.println("======================================================"); //separator
    System.out.println("\nPayment\tPrincipal\tInterest\t Balance");
    System.out.println(" Month\t Paid\t\t Paid\t\tRemaining");
    System.out.println("--------\t---------\t--------\t-------");
    public static void main (String rgs[]) //Start main function
    Mortgage2 Mortgage = new Mortgage2();
    Mortgage.calculateMonthlyPayment();
    Mortgage.display();
    Mortgage.Amortization();
    ANY help would be greatly appreciated!
    Edited by: Jeaneene on May 25, 2008 11:54 AM

    From [http://developers.sun.com/resources/forumsFAQ.html]:
    Post once and in the right area: Multiple postings are allowed, but they make the category lists longer and create more email traffic for developers who have placed watches on multiple categories. Because of this, duplicate posts are considered a waste of time and an annoyance to many community members, that is, the people who might help you.

  • How can I find out what is wrong with swap image in a library

    I had a DW8 site that used  a library item on many pages with the calls to the macromedia swap image function.  Everything was fine.
    I've now converted to CS5.5 and I find that:
    a) When the library item is changed, the updated pages don't have proper local relative paths. Instead they have the exact path in the library item itself.
    b) I can't detatch the library item from a page, I get:
    An error occured while loading behavior "Swap Image" Please check this file and associated JavaScript files for errors.
    When OK'd this is followed by
    Dreamweaver encountered an improper argument.
    I went back to DW8, forced a library update and everything was fine.  I've checked and so far as I can see, the swap image funtion is identical in the DW8 and CS5.5 versions.
    I don't know if a and b are related, 

    An example page with the associated files that might be involved in this
    problem are copied into dummy files on the customer's site:
    http://valeriewilding.co.uk/queens2.htm
    http://valeriewilding.co.uk/vwqueens.js
    http://valeriewilding.co.uk/topNavQueens.lbi
    The equivalent working files (from DW8) on the site are
    http://valeriewilding.co.uk/queens.htm
    http://valeriewilding.co.uk/vw.js
    The library file is not normally on the site and, if it was, it would be in
    the library directory which could not normally be reached from the htdocs
    folder.  Going back to DW8 as a workaround has solved problem (a) - the path
    error - but downloading these files into a CS5.5 environment should still
    show problem (b), being unable to remove the attachment.
    There is a second library item on the page, the bottom navigation, and this
    can be detached without problem.
    The folder structure on my PC is:
    htdocs
    --- queens2.htm
    --- vwqueens.js
    Library
    --- TopNavQueens.lbi

  • I just formatted my hard drive and I need to find out what my "wireless password is"

    I just formatted my hard drive and I need to find out what my "wireless password is". I was in a hurry when I did format my PC that when I got to given my wireless a password, I used the same one as before. Now I have tried to finding what it is for my other products, I don't know where to look. Do I or can I change the password without losing anything? Need help PLEASE
    [Personal Information Removed]

    Hi:
    You need to read your router's configuration instructions on how to access the router's menu.
    Hopefully you can access that and in the wireless security menu you will find the passkey to use.
    Paul

  • Need to find out what has been modified to running-config

    Hello,
    When I enter the "reload" command, Cisco ASA 5510 asks me
    a question: System config has been modified Save? [Y]es/[N]o:
    All I did was issuing a few "show" commands before the "reload" command. I definitely need to find out what
    has been modified before the reboot
    Is there any way to find out what has been modified to the running configuration.
    Thanks!

    If you want to know when changes are made, but don't want to setup TACACS (and you have a syslog server setup), you can have the router syslog all commands entered while in config mode:
    devcorert01#conf t
    devcorert01(config)#archive
    devcorert01(config-archive)#log config
    devcorert01(config-archive-log-cfg)#hidekeys
    devcorert01(config-archive-log-cfg)#logging enable
    devcorert01(config-archive-log-cfg)#notify syslog
    Anytime someone enters any command while in config mode, the command will be sent to your syslog server.
    Examples:
    Jul 21 10:15:41 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:console logged command:do sh run
    Jul 21 10:17:33 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:console logged command:interface GigabitEthernet2/2
    Jul 21 10:17:38 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:console logged command:shutdown
    Jul 21 10:17:42 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:console logged command:no shutdown
    Note the "do show run". Even thought that is not a config command per se, it was entered while in config mode. Also notice the user is "console". If it was from a telnet session, you would see
    Jul 21 10:17:33 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:unknown user logged command:interface GigabitEthernet2/2
    Jul 21 10:17:38 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:unknown user logged command:shutdown
    Jul 21 10:17:42 EDT: %PARSER-5-CFGLOG_LOGGEDCMD: User:unknown user logged command:no shutdown
    Mike

  • I need to find out what a charge was for?

    I need to find out what a charge was for on my account?

    Check your Purchase History
    http://support.apple.com/kb/ht2727

  • I need to find out what my key code is to connect another pc to my airport, I am running snow leopard. I need the hexidecimal code, 12 characters. How can I find it?

    anybody have a suggestion? I need to find out what my key code is to connect another pc to my airport, I am running snow leopard. I need the hexidecimal code, 12 characters. How can I find it?

    You can get the Equivalent Network Password from the menu options of the AirPort Utility as follows:
    Start the AirPort Utility; select the AirPort, and then, select Manual Setup.
    From the Utility's menu bar, select Base Station, and then, Equivalent Network Password to reveal the hexidecimal key code.

  • HT201363 how can i find out what was ordered in my itunes account, i have some charges that i do not recognize

    how do i find out what was ordered in my itunes account, i have some charges that i do not recognize. i have multiple devices on the same account.

    Hello, chunnyb. 
    Thank you for visiting Apple Support Communities. 
    Here are the steps on how to view your purchase history in iTunes. 
    iTunes Store: See your purchase history and web order numbers
    http://support.apple.com/kb/ht2727
    If you need to report and issue with a purchase, see the article below. 
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Cheers,
    Jason H. 

  • I want to buy a hard case for my macbook pro, but I don't know what year it is. When I use the serial number to try and find out, all it says is, "~VIN,MacBook Pro (15-inch Glossy)". When I type that into amazon for a case it gives me nothing!

    I want to buy a hard case for my macbook pro, but I don't know what year it is. When I use the serial number to try and find out, all it says is, "~VIN,MacBook Pro (15-inch Glossy)". When I type that into amazon for a case it gives me nothing!

    Hi T,
    Either of these will give you the info you seek:
    http://www.appleserialnumberinfo.com/Desktop/index.php
    http://www.chipmunk.nl/klantenservice/applemodel.html

  • Film won't render. Error is like: error in frame 3490. How do I find out what is wrong? How can i find the frame numbers?

    Hello
    Who can help me? I made a movie in Final Cut. Not a special one, some text and that's all. With scenes from mu Sony camera, I imported. When i want to share the movie (to facebook, youtube, or masterfile), it won't work. It loads upto 57% or so and that it quits, and gives error code:
    the operation could not be completed because an error occurred when creating frame 3490 (error -1).
    And now? I can't find framenumbers? How can i find out what's wrong. I tried everything. The film plays well in playback. I just can't make a filmfile.
    Xandra Storm

    Like Tom said, you can locate the offending frame by switching in Preferences->General the Time Display to "Frames" (that is how it looks in 10.1; I believe that in older versions the same preference might be in Edit or Playback preferences, I can't recall exactly).
    When this error occurs, it can usually be solved by deleting render files, or by replacing the clip where the problematic frame happened.

  • Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    1. Use the mouse to select the field and then press the space bar.
    2. A null string is the same as zero. What is the result for division by zero?

Maybe you are looking for