Strange thing just happened...

I was using my Macbook and I just exited WoW, I then went to check out the Dashboard and clicked on a few widgets to see what they did. Then I X'ed out Dashboard. I tried to open Safari and the icon just kept on bouncing up and down in the dock and it would'nt open. I tried Firefox and iTunes as well but they did the same thing. I looked up at my menu bar and the intel core duo temp monitor showed i was at 98% usage and was at 83 degrees C. Then the cpu usage kept on jumping back and forth from like 50% to 80% and then back down. I had no applications open except for Adium and when that is on my cpu usage is always around 3%. What was going on? I kinda got scared and thought it was a sign of RSD so I shut down my MacBook and restarted it. Now everything is fine for the time being; any theories about what happened and how I can prevent it? Thank you
iMac G5 17", MacBook White 1GB RAM, iPod mini   Mac OS X (10.4.2)  

Whatever you shut down didn't actually shut down. The process hung and then a bunch of other processes started but couldn't fully execute. You did the right thing. You could also have tried the force quit menu and force quit things one by one to see.

Similar Messages

  • I updated to FF4 and after a few days, strange things started happening. How do I recover to normal?

    I updated to FF4 and after a few days, strange things started happening.
    The groups I had set up disappeared and the Group button is gone.
    When I first open the app, it opens 8 - 12 separate windows with 1 blank tab. The orange Firefox button is there with nothing else on that bar. Also, 3 tool bars are blank (i.e. space is there but it's just grey) with NO buttons.
    If I want my previously opened tabs, I have to use the "Recently Closed windows" option to get back to where I was when I last closed down. The orange Firefox button is missing from this window but all the original menu items are back across the top.
    So how do I get back to the way it is supposed to operate?

    Have a look here
    Mac maintenance Quick Assist
    http://support.apple.com/kb/HT1147

  • I'm using Apple Mail 2.1.3 on a MacBook running OS 10.4.11. A very strange thing is happening. E-mail messages that I either sent or received months ago are showing up in my mailbox and receivers' mailboxes. Help!

    I'm using Apple Mail 2.1.3 on a MacBook running OS 10.4.11. A very strange thing is happening. E-mail messages that I either sent or received months ago are showing up in my mailbox and receivers' mailboxes. In one case, a message someone had sent to me wound up in the mailbox of a third person, who was not included in the address list!!  I have only two accounts, and have checked everything; only one account is showing the repeats Now, that account is my professional account, and it resides in three places: I use it on the laptop described here, I use it through Apple Mail on the much newer desktop Mac in my office, and I can run it through Web mail on my employer's server, which is where the professional account resides (I have a mailbox there, etc.) That program is called Zimbra.
    My personal account is with Earthlink and is not doing the repeats. I access it either through my MacBook's Apple Mail or the Web; the Apple Mail on my office Mac is not configured to access the Earthlink server.
    What IS going on here?? My friends, colleagues, and students (I teach college) are mystified by these ancient messages.
    Thanks for any help!!

    I'm using Apple Mail 2.1.3 on a MacBook running OS 10.4.11. A very strange thing is happening. E-mail messages that I either sent or received months ago are showing up in my mailbox and receivers' mailboxes. In one case, a message someone had sent to me wound up in the mailbox of a third person, who was not included in the address list!!  I have only two accounts, and have checked everything; only one account is showing the repeats Now, that account is my professional account, and it resides in three places: I use it on the laptop described here, I use it through Apple Mail on the much newer desktop Mac in my office, and I can run it through Web mail on my employer's server, which is where the professional account resides (I have a mailbox there, etc.) That program is called Zimbra.
    My personal account is with Earthlink and is not doing the repeats. I access it either through my MacBook's Apple Mail or the Web; the Apple Mail on my office Mac is not configured to access the Earthlink server.
    What IS going on here?? My friends, colleagues, and students (I teach college) are mystified by these ancient messages.
    Thanks for any help!!

  • Strange things are happening to my MacBook. Please help.

    Since buying my first MacBook nearly two years I have not had a single problem with it until earlier this week, when strange things started to happen.
    1) The first obvious problem was that my dock lost its settings.
    2) Then the green light at the top of the screen was on when I turned on my computer. Although this was resolved by shutting down and restarting, I have no idea why it was on in the first place.
    3) Thirdly, my email disappeared from Mail. After exploring, I found out that one of the check boxes in preferences had disabled my account and when I checked it again my email reappeared.
    4) And finally, it seems to be getting slower and slower. Whether it is opening a program such as Mail, opening system preferences or restarting, it all seems to be taking longer than I previously remember. However, once things are up and running they are generally fine.
    After doing some research I have found two possible fixes: resetting PRAM and resetting the System Management Control. The problem is that although I can read how to do them, I have no idea if they will fix my problems or what the implications of doing either are.
    So, do you think it would be a good idea to reset either the PRAM or SMC? If so, which should I do or what order should I do them in?
    Also, what, if any, are the risks of doing either? As I understand, my settings for things like the display will be reset but not things like wifi or the firewall, and all my programs, updates and files will remain untouched. Is that correct?
    Anyway, I hope that all makes sense and thanks in advance for any help you may be able to offer me.
    Paul

    Hmm, free space is okay, though some folks would say it's a little on the low side.
    How much RAM do you have in your computer?
    Also download SMART Utility here: http://www.volitans-software.com/smart_utility.php
    Run the application--it will give a report for your drive's physical health. If you get anything other than "Passed" you will probably need to replace the drive.
    ~Lyssa

  • Strange things can happen in Java:)

    Hi to all of you.I just wanted to point out something that I consider as very interesting and not to mention even strange... I will welcome any comment.
    Ok now the thing is that I have written a code that defines one interface name it Relation. I have these many classes implementing it. In the Relation body I have declared :
    public static final Vector all = new Vector();
    And then in all of the constructors of my classes that implement Relation I have written:
    all.add(this);
    That was just one idea of mine and I did not think that it should work but actually it would... I got all the object that I created in just one vector and on a later point I could access them...
    Now the strangest thing is that this vector is final and static and how the hell I am getting all of the instances set in it???
    Any ideas?

    but isn't final just saying that I can not change the so
    defined variable which in my opinion is even defined
    as a constant on a later point??? I need a micrometer to find the meaning of that sentence.
    And what do u mean by [etc]If you have a declaration:
    public final Vector bob = new Vector();it's bob that is final, not the Vector object. So bob always points to that Vector, but the Vector itself is not immutable, so you can add stuff to it.
    If you don't want bob's content's changed, use java.util.Collections.unmodifiableList. I believe this'll work:
    public final List bob = Collections.unmodifiableList(new Vector());Now you have a field, bob, which points to an empty list that will remain empty forever.
    And one more question is it ok if we instanciate
    things in interface as I have done with the vector???Still waiting on that micrometer, sorry.

  • N8-Social-client; strange things are happening !!!

    Hi, i just discovered a very strange issue with the social client on my N8; today is one of my FB-friends birthday and when i was checking this friends profile on my N8 there was already a post from myself wich i haven't written. I checked this friends profile on FB on my PC and there i could see that this post was actually from somebody else (wich of course it was since i didn't wrote anything). I logged out on my PC and checked again on my N8's social client and there again it shows my name and picture on that post. What is happening?
    N8-Wizard !!! Click the white star if you are happy with my help !!!

    Hmm, free space is okay, though some folks would say it's a little on the low side.
    How much RAM do you have in your computer?
    Also download SMART Utility here: http://www.volitans-software.com/smart_utility.php
    Run the application--it will give a report for your drive's physical health. If you get anything other than "Passed" you will probably need to replace the drive.
    ~Lyssa

  • Strange Things are Happening...

    Hello,
    Whenever I turn on or restart my Mac mini v. 10.4.3, it successfully logs in until it reaches the desktop. Then everything disappears, leaving only my background, and then reappears. However it disappears again and goes into an endless loop of everything - the top bar, the dock, any windows open, all icons on the desktop - disappearing and then, around 3 seconds later, reappearing. Whenever I try to start a program it doesn't start. The finder window will open and then disappear with everything else. I have to start my computer in Verbose mode and enter in a string of text (number 7 at http://docs.info.apple.com/article.html?artnum=106464 has the text I must enter). Is there anything I can do to stop my computer from doing this? I posted here before and got a fix, but as I said, it is only temporary. I must do that fix every time I log on. I'm looking to fix it once and for all.
    Thank you!

    Just a couple of things first. 1. Single-user mode isn't verbose mode. Thus, to boot into single-user mode, restart holding down the S key and not the V key. 2. Your problem appears to be the Finder crashing.
    Before redoing the steps in the document you cited, do this:
    Insert you install/restore disk.
    Reboot into Open Firmware: restart holding down the CMDOPT+OF keys. Then, type these in, sequentially, following each by the return key:
    reset-nvram
    set-defaults
    reset-all
    The last command restarts the machine; thus, hold down the S key to get into single-user mode.
    Once you do that, then type these in, sequentially, following each by the return key:
    mount -uw /
    mv /Library/Preferences/SystemConfiguration/preferences.plist preferences.old
    mv /Users/<yourusername>/Library/Preferences/com.apple.finder.plist preferences2.old
    mv /Library/Caches Caches_old
    chmod 1775 /
    reboot, holding down the C key.
    Click on the install icon, select Disk Utility from Utilities, and repair the disk and permissions, quit DU, select Startup Disk, select the Internal HD, and click restart.

  • Strange thing is happened

    I went to windows (restarting mac with bootcamp) for a win only program after I dunno 5-6 months, I had problems with bluetooth keyboard and mouse, and then I paired them with the win. everything worked fine I did my job successfully then return to my lovely mac.
    when to started on mac, my keyboard didn't worked. I said ok its a win/mac thing and I re-paired my keyboard. but it didn't worked. actually its worked but only for some keys!!! yea now they are working only and only functional keys of my keyboard, I mean every button except the numbers and the letter!!! other keys like enter, tab, all F1 F2 F3... keys, space, cmd keys are working
    isn't it strange? I tried to delete pairing and re-paired for 2-3 times but its all the same. I need your help. what is wrong with my keyboard??

    Here's your answer: http://discussions.apple.com/thread.jspa?messageID=8839614#8839614

  • All of the sudden FF is running very slowly & other strange things are happening as well???

    I have FF ver. 5 and for about a week now it is taking way longer than normal to load any and all pages. My OS is Windows 7 & I'm on a dual core processor computer that runs each processor at 3.40 GHz.
    I can't play any of my games because of how slow it is running. I'll click on a dropdown menu or something of the like like the "Tool's" menu and it will suck up so I'll have to push on it several more times before it will finally stay open and I can choose something. It also takes much longer for it to close down completely. Start up is running at normal for the most part. Every once in a while it will take a while to load and open. It has also been crashing way more than it ever has before and for no apparent reason.
    I've done everything I know to do like clearing cookies and history to no avail. I've even run a virus scan which only came up with some tracking cookies, no viruses or anything like that. I have also done a disk clean up and defragged (which I do every week).
    I know about 3 days before this started happening I updated the Java stuff and that's it.
    I'm at my wits end as I work on the internet for a living and this is making it very difficult and frustrating to get anything done.
    Please help!!!!!!!!!!! :( Cheryl

    -> Tap '''ALT''' key or press '''F10''' to show the Menu Bar
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to Tools Menu -> Clear Recent History -> '''Time range to clear: select "EVERYTHING"''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies, Cache''' -> click '''Clear Now'''
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> '''Firefox will: select "Remember History"'''
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries
    -> go to Tools Menu -> Options -> Advanced -> General -> Remove Checkmark from '''Warn me when websites try to redirect or reload the page'''
    -> go to Tools Menu -> Options -> Advanced -> Network -> Offline Storage (Cache): click '''Clear Now''' button
    -> Click OK on Options window -> Restart Firefox
    Check and tell if its working.

  • Weird Thing Just Happened When Creating a Ringtone

    After the switch was flipped "on" for creating ringtones, I decided to try it out. I had at least 25 songs that had the bell next to it, but when I decided to cancel on the 1st ringtone I tried to create, all those songs lost the bell icons. Now I have no songs that can be converted. What gives?

    Is it just the indicator in the column or the entire column is missing? I had a problem with the column not being there and had to add it from the View > View Options menu selection.

  • A strange thing is happening when I try to upgrade to Leopard

    I have OS 10.4.11 and I own Leopard but when I try to install it, the computer does the scan thing and tells me that I need OS 10.4 or higher to install Leopard. But when I click on "About this mac" it tells me that i meet all the requirements and that I have 10.4.11
    So I can't figure it out! Why does my computer not see that I have the right stuff? Or if I don't why does it look like I do?

    Hi again, Snow Leopard/10.6 will not work on any G5, or G4, Leopard/10.5 is the latest you can install/run/use.
    You mentioned contacting Apple to get something that is now past it's era?
    Yes. 10.5 is getting late in it's life, but is the most modern OS you can run.
    Leopard requirements/10.5.x...
    * Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
    * 512MB of memory (I say 2GB at least)
    * DVD drive for installation
    * 9GB of available disk space (I say 30GB at least)
    You have to call Apple & likely ask for a Product Specialist to get it, if they still have it!
    Snow Leopard/10.6.x Requirements...
    General requirements
    * Mac computer with an Intel processor
    * 1GB of memory (I say 2GB at least)
    * 5GB of available disk space (I say 30GB at least)
    * DVD drive for installation
    * Some features require a compatible Internet service provider; fees may apply.
    * Some features require Apple’s MobileMe service; fees and terms apply.
    To be sure which Mac you have...
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto *but not including the Serial#*...
    Hardware Overview:
    Machine Name: Power Mac G5 Quad
    Machine Model: PowerMac11,2
    CPU Type: PowerPC G5 (1.1)
    Number Of CPUs: 4
    CPU Speed: 2.5 GHz
    L2 Cache (per CPU): 1 MB
    Memory: 10 GB
    Bus Speed: 1.25 GHz
    Boot ROM Version: 5.2.7f1

  • After re-install, strange things are happening with my emails

    I had a crash during an optimization adventure with TechTool Pro when I was running 10.4.10. Since I had problems with this version (another issue), I did an archive and install for 10.4.8, with a subsequent upgrade to 10.4.9, and stopped there. So when I moved the mailboxes from the previous system folders to the active ones, my emails "disappeared". The mailbox windows are completely empty. In one mailbox, I "lost" nearly 2000 messages that I needed to archive. On my iMac, I have about 60% of those emails saved and backed up.
    I put quotes around "lost" and "disappeared" because I can open the files with TextEdit. They're complete and intact. But I can't open them up within Mail.
    I rebuilt the mailboxes, with no success.
    So what can I do to get Mail to recognize these invisible email files? Can anyone suggest a way to get Mail to recognize these files?

    Rather than tinkering with the contents of ~/Library/Mail/, you should have either restored the whole ~/Library/Mail folder as if it was a monolithic entity, or import the mailboxes by means of File > Import Mailboxes.
    That said, if Mail doesn’t recognize the messages in those mailboxes even after rebuilding them, chances are that importing them by normal means wouldn’t have worked either. In that case, you may try using emlx to mbox Converter or Emailchemy to convert the *.emlx files to standard mbox format, then import that in Mail as Other.

  • A very strange thing . . .

    Hi all,
    A very strange thing just happened. One track in a project, which has several regions, just stopped playing back! All other tracks play fine. Even the track that stopped playing back, when selected, is still active, i. e., my midi controller still plays the software instrument associated with the track. All of the info is still there; I can see it all in the piano roll, the score . . . everything.
    One clue, which I'm not sure how to describe, is that in the problem track, all of the regions have changed color and now have a little dot in their upper left corner. So, the regions which were all green, the default color, are now gray and green, but have the little dot at the top left.
    Oh, this happened by accident while I was recording on that track. I was attempting to record a new region between two other regions, then suddenly this happened!!
    Anybody know what's going on here?
    Thanks, Joseph

    thanks for the gray tracks thing. I have worked with Performer since 1985. I am having the hardest time simply getting around on logic express. Copying, pasting, setting regions. I record and sometimes it doesn't erase the previous info. I paste a track and it goes to another track. How do I erase measures on one track? Sorry for the lack of clarity in this question but the manual has been hard to understand. COuld I call you? I know the answers are easy. I don't see the logic in logic. Any help would be appreciated. [email protected]
    fritzkersting.com

  • Strange things happening with fonts?!?

    Some strange things are happening with fonts. The following
    picture shows part of the problem. This is only occuring with IE 6.
    It doesn't happen in IE 7 or the current firefox. The information
    in the silver and white box is the problem. This is being pulled
    via spry and being displayed via a div tag. It shouldn't be bold
    faced. No code is telling it to bold face, yet it is.
    http://i211.photobucket.com/albums/bb305/silentbobsecret/fontissue.jpg

    Are you using a fade effect on it? If so, that's an IE bug,
    which has several workarounds which include setting the background
    color on whatever it is your are fading, or making sure that after
    the effect is done (via a finish function) making sure to remove
    any opacity related style on the element you just faded in.
    This sample also had that problem:
    http://labs.adobe.com/technologies/spry/samples/data_region/DetailRegionEffectsSample.html
    but we used the background color trick.
    --== Kin ==--

  • Lion and Mavericks (strange things going on)

    Hello everybody,
    I have a 2010 (white) macbook,
    I just installed Mavericks and updated it to 10.9.3. The macbook runs both 10.7 Lion (my main and most important partition) and 10.9, it's a dual boot.
    My partition with Lion is called ''Macintosh HD'' and the one with Mavericks is called ''OS X Mavericks''. (Mavericks is startup partition)
    Now i'm using both together some strange things are happening. First off when i opened Finder in Mavericks it only showed ''Macintosh HD'' like that was the partition Mavericks was installed on, now i've added the right partition in the sidebar of the finder (OS X Mavericks). This was already weird.
    When i went back into Lion everything was fine but it stated indexing ( i guess the mavericks partition ) this annoyed me because i want them to be seperate.
    So I went to settings > Spotlight > Privacy and added ''OS X Mavericks'' so Lion stopped indexing that part of my harddrive.
    When I went into Mavericks again, the spotlight on Mavericks was indexing and then randomly stopped. I went in to Setting > Spotlight and Privacy again.
    Only now in Mavericks. Guess what: in privacy ''OS X Mavericks'' partition was added.
    Is Mavericks reading from the wrong partition??
    Is spotlight running between two OS X versions?
    How can i make sure Mavericks is reading info from the right partition?
    It would be very nice if someone could tell me more about this..
    Thanks in advance !!

    I remember when Lion first came out, I installed a second Lion partiton and had issues similar to this. The MAS failed to work at all in the new Lion partition until I removed the original.
    I suspect there is something with Lion that only likes one OS X per drive.
    You might need to install Mavericks on an external drive rather than the second partition.

Maybe you are looking for

  • Questions in Roll-out projects

    Hi Gurus, Please support me. In rollout project 1. Can i use the same types of equipment category , object types, Functional location types, Catalogs , codes, Classes and classification..etc as same as the reference system.?..How? 2. The number rangi

  • Vendor Invoice with Same Reference Number in two fiscal years.

    Vendor Invoice entered in SAP. DocumentNum 1600000612  Reference "47026723WA" Vendor Number "637278" Year "2008" DocumentNum 1600000667  Reference "47026723WA" Vendor Number "637278" Year "2009" We are thinking SAP will not allow/generate invoice wit

  • Hi Folks, I need to MOVE PHOTO'S FROM MY EMAIL ACCOUNT TO MY MAC

    Hi Folks, I need to MOVE PHOTO'S FROM MY EMAIL ACCOUNT TO MY MAC. I have some photo's that are not on my computer yet, JOE B.

  • Updating Rows

    Hi Guys, I'm updating some rows using BETWEEN operation but its updating the first records, it should update the records which comes between the below dates anything wrong with my code? >> DECLARE   CURSOR C1 IS SELECT :MN_DET_TS.PROCESS_DATES       

  • HT1338 it says software is up to date when it obviously isnt?

    it says my software is up to date when obviously it isnt, how can I resolve this Thanks Dom