Need help, no idea what's wrong...

Hi, ummm i'm really not expierenced with this computer stuff... all I know is I hadn't used my ipod mini in a while and I updated the software for itunes/quicktime. Now itunes seems to work fine, but everywhere quicktime should run stuff... it just gives the q with a question mark...
I have read the other posts that are a little like mine, but the answers don't make any sense...
I'm not very computer literate, so if anyone can help can you please use terms I would understand... Oh I also tried unistalling quicktime and installing it by itself... that didn't seem to help anything...
Thanks so much!!!
Windows XP   Windows XP  

I really don't know why it's not working for you. Can you post a website where your getting this?
Firefox>Tools>Options>Downloads>Plug-Ins
Is a firewall blocking
Does the version of Flash Player need to be updated
http://www.macromedia.com/software/flash/about/
Or check out Flash Player knowledge base
http://kb.mozillazine.org/Macromedia_Flash

Similar Messages

  • 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

  • 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.

  • OMB Script: Need help to spot what's wrong

    I have been trying to find out why the outer foreach loop in the following OMB script (log follows) doesn't go to the next iteration. It just exits after getting the lineage for the first target table (i.e., stderr has nothing). Same behavior against different modules. I am too new to Tcl to know what debugging tool is at my disposal. Any help will be appreciated:
    set OMBLOG c:/temp/Lineage.tcl.log
    # connect to the OWB repository
    OMBCONNECT xxx/xxx@xxx:1521:xxx USE REPOSITORY 'OWB_REP_OWN';
    # change context to the module
    OMBCC 'xxx/xxx/xxx';
    set tableList {}
    set tableList [OMBLIST TABLES '.*_FINAL']
    set i 1
    foreach tableName $tableList {
    set columnList {}
    set columnList [OMBRETRIEVE TABLE '$tableName' GET COLUMNS]
    set j 1
    foreach columnName $columnList {
    OMBLINEAGE DEPENDENCYTYPE 'DATAFLOW' TABLE '$tableName' COLUMN '$columnName';
    incr j
    incr i
    OMBDISCONNECT;
    The first few lines on the log are:
    OMBLIST TABLES '.*_FINAL'
    AE_FINAL CM_FINAL CO_FINAL DA_FINAL DM_FINAL DP_FINAL DS_FINAL DV_FINAL EG_FINAL EX_FINAL IE_FINAL LB_FINAL LS_FINAL MH_FINAL ML_FINAL PC_FINAL PE_FINAL PP_FINAL PR_FINAL QS_FINAL RELREC_FINAL RS_FINAL SC_FINAL SG_FINAL SS_FINAL SUPPAE_FINAL SUPPDS_FINAL SUPPMH_FINAL SUPPPE_FINAL SUPPQUAL_FINAL SU_FINAL VS_FINAL
    OMBRETRIEVE TABLE 'AE_FINAL' GET COLUMNS
    STUDYID DOMAIN USUBJID AESEQ AEGRPID AEREFID AESPID AETERM AEMODIFY AEDECOD AECAT AESCAT AEOCCUR AEBODSYS AELOC AESEV AESER AEACN AEACNOTH AEREL AERELNST AEPATT AEOUT AESCAN AESCONG AESDISAB AESDTH AESHOSP AESLIFE AESOD AESMIE AECONTRT AETOXGR AESTDTC AEENDTC AESTDY AEENDY AEDUR AEENRF VISITNUM VISIT OCTA_SEQ
    OMBLINEAGE DEPENDENCYTYPE 'DATAFLOW' TABLE 'AE_FINAL' COLUMN 'STUDYID'
    {{COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID} {MAPPING /xxx/xxx_C0402_DEV/AE_FINAL_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_FINAL/STUDYID}} {{ATTRIBUTE /xxx/AE_AE_PM/PROT} {MAPPING /xxx/xxx_C0402_DEV/AE_INTERIM_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID}} {{COLUMN /xxx/xxx_C0402_DEV/AE_SOURCE/PROT} {MAPPING /xxx/xxx_C0402_DEV/AE_INTERIM_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID}} {{ATTRIBUTE /xxx/AE_AE_PM/PROT} {MAPPING /xxx/xxx_C0402_DEV/AE_INTERIM_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID}} {{COLUMN /xxx/xxx_C0402_DEV/AE_SOURCE/PROT} {MAPPING /xxx/xxx_C0402_DEV/AE_INTERIM_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID}} {{ATTRIBUTE /xxx/AE_AE_PM/PROT} {MAPPING /xxx/xxx_C0402_DEV/AE_INTERIM_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID}} {{COLUMN /xxx/xxx_C0402_DEV/AE_SOURCE/PROT} {MAPPING /xxx/xxx_C0402_DEV/AE_INTERIM_MAP} {COLUMN /xxx/xxx_C0402_DEV/AE_AE_INTERIM/STUDYID}} {{COLUMN /xxx/xxx_DEV/AE_SOURCE/PROT} {MAPPING /xxx/xxx_DEV/AE_INTERIM_MAP} {ATTRIBUTE /xxx/AE_AE_PM/PROT}}

    I haven't looked in too much detail, but I think you are missing some brackets. You need to close brackets before you increment the loop. Try:
    foreach columnName $columnList {
    OMBLINEAGE DEPENDENCYTYPE 'DATAFLOW' TABLE '$tableName' COLUMN '$columnName';}
    incr j
    You will need to do the same thing at the other points in your script.

  • Tried synching iphone for the first time on new PC and got error followed by itunes logo and USB cable picture. No idea what went wrong and now phone is in this screen locked. please help!

    tried synching iphone for the first time on new PC and got error followed by itunes logo and USB cable picture. No idea what went wrong and now phone is in this screen locked. please help!

    I tried connecting to iTunes and neither the PC nor iTunes recognizes the device. I went through all the troubleshooting on the Apple website for this issue and nothing worked. I've reinstalled iTunes, the driver, everything and still can't get either the PC or iTunes to recognize the phone.  I don't know what else to do :-( any help or suggestions are highly appreciated!
    I would hate to have lost all my info, especially contacts and calendar items since I have no idea what was backed up prior to the phone getting locked on this screen. I've been told that my only option is to go to the phone carrier and they will reset it for me, but that means it will wipe out all the info.
    I hope someone has a fix other than that one.

  • My buttons and screen work, but I can't activate the screen to see what I'm doing.  Any idea what is wrong?

    My buttons and screen work, but I can't activate the screen to see what I'm doing.  This is after water damage.  Any idea what is wrong?  I'm not sure what to fix..
    I know the screen works because when it first turned on I saw the apple logo and then the screen.  If I hold the home and power button, I see the apple logo when it resets.  Then it goes blank again.
    I can hear when I get a call and pick up, and I can stop the sound and/or decline the call with the power button and side buttons.  It also still vibrates.  I'm confused - if the screen works, the buttons work, it vibrates, makes sound, and the touchscreen feature also works...  what is wrong for me to fix?  Why can't I see anything?!
    I appreciate any help anybody has to offer!!!

    I apologize for the confusion.  This was literally the only option on Apple's "Contact Us" section that I was able to access.  I assumed that Apple's clear intent to have me go here instead of speaking with someone in live time, and the fact this is on the Apple website, meant I could get some advice...  Both over the phone and online they require information I need to see my screen to provide so those are not options.  I tried to bypass this when calling through Skype.  Some lady who didn't know what was going on, who I waited a good while to speak with, put me on hold; I gave up after 30minutes of waiting to speak to somebody again.
    I've stumbled upon a few tricks to help me get through this problem, but I'm at a loss.  I need this phone to work until late December.  I need more tricks.  So yes, it's worth understanding.  Knowing what is going on will let me Google it and work with it, if nobody here is willing to help...
    And yes, it IS a glitchy phone.  It has been a glitchy phone for a long time.  Long before this. But completely unrelated issues.  I was assuming this wasn't just a glitch but something maybe somebody could help me understand.

  • HT1351 my iphone will no longer sync music remains stuck on  'step 6 of 6', I have left it for 1,5 hrs any ideas what is wrong ?  THere is  4.6 GB  space left!

    My iphone will not sync music, I have done it many times before , there is 4,6  GB space it just remains stuck at step 6 of 6 for over an hour, any ideas what is wrong?

    You may need to do a Restart or Reset
    http://support.apple.com/kb/ht1430

  • Continue to get this error on a site I use every day - "WebSpeed error from messenger process (6019) Msngr: the specified service name does not exist or has a bad format. (5825):" Any ideas what's wrong?

    I've tried clearing the browser cache and restarting the computer, but nothing helps. No idea what's wrong. Any ideas?

    You also could delete any saved cookies for that site:
    While viewing a page on the site, right-click and choose View Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    When I search this error message, I find threads indicating it is a problem on the web server, and there's not much a user can do to fix it. For example:
    http://www.fixya.com/support/t2835936-webspeed_error_from_messenger_process
    You could try to confirm that diagnosis by using a different browser or a different computer.
    If it persists, you probably should complain to the site. Perhaps they are aware of some add-on conflict or other browser configuration issue that affects Firefox users specifically.
    Edit: When I visit the site's root address, within about 5 seconds I get the error. But links I visit from Google results (site:hachik.com) work fine, e.g., http://www.hachik.com/about.html So there is something about the dynamic navigation that is broken.

  • TS1424 I keep getting a message that my ID has been disabled when trying to download an app. I have changed password I with apple. Any ideas what is wrong?

    I keep getting a message that my ID has been disabled when trying to download an app. I have changed password with apple. Any ideas what is wrong?

    If you've changed your password and it still shows disabled then try logging out of your account on the iPad by tapping on your id in Settings > iTunes & App Stores and then log back in and see if that 'refreshes' the account on it
    If that doesn't fix it then you might need to contact iTunes Support :  http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • After the recent iPhoto upgrade, I've completely lost access to the application and my photos and it says that its not supported on this version of Mac. Any idea whats gone wrong?

    After a recent upgrade, I've completely lost iPhotos and all my pholto files.
    It now comes up with 'You cant open the application iPhoto because it is not supported on this type of Mac'
    Any ideas whats gone wrong?

    Reinstall it:
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.

  • I have no idea what's wrong!

    the other day i was listening to my ipod and it started skipping a couple songs- but then it stopped.I also listened to it last night and it was just fine but the battery was almost dead. So today before i was getting ready to go out, I went up to the computer and my brother was logged on to his account and he said that when his mp3 player was done that he would plug in my ipod to charge it. About an hour later i went up to the copmuter to check on it and i found that it was just sitting there, plugged in to the computer, but the battery was still almost dead and the charging icon hadn't appeared or anything and the backlight had gone off. I tried to turn the hold on and off, turn the ipod off all together, and nothing would move, the backlight wouldn't even turn on, so i went to apple.com and tried the "r's" thing and it didn't help because i couldn't get the ipod to do anything at all. After awhile i had been sitting there trying to get it to at least move or get the hold icon to go off, but nothing would happen and then i still had it plugged into the computer and the computer started to beep, and it did a couple of times, and then i unplugged the ipod and it stopped, but my ipod is still frozen, and the time is frozen at 12:45, and it is now about 2:15 and i have no idea what is wrong or what i should do!and also i think it may hav something to do with my computer because the keyboard is pushing things and i'm not even touching it. so if you have any thing i could do please help me!!!-thanks
    <3-ashley-<3

    What's the icon on the screen along with the support site address?
    Sad faced iPod:
    http://docs.info.apple.com/article.html?artnum=61771
    File folder with exclamation point:
    http://docs.info.apple.com/article.html?artnum=61003
    Apple logo:
    http://docs.info.apple.com/article.html?artnum=61584
    Try these first... then look into the other website that was posted.
    Best wishes,
    CG

  • TS3276 An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    For anyone else reading this thread, it is worth knowing that sometimes an email is, or can be, corrupted thereby jamming the works. The solution above is good, but I just wanted to suggest another one.
    If the problem arises, go to an online mail access service, such as Mail2Web.com and login to you mail account there and delete the offending message.
    Problem solved.
    And George, as this is all entirely voluntary, whinging about no takers may not endear people to you. Besides which, a few minutes of searching on Google would have found you a number of solutions.

  • TS1702 i downloaded the GV app to my iphone but i'm trying to set up the app and it says it can't connect to google when i try to sign in to my google account.... any ideas what's wrong? i can access my gmail account just fine with my gmail app on the sam

    i downloaded the GV app to my iphone but i'm trying to set up the app and it says it can't connect to google when i try to sign in to my google account.... any ideas what's wrong? i can access my gmail account just fine with my gmail app on the same phone

    What's a GV app?

  • My ipod touch has stopped playing through my Sony docking station, It only plays through i pod. It's not the docking station as my daughter's ipod works fine on it. It can synch when connected to computer. Any ideas what is wrong?

    My ipod touch has stopped playing through my Sony docking station, It only plays through the i pod. It's not the docking station as my daughter's ipod works fine on it. It can synch when connected to computer. Any ideas what is wrong?

    Have  discovered that I had not in fact updated the ios!!
    Went through the process last night and my ipod now works fine on my docking station.
    Thank you very much for your advice.

  • Trying to update Mac OS X 10.8.5 on a Mac Pro 2010 platform.  The App Store starts the downloading, than stops.  Error (102).  Any idea what goes wrong?  Thx

    Just installed Mac OS X 10.8.5  on a Mac Pro 2010 platform. 
    The App Store shows there is an upgrade, so I click the download button. 
    After about 2 hrs the process stops and an  Error (102) appears on the screen. 
    Any idea what goes wrong? 
    THX

    You just now installed 10.8.5? Did you purchase that at the app store?
    What is the upgrade being offered?
    FWIW, you are not running iOS on a Mac Pro (we are talking about the desktop tower Mac Pro, right?)

Maybe you are looking for

  • Search by Name/People Broken in Local Folders

    Hi All, I've got a very annoying problem which is rendering the most powerful feature (IMO) of Mail somewhat useless... search.  I know this occurs on other machines running Mavericks as well.  The inbox refered to below is on an Exchange 2007 server

  • Creating a device type for Chinese Simplified

    Hello Gurus , i have a question regarding Device types. We recently bought a Chinese Simplified Font Flash USB and we installed it on an HP Laserjet 4515. In windows mode the printer is printing chinese correctly . But in SAP i didnt found how to mak

  • Adobe CS4 Web Premium - Adobe updater "there are no updates available at this time"

    I have done a clean install of Adobe CS4 Web Premium via the orginal DVD media. Straight after I go to adobe updater to update the products, but it just says "there are no updates available at this time." at First I thought this might be mcafee hips

  • Regarding search help restrictions...

    Hi Experts, I have created search help with dialog type C (i.e Dialog with restrictions).  As soon as user hits F4 on particular field , it will give pop-up with restriction count. I want to set restrict count by default 10 instead of 500. How can we

  • WLS7 JMS Max Message Size

              I have done a search and found many questions on Max Message size, but I didnt           find any relating specifically to WLS7.           Q1: Is there a JMS Message Size limit the same as the T3 Max Message size?           Q2: Does the WLS