Clueless -please help

In my control panel, I have two java icons. One is a simple java one with two wisps of flame and it just says Java underneath, the second is a more complex java icon with more flames and Java plug-in 1.3.1_09 underneath. If I right click the first one and open, it opens a Java control panel, though I haven't a clue what to do with it so I have left it well alone. However, when I try to open the second icon, I get an error message saying that the system is missing the following registry item: HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\F3.1_09. In my Add/Remove, I have listed J2SE Runtime Environment 5 Update 1 and Java Web Start only. In Internet Explorer 6, when I go to View, I get Java Console and the following Microsoft (R) VM for Java, 5.0 and various sub-heading underneath like help, clear etc.The only settings for Java from Tools/Advanced involves Microsoft VM: I just have the Java console enabled. Under security, again I have only settings for VM. I haven't got a clue what I'm doing and if the settings are correct, but it would seem to me that what I have downloaded from Java isn't being used and I'm just using VM. When I try to download from the Java site, I am told I have the latest version of whatever.The Add/Remove shows J2SE RE 5 Update 1 as installed -when I click on it I get the install menu again (normal??), but the lack of icons in the Internet Explorer menu obviously means it is not available. I would be very grateful if some kind person could tell me what to do, as I am obviously not using what I've got. Thanks in advance. Rob (technogically clueless)

You have a few issues.
First, it appears that you at one time had Java version 1.3.1_09 installed. I assume it no longer exists, possibly it was manually deleted. If you know that it's gone, you can remove the (leftover and invalid) Windows Control Panel entry. The third item, How do I remove an applet from Control Panel? on this webpage tells you what to do:
http://www.winnetmag.com/Windows/Articles/ArticleID/3057/pg/2/2.html
The remaining Java entry (the one with the two wisps) should be the Java Control Panel that was installed when the version 1.5.0_01 was installed. Check that by opening it and clicking the General tab | About, which should show Version 1.5.0 (build 1.5.0_01-b08).
Second, the Java Web Start entry in the add/remove list is also old and leftover, and should be removed. Java Web Start is now part of Java 5, and it will remain (there is no add/remove entry for it.)
Third, you are correct - IE is currently using the Microsoft Java virtual machine (jvm). To change IE over to use Sun's jvm, open the "two wisps" Java Control Panel | Advanced tab | <APPLET> tag support and check Internet Explorer. This will add a Sun entry to IE's Tools/Advanced list, and also a Sun Java Console entry to IE's Tools menu.
These steps should take care of the problems. If you run into additional problems or questions, the Help and FAQ items at http://www.java.com have a lot of information, and should be reviewed.

Similar Messages

  • Can't load safari! clueless please help!!

    I think my safari has a bug or virus. Netscape is fine, and is providing internet, itunes is fine etc but I can not even open safari. I can not clear out the cache or anything or download new versions of safari, it will not load at all. It just says it has detected an error and shut down and that I can send an error report over and over. I am clueless and need to figure this out...please help!

    Can you get to the 2006-004 Security Update for 10.3.9 if you have not already done so.
    You might find Firefox or Camino more to your liking than Netscape as your alternative to Safari.
    Are you Backed Up. Doing "anything" has a small percentage of making things worse.
    Try going directly to Blue Apple / Mac OS Software and reapply the 10.3.9 Combo Updater. That "may" cure the Safari ill. Reapply has done wonders for many.
    Try going to Apple.com / Downloads if above doesn't work.
    Does it tell you anything else re "a prob' has occured...?"
    Are you ready to upgrade to 10.4? Check on your apps ability to work in 10.4.
    My Best, JP

  • Lost Photos-Feel Clueless-Please Help

    Yesterday I uploaded some photos into iphoto. I looked at them by scrolling through the library and was able to double click on them for editing etc. Later in the day I changed cards in my camera and uploaded more photos. Again everything worked fine. Later on, I found the majority of the earliest batch of photos is completely missing. They appear in the library window but lack any corresponding file in the library folder, modifed folder or data folder. I can see in the iPhoto window that I have a photo called "IMG_ABC," for instance, but searching the computer turns up nothing for "IMG_ABC." In other words, I can see the thumbnail for the photos but all other records of them are lost. Any clues or ideas as to what I might have done or how to fix this? Sorry for the long post.
    G4 Power PC   Mac OS X (10.4.8)  

    badwaiter
    Welcome to the Apple Discussions.
    They appear in the library window but lack any corresponding file in the library folder, modifed folder or data folder.
    What happens when you double click on them in the iPhoto Window? Do they enlarge? Or do you get a ! or ? If you do get those symbols: The ! or ? turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents. The most common cause of this is User Activity in the iPhoto Library Folder. Have you altered, moved or renamed anything in the iPhoto Library Folder?
    If you haven't, then try rebuilding the database. Hold down the apple and option (or alt) keys and launch iPhoto. Use the resulting dialogue to rebuild.
    Alos, what happens if you right-click (or cnrtl-click) on one of the pics and Select 'Show File' from the menu that appears?
    Regards
    TD

  • Please help this clueless beginner with out.print syntax....

    Please help a clueless beginner out!!!! :-)
    I'm trying to build a dynamic table that functions as a calendar...(see http://www.oreilly.com/catalog/javacook/chapter/ch18.html for the basic idea and code structure).
    Here's the problem...I want to make each date inside of the table a hyperlink to a new page. I figured out how to create the hyperlinks, but I CAN'T figure out how to create hyperlinks that pass variables to a new page.
    Here's the code that works:
    // Fill in numbers for the day of month.
    for (int i = 1; i <= daysInMonth; i++)
    out.print("<td>");
    out.print("<a href=newpage.jsp>");
    out.print(i);
    out.print("</a>");
    out.print("</td>");
    Here's the code that DOESN'T work....but can serve as pseudo-code for what I want to do:
    // Fill in numbers for the day of month.
    for (int i = 1; i <= daysInMonth; i++)
    out.print("<td>");
    out.print("<a href=newpage.jsp?year=<%= yy %>&month=<%= months[mm] %>&date=<%= i %>>");
    out.print(i);
    out.print("</a>");
    out.print("</td>");
    <%= yy %>, <%= months[mm] %> are defined elsewhere in the code, and I want to use the current value of "i" from the loop.
    So, if everything works like I want, the table will get created, and if yy=2002 and mm=January, then the hyperlinks will look like:
    for day 1:
    "/newpage.jsp?year=2002&month=January&date=1"
    for day 2:
    "/newpage.jsp?year=2002&month=January&date=2"
    ...for day 31:
    "/newpage.jsp?year=2002&month=January&date=31"
    Can someone please point me in the right direction? Is it even possible to do what I want? (I assume it is...but maybe I can't use out.print???)
    Thanks!

    Hi. The expression "<%=some_Java_expression %>" is the JSP tag, that returns string value to HTML code. You should use it in HTML block like:
    <%String myname="Ivan"; %>
    <body>
    <p>My name is: <%=myname %></p>
    But You tried to use it inside the string expression and it generated some code like this:
    <a href="newpage.jsp?year=<%=yy%">...
    , didn't it?
    It invokes method out.print(" ... "), that prints this string value (but in the HTML block). So You tried to print something inside the print method. You should rewrite Your code like this:
    for (int i = 1; i <= daysInMonth; i++)
    out.print("<td>");
    out.print("<a href=newpage.jsp?year="+yy+"&month="+months[mm]+"&date="+i+">");
    out.print(i);
    out.print("</a>");
    out.print("</td>");
    I used the + operator to join Your code for link tag with the values (yy, months[mm], i.
    I hope it helps You,
    bye.</a>

  • Please, help me learn J2EE...point me out to better tutorials or something!

    Hi,
    Guys, I really need help in trying to learn what J2EE is.
    I've got prior knowledge and experience on Java (I thought), but ever since I came across the terms J2EE, EJB, JNI, JSP, JDBC and all that crap, I now don't know what I actually learnt!
    Please bear with me I beg of you! :)
    1.0: What I've learnt.
    ===============================
    So far, I've learnt (I think) the core/basics of the Java language, covering uhm...the basics up to GUIs, Arrays, IOStreams...yeah I think that's it.
    I code using notepad and compile them using the SDK...which up to now I still don't know if it is an SE or EE edition. It's j2sdk1.4.0 the last time I checked. I didn't use any IDE.
    I've done (school) projects like a Library System (involves loaning of books and charges etc etc), a Chalet Organizer (Loaning out chalets/rooms and charges etc etc) and an Appointment Organizer.
    So what was that which I learnt? Am I right to say that that is only core Java and nothing else and is next to worthless in the working world?
    2.0: Why I want to learn J2EE.
    ===============================
    Okay so why do I want to learn specifically J2EE? Well, most employment opportunities here require J2EE and EJB (and maybe some other alien terms) as prerequisites to being a "Java Programmer".
    I really need the job as soon as possible (for family's sake) and the job market here is already saturated with webmasters..
    3.0: What I have tried.
    ===============================
    Believe me, I tried for like 2 months already to try learn this thing on my own.
    I have followed almost exactly to the J2EE "Beginner's Tutorial" found on http://java.sun.com/j2ee/tutorial/ but no matter how far I read, I'm still just as clueless as I was when I was in my mother's womb about what J2EE is all about, even though I did the examples. I stopped somewhere in the middle of "Getting Started" because I realized I wasn't learning anything at all.
    4.0: Help meeeeeee...
    ===============================
    4.1:
    Can anyone please help me set my head straight and either point me to a REAL beginner's tutorial on J2EE and what the heck it is, or help explain to me slowly what J2EE really is and how to learn it?
    4.2:
    What's the difference between J2EE and J2SE?!? I initially thought that J2SE was simply just a smaller download which didn't include some of the heavier stuff that the EE carried, but boy was I wrong when that same tutorial asked me to install BOTH of them!
    4.3:
    Is it right for me to think that EJB are just files which are precoded to facilitate programming? e.g.:(I could've written up my own Date class instead of using the standard Date class that everybody uses.)
    4.4:
    What the hell is Jakarta Ant? Is it a builder and not a compiler, and may allow me to run built programs just by double-clicking on an e.g. executable? Like C++? So that I don't have to go to command prompt and type "java myApp.class"? (OT, but I think it's ridiculous that Apache has this and not Sun!!)
    4.5:
    Is there a simpler, much much much simpler example of a J2EE tutorial besides the overly vague tutorial "The Duke's Bank Application"? I need more examples of smaller scale maaaan... Better yet, is there a tutorial around that covers the very very very basics of Java all the way up to J2EE, step by step and with ample explanations?
    =========================
    Thanks all, I would really really appreciate any heads up you can provide me with.
    Sincerely, Kai.

    Lee and tsith - same fella -
    Run Tomcat as a standalone critter - the install of the current ver (4.1.12?) on a Windows machine sets it up nicely, and you don't have to worry about web connectors and stuff. Just create a few JSPs and dump them somewhere under the ROOT directory of your webapps directory and you should be able to hit them via a URL like http://localhost:8080/test.jsp (assuming you have it running on port 8080). Once you get your fill of the JSP thing, make a serrvlet and look into creating WAR files - then copy your WAR file into webapps subdirectory of your Tomcat installation and play with that. When you've had enough Servlet fun, then look into JBoss and making EAR files and you'll have all sorts of fun with JNDI and JDBC and all those other acronyms.
    Ant is just a build tool, not a compiler. Compiling simple java classes is no big deal, 'cause you just type javac MyClass.java or some such. But when you get into complicated build processes (like, compile these classes, making sure to include the J2EE jar and all the other jars I need, and create a WAR file, and deploy it to Tomcat) then Ant really helps.
    If you want help documenting your classes, the javadoc tool is for you.
    Lee

  • Mac not working right after software update. Please Help...

    I turned on my computer today and first thing I was asked when I logged in was if I wanted to update my software because there is new updates available. So I click on update so my computer will stay up to date......Well big mistake Now I cant open my itunes, my safari, my quicktime player, or even my Microsoft word, everything is messed up I keep getting "program quit unexpectedly" from everything. I have been trying everything today to get my computer back to normal, but no luck. I have read something about "permissions not being compatible". I have no idea Im clueless I know nothing about computers. Please Help! I made a big OOOOOOps

    It finally powered on after 3 battery pulls, but now it does not make or receive calls (((
    Everytime I connect it to blackberry link it says software update available, so I clicked on install, it said downloading update and then nothing happens, the download bar becomes full then nothing changes
    I also tried to reload device software, i got a message saying checking repair software and it stayed like that for 3 hours then the device rebooted but nothing happened at all
    I even tried redoing the software update from the phone itself 3 times, everytime it would say update successful but the phone would still not make or receive calls
    Please help I dont know what to do....could the problem with blackberry link be that im using it on a mac??
    I appreciate your help

  • Please help, Macbook keeps disconnecting me from internet

    Hello, i just bought my macbook pro. Its a Mac OS X ver. 10.5.7 with a 2.26GHz processor.
    I have a Netgear 54mbps wireless router WGR614 v8 and a Motorola SB5100 SURFboard Cable modem.
    Now the problem im having is with the internet connection with my mac. I live in Virginia and It was working before i went on vacation to tennessee which is an hour behind virginia. It was able to connect with no problems. It was also connecting fine in tennessee as well. But when i came back to Virginia, the mac would connect to my router or atleast say its connected but i can't use the internet at all. I would load either firefox, safari, or itunes store and the page would begin to load and then stop loading in the middle. As if it was freezing, dropping the connection or something. When i look through the airport connectivity, it would stay connected to my router with still no access to the internet. I also checked to make sure i was in the correct time zone with my mac and it was correct.I have a wii, xbox, original pc that are connected to router that operate perfectly. its just my macbook wont connect wirelessly when it used to before i went to tennesse and took it with me. Some of the error messages that i get when i try to use the internet via macbook now are "can't open page because the server unexpectedly dropped the connection" but then minutes later it would connect again, then internet would work. But shortly after it would stop working for a while. and the process continues like a cycle. PLEASE HELP BECAUSE IM CLUELESS. i've looked at many forums but no solution.

    OK, I have been having the same problem. I have been renewing my dhcp every 5 min, so frustrating. I don't if this is the answer but this is the first time in a month I have been able to go for more than 3 hours without having to change anything, plus it seems faster. Instead of resetting your modem and router at the same time, unplug them both. 1st plug in your modem, allow it to fully reboot then plug in your router. Seems to have done the trick, good luck.
    PS. I did clone my mac address in my router settings earlier this week.

  • Please Help, My macbook won't stay connected to internet idk what to do

    Hello, i just bought my macbook pro. Its a Mac OS X ver. 10.5.7 with a 2.26GHz processor.
    I have a Netgear 54mbps wireless router WGR614 v8 and a Motorola SB5100 SURFboard Cable modem.
    Now the problem im having is with the internet connection with my mac. I live in Virginia and It was working before i went on vacation to tennessee which is an hour behind virginia. It was able to connect with no problems. It was also connecting fine in tennessee as well. But when i came back to Virginia, the mac would connect to my router or atleast say its connected but i can't use the internet at all. I would load either firefox, safari, or itunes store and the page would begin to load and then stop loading in the middle. As if it was freezing, dropping the connection or something. When i look through the airport connectivity, it would stay connected to my router with still no access to the internet. I also checked to make sure i was in the correct time zone with my mac and it was correct.I have a wii, xbox, original pc that are connected to router that operate perfectly. its just my macbook wont connect wirelessly when it used to before i went to tennesse and took it with me. Some of the error messages that i get when i try to use the internet via macbook now are "can't open page because the server unexpectedly dropped the connection" but then minutes later it would connect again, then internet would work. But shortly after it would stop working for a while. and the process continues like a cycle. PLEASE HELP BECAUSE IM CLUELESS. i've looked at many forums but no solution.

    I've been having the same problem for the last 2 weeks, because it's a macbook air it's completely useless!
    I spent a tenner on a usb/ethernet cable but it's not Mac Compatable, to buy an official one is going to cost ...god knows. But this machine comes with no superdrive, no ethernet, no adapter for an ethernet. The least they can do is make sure the wifi works! I think I upgraded the OS, but I can't be sure if that coincided with the crap internet speeds.
    I'm really angry now, I don't have the time to take it down to shop, and looking on the internet it appears this is really common problem. It's a beautiful machine, but if I knew it was going to be this much hassle I wouldn't have bothered. This is the first and last time I will buy a mac.

  • Please help. I can't stay connected to internet idk what to do

    Hello, i just bought my macbook pro. Its a Mac OS X ver. 10.5.7 with a 2.26GHz processor.
    I have a Netgear 54mbps wireless router WGR614 v8 and a Motorola SB5100 SURFboard Cable modem.
    Now the problem im having is with the internet connection with my mac. I live in Virginia and It was working before i went on vacation to tennessee which is an hour behind virginia. It was able to connect with no problems. It was also connecting fine in tennessee as well. But when i came back to Virginia, the mac would connect to my router or atleast say its connected but i can't use the internet at all. I would load either firefox, safari, or itunes store and the page would begin to load and then stop loading in the middle. As if it was freezing, dropping the connection or something. When i look through the airport connectivity, it would stay connected to my router with still no access to the internet. I also checked to make sure i was in the correct time zone with my mac and it was correct.I have a wii, xbox, original pc that are connected to router that operate perfectly. its just my macbook wont connect wirelessly when it used to before i went to tennesse and took it with me. Some of the error messages that i get when i try to use the internet via macbook now are "can't open page because the server unexpectedly dropped the connection" but then minutes later it would connect again, then internet would work. But shortly after it would stop working for a while. and the process continues like a cycle. PLEASE HELP BECAUSE IM CLUELESS. i've looked at many forums but no solution.

    Also when i am able to temporarily connect to the internet, it runs super slow and then shortly afterward it looses connection completely. My Mac is no more than 2 feet away from my router and modem

  • IMac G5 HD Won't Boot. Please Help.

    I have an iMac G5 (Power PC) which has been running OS 10.5.8 without any issues until today. 
    When starting, I have a grey screen with the Apple logo, but the wheel beneath keeps turning and the computer will not boot up. I've tried to start it many times, and I just get the grey screen, etc.   P.S.  I do have a Time Capsule connected via Ethernet and Time Machine was active until this problem today.  The TC is disconnected at this point, as I was afraid I'd lose that back up.
    Here is what I tried:
    I disconnected everything except the keyboard and mouse (not internet/modem/Time Capsule)
    I booted from the Leopard Disk, and ran Disk Utility. Message said the the HD appears to be OK
    I booted from Drive Genius and ran the following:
    1.  Repair-Verify:  Message was that HD appears OK
    2.  Repair-Repair:  Message was that HD appears OK
    3.  Repair-Rebuild:  Had a few invalid volumes.  Message was that the Volume Header and HD repaired successfully
    4.  Repair-Preferences;  SAID THERE IS A CORRUPT PREFERENCE:   /bin/sh:xargs:command not found (There was no way that I saw to fix this!)
    5.  Scan for Bad Blocks:  None found
    I tried to start the computer again, but I still get the grey screen, Apple Logo, and constant spinning of the wheel WITHOUT a start.  It appears that the HD is not 'Dead' but has some issue, perhaps the corrupt preference listed.
    So, I need help with my next step. Would any of the following work and if more than one, what order would be best?
    1.  Use the Leopard Install Disk to 'Restore from Time Machine Backup'?  (Never have done this, so I'm clueless)
    2.  Use the Leopard Install Disk and 'Archive and Install' the OS?  Can I do this since the HD has the updates to OS 10.5.8?
    3.  Use the Leopard Install Disk to Erase and Reinstall the OS and then migrate from the Time Capsule (Never have done this either)
    4.  AND, if none of this works, I'm assuming I could go get a new iMac and restore everything from the Time Capsule/Time Machine, even though there the OS in a new machine would be upgraded and also Intel Processor.  Yes?
    In any case....PLEASE HELP if you can.....and THANKS

    Thanks for trying to help with this :-).  I started as you suggested and here are the last few lines:
    Airport: Link down on en1
    Sept 19  17:49:16 jack-cohens-imac-g5 ReportCrash [52}: saved crashreport to /Library/logs/CrashReporter/securityd_2011-09-19-174913_jack-cohens-imac-g5.cra sh using uid: 0gid: 0, euid: 0 egid: 0
    Sept 19  17:49:18 jack-cohens-imac-g5 ntpdate [63]: can't find host time.apple.com
    Sept 19  17:49:18 jack-cohens-imac-g5 ntpdate [63]:  no servers can be used, existing
    Sept 19  17:49:18 jack-cohens-imac-g5 mds [32]: (error) server: mdsync Launch failed: (ipc/rcv) timed out
    Let me know what this means, please.  Also, I have the screen 'up', so I can give you more lines if that'll help.
    Much appreciated.
    Sandie

  • Please help RE retrieval/transfer of imac hard drive to imac Part 2

    Absolutely any assistance would be gratefully appreciated thank you. I am computer illiterate and I need assistance retrieving data from a imac hard drive (rest of computer isn't working) to a newer imac. Previously had received help from the forum and found out I needed an external casing (thank you again to all those that helped), but no shops near me sell them, sales person told me Sata HDD Docking (OTB) would be able to do a similar thing. I really suck with technology, so I humbly ask if any patient persons more intelligent than me could help me with some basic questions to help me retrieve/transfer data. Let me know if I need to give details. Any links to guides or tutorials welcome as well, but I tend to second guess myself and fail at basic terms often, there are probably 6 year olds with better computer skills and knowledge than me, so yeah, pity welcome, help even more so. Oh first question am I still suppose to use Migration Assistent or do I just turn on computer with old HD in dock connected?

    Okay, I apologize for throwing you the following curveball - it appears the shop assistent I was talking to may not have been as knowledgeable as I had hoped, because I don't think my imac is compatible with USB 3.0? I tried putting it into the dock but nothing happened - it gave me four options, transfer from another Mac, transfer from a PC, transfer from a Time Machine (and something else) and forth option was not to transfer now.
    I attempted to transfer from Mac and Time Machine options, but with both the loading dial spun for 10 mins with each with no change. So I decided to try and set up the computer anyway. The internet set up part came up but at the time I didn't know how to set it up, and now with retrospect I assume I have to set that up before I "register this computer" as no hard drive is showing onmy computer at the moment? Sorry for the sudden and strange switch in problems but now that I have set up the internet - could you or anyone else please tell me how I can register the computer details (or why the hard drive icon is not appearing assuming those things are connected - when I did fill those details out before it told me it couldn't send them now and would have to be done later?)
    Sorry for being so clueless - any help appreciated.
    I am looking up my imacs specs now to see if it actually can access this dock. (thank you once again)  

  • Just upgraded to SL, Can't get imail to work.? (newbie) Please help!!

    I keep getting this message. Can someone please help me out. I am totally clueless!!
    *ERROR MESSAGE:*
    _"You can't use this version of the application Mail with this version of Mac OS X.You have Mail 3.6."_

    It works now!
    Here is what I did...
    In spotlight I typed "mail", I opened up a "message", and it opened. I looked on my desktop and there was an "iMail" icon that was not there before. I was then able to access the mail normally as i would with Leopard. I deleted the old shortcut on my desktop and placed the new icon in the lower toolbar.
    Worked as good as new..

  • PLEASE HELP! Adobe Photoshop Elements 8 editor won't open!!

    Hi! I'm new to the forums and to Adobe. So, I'm a little clueless about all this stuff.
    WELL
    everytime I click my Photoshop icon the welcome screen appears and the editor begins to load.
    However, the screen doesn't pop up at all. Just the welcome screen. It just shows the Photoshop Elements editor's small window on the bottom of my screen. I click on it and the editor doesn't show up at all.
    It did this a couple of times before. But, now the editor isn't showing.
    My organizer works just fine, but I'm wondering if I can somehow open Photoshop's editor on the organizer?
    If you could please PLEASE PLEASE HELP ME and reply as soon as possible! I would love to draw  and color on Photoshop again as soon as I have fix this problem!
    Thank you so much!
    -Marley

    Try making a direct desktop icon for the Organizer and Editor and that will bypass the welcome screen and any advertising.
    On Windows right click on the desktop and select New >> Shortcut
    Browse to Computer OS C:
    And find the PSE Organizer application in Program Files or Program Files (x86) on Windows 7 - 64 bit.
    Inside the Adobe >> Photoshop Elements Organizer (yellow folder) you are looking for an application file “PhotoshopEementsOrganizer” with six small icons (e.g. representing thumbnails)
    Select it and click OK
    Click next
    Rename by taking out Photoshop Elements leaving just the word Organizer
    Then click finish
    You should now be able to launch directly form the desktop by double clicking on the icon.
    You can set up a similar direct link to the Editor application (.exe file which has the blue PSE icon). As before take out Photoshop Elements just leaving the description Editor and it will show up clearly on the desktop.
     You can keep the standard Photoshop icon which links to the welcome screen but I prefer to delete it from the desktop. If you ever need to get to the welcome screen you simply click Window >>Welcome on the top menu when the application is open.
     

  • Urgent iMovie 6 Question--PLEASE HELP!!!

    Hey everyone in the Support Community,
    I was recently editing a school project on iMovie 6 (on a Mac OS X Tiger 10.4.11) when the screen just froze. Nothing on the entire screen would respond. So I foolishly pulled the plug on the computer, and when I turned it back on, I was unable to open the movie file. I would double click on the icon, it would load about a third of the way, and then iMovie would quit. Because it always stopped loading and quit at the same point, I figure I corrupted a file by pulling the plug. So, basically, I screwed up an iMovie file and now can't open it.
    (This is where it would always lock up)
    (And here's what happened)
    I am really clueless about what to do. I tried searching web forums, spent a half-hour just trying to brute force it, and even called the Apple Support Hotline (they apparently don't offer assistance for computers/apps as old as mine ) If I haven't been clear enough about the problem, I'd be happy to give any additional information.
    I would super-appreciate any help. This project needs to be completed by this coming Tuesday (it's currently Friday) and I have a couple other guys relying on me to finish up the editing. PLEASE HELP ME!!! I WOULD BE FOREVER GRATEFUL!!!
    -Dannie

    Unless you saved the project it will have become corrupted by that sudden shut-down.
    You may need to re-create the project.
    But first try this:
    Close iMovie. Go to to Home/Library/Preferences and delete the file com.apple.iMovie.plist
    Restart iMovie and reset all your preferences, then try opening that project again.

  • PLEASE HELP - how to read a crash report

    Please help!
    I recently wiped my mid 2010 MacBook Pro clean and rebooted from scratch. I used Time Machine to get my material back up and running and it works fine except it crashed on occasion (1-4x p/week) - I am a professional DJ and I fear it will crash during a gig (fortunately it hasn't yet). I am clueless as to what is happening, however I have copied the crash report and am posting it below. Any and all help would be GREATLY appreciated.
    As for specs, I am running OS X 10.9.1 with an i7 2.66 processor, 8 GB of memory, and a 750 GB hard drive.
    Thanks in advance!
    Anonymous UUID:       49E3B62D-9B24-8BC5-09FB-33DAA0CA5C29
    Mon Mar  3 21:17:23 2014
    panic(cpu 0 caller 0xffffff7f9b77cfac): "GPU Panic: [<None>] 3 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0x0a2910de 0x00100000 0x00000000, BAR0 0xd2000000 0xffffff812d4ac000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.12/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff810a413140 : 0xffffff8019422f69
    0xffffff810a4131c0 : 0xffffff7f9b77cfac
    0xffffff810a413290 : 0xffffff7f99ef853d
    0xffffff810a413350 : 0xffffff7f99fc4d9e
    0xffffff810a413390 : 0xffffff7f99fc4dfc
    0xffffff810a413400 : 0xffffff7f9a2495be
    0xffffff810a413530 : 0xffffff7f99fe8d41
    0xffffff810a413550 : 0xffffff7f99eff08d
    0xffffff810a413600 : 0xffffff7f99efcbae
    0xffffff810a413800 : 0xffffff7f99efdaf6
    0xffffff810a4138e0 : 0xffffff7f9adfaba2
    0xffffff810a413920 : 0xffffff7f9ae0a55f
    0xffffff810a413940 : 0xffffff7f9ae3851b
    0xffffff810a413980 : 0xffffff7f9ae3857b
    0xffffff810a4139c0 : 0xffffff7f9ae0fff5
    0xffffff810a413a10 : 0xffffff7f9addbd3e
    0xffffff810a413aa0 : 0xffffff7f9add7cc7
    0xffffff810a413ad0 : 0xffffff7f9add5816
    0xffffff810a413b00 : 0xffffff80198cb873
    0xffffff810a413b90 : 0xffffff80198cd76f
    0xffffff810a413bf0 : 0xffffff80198cb28f
    0xffffff810a413d40 : 0xffffff80194b6008
    0xffffff810a413e50 : 0xffffff8019426bb1
    0xffffff810a413e80 : 0xffffff80194139b5
    0xffffff810a413ef0 : 0xffffff801941e003
    0xffffff810a413f70 : 0xffffff80194c921d
    0xffffff810a413fb0 : 0xffffff80194f3e26
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.12)[A4934A66-0E30-36E9-984A-650481102449]@ 0xffffff7f9b76f000->0xffffff7f9b781fff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.12)[661E3C87-5B97-3272-88FF-B9BA9B6E2 4ED]@0xffffff7f9b767000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f99d24000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f99aba000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f99e54000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f9b76a000
             com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f99ea7000->0xffffff7f9a116fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f99aba000
                dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f99e97000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f99e54000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.1.8)[3666E0FC-87C7-3329-BD8C-2F1ADE D100A4]@0xffffff7f9a121000->0xffffff7f9a3cdfff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f99ea7000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f99aba000
             com.apple.GeForceTesla(8.1.8)[7DAF283F-6FD3-3783-B3CC-D23964F1B9B8]@0xffffff7f9 adba000->0xffffff7f9ae84fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f99aba000
                dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f99e97000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f99e54000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f99ea7000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000019200000
    Kernel text base: 0xffffff8019400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 1827669571313
    last loaded kext at 253114324646: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f9b87f000, size 65536)
    last unloaded kext at 313525964965: com.apple.filesystems.msdosfs          1.9 (addr 0xffffff7f9b87f000, size 57344)
    loaded kexts:
    com.serato.usb.kext          2.3.0
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.14.11
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleHDA          2.5.3fc1
    com.apple.GeForceTesla          8.1.8
    com.apple.driver.AppleMikeyDriver          2.5.3fc1
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleMuxControl          3.4.12
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleIntelHDGraphics          8.1.8
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.8
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleIRController          325.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.iokit.SCSITaskUserClient          3.6.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.4.0
    com.apple.driver.AppleUSBHub          650.4.4
    com.apple.iokit.AppleBCM5701Ethernet          3.6.9b9
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          2.0
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.kext.triggers          1.0
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.driver.DspFuncLib          2.5.3fc1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.4fc11
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.nvidia.classic.NVDANV50HalTesla          8.1.8
    com.apple.nvidia.classic.NVDAResmanTesla          8.1.8
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.AppleGraphicsControl          3.4.12
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.driver.AppleHDAController          2.5.3fc1
    com.apple.iokit.IOHDAFamily          2.5.3fc1
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.driver.AppleUSBMultitouch          240.6
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          650.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.0
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.iokit.IOEthernetAVBController          1.0.3b3
    com.apple.driver.mDNSOffloadUserClient          1.0.1b4
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBFamily          650.4.4
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          21
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    com.apple.kec.pthread          1
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST750LX003-1AC154, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Internal Memory Card Reader
    USB Device: Hub
    USB Device: Built-in iSight
    USB Device: IR Receiver
    Thunderbolt Bus:

    Quadi_414,
    some 15-inch Mid 2010 MacBook Pros are known to have a defective NVIDIA GPU. Your GPU panic suggests that yours could be one of them. Apple had a gratis servicing program for this defect for three years from the date of purchase; they still offer the servicing program, but it is no longer guaranteed to be gratis.

Maybe you are looking for

  • The format of XML file returned from web service

    Hi everyone, My web service (build in asp.net 2.0 with C#) returns the following xml file which is not what I want. <Root> <Root2> <Person> .... </Person> <Person> .... </Person> <Person> .... </Person> </Root2> </Root> But I want my web service to r

  • Connection problem zd1211 with rc.conf

    Hi! I have had some problem with wireless network configuration (on my girlfriend pc). With zd1211 drivers the wireless configuration through rc.conf doesn't work, sometimes iwconfig shows AP not associated and sometimes apparently everything is OK b

  • Forcing a cookie into the reponse header

    Hi,           We're proxing responses from another app server in our own "proxy" servlet.           We have our own cookie parsing code,           and so we know what the cookie response header values need to be for each           cookie. The problem

  • If I want to collect my email and calander by Acti...

    If I want to collect my email and calander by Activesync over gprs which Nokia phone do I get? I have to connect to our in house Exchange sever. I can do this on the rubbish SPV phone that they gave me but I mant to use a Nokia. I alreasy have two Se

  • Late 2009 iMac firewire issue

    I have tried installing an M Audio project mix on my late 2009 imac and its not recognised, tech support seems to think its the FireWire input on the mac. If I buy a repeater hub, will this work? I have the correct drivers and firmware yet its not wo