Can't figure out what the problem is, please help!

Hey, so I have a Mac Mini which I bought nearly 3 years ago. I've been running the latest system 10.6.6, when the issues started. Everything would just unexpectedly quit and occasionally, I'd get the "You need to re-start your computer..." grey screen, also the desktop would refresh itself and not open any folders or anything at all. Finder, Console, Dashboard Client, etc all quit,´and sometimes the nmblookup thing would pop up, but before I could click Allow or Deny, it'd dissappear again.
I ran the Hardware Test, and four times out of seven it said "No Trouble Found" while three times out of seven it gave me an error code starting with 4MEM. The system profiler, meanwhile, told me that both RAM cards were OK. I did the Hard Drive verification through Utilities and it gave me some problem starting with "Key..." and said it could not be repaired.
SO, I reformatted the HD as it suggested, deleting everything (I've got it backed up though). Then, I installed Snow Leopard again, and the issues were still present. It would Quit Unexpectedly freeze up, etc. So then I went and erased the hard-drive again, and a new partition was made automatically. After that, I tried installing the original software which came with the computer. Except that after Installation Disk 1 was finished, the computer restarted and then it was just a blue screen. Nothing. It didn't ask for the second disk or aything. I tried again, and in the middle of Disk 2 Installation the grey "You need to re-start..." screen came down. ***. Now, I can't seem to install ANY Mac OS X on my computer, not what it came with, not the Snow Leopard, nothing.
Again, Hardware Tests tells me everything is ok, and the Hard Drive also says there's nothing to repair. Then what is this? I don't even know what it could be anymore! Please help if you have an idea of what this might be! Unfortunally, at the moment I have no money to send it to the repair so they'd check=/
Thanks in advance, any help would be greatly apreciated!

Oh ok, well that was what the test said prior to reformatting the hard drive. Now, it doesn't find any trouble no matter how many times I run it. That's what has me so confused, everything seems to check out and yet...I can't do anything, not even install the software!

Similar Messages

  • I recently received a  WD My Book Studio external Hard drive and am installing it but can't figure out what the difference between wd turbo installer  64 and wd   turbo installer is.  Can someone tell me.  Thanks in advance for all your help.

    I recently received a  WD My Book Studio external Hard drive and am installing it but can't figure out what the difference between wd turbo installer  64 and wd   turbo installer is.  Can someone tell me.  Thanks in advance for all your help.

    Oh ok, well that was what the test said prior to reformatting the hard drive. Now, it doesn't find any trouble no matter how many times I run it. That's what has me so confused, everything seems to check out and yet...I can't do anything, not even install the software!

  • Once I downloaded the new IOS 5.0 I've lost all of my photos that were stored on my PC, and I no longer have access to them on the IPOD.  Cannot figure out what has happened.  Please help.

    Once I downloaded the new IOS 5.0 I've lost all of my photos that were stored on my PC, and I no longer have access to them on the IPOD.  Cannot figure out what has happened.  Please help.

    Thanks lllaass, but I am not computer literate and do not understand exactly what it is I am supposed to do.  All of my photos were stored on Microsoft Windows Live Photo Gallery.  When I now access the gallery the only thing that is there are the folders with the title of the folders.  The pictures that were in those folders are now gone. I can no longer access them on my IPOD either.  My photo library on my IPOD is now empty. 
    Thanks again for your help.

  • My lifetime calls is glitched at 4,924,000,000 and I can not figure out how to reset this PLEASE HELP URGENTLY I don't know how to resolve this

    My IPhones total life time calls is at 4,924,000,00 and I can't figure out if this is a glitch because I know that I have DEFIANTLY not called for that long I don't know if this will be resolved but someone PLEASE HELP

    Glad it helped!
    For what it's worth, I suspect you'd have to restore the phone as new to resolve the issue. If it were mine, I'd probably elect to live with the weirdness rather than go through the fuss of a restore.
    Best of luck.

  • I am having a problem adding a new tab, everyone is telling me to get rid of "ask toolbar" however I do NOT have ask, not at all. And yet I still can not find out what to do. Please help!

    Hello, I am having trouble opening a new tab on firefox. Everyone has told me to delete the "ask toolbar" but the thing is I do NOT have that, searched over and over and it is NOT on my firefox. Yet I still can not fix the new tab problem. Any help please?!

    Try this?
    * http://kb.mozillazine.org/Uninstalling_toolbars

  • I can no longer load Google since I upgraded to the new version of fierfox & its definitely not anything to do with my firewall. How do I figure out what the problem is?

    I upgraded to Firefox 4 and every time I try to open the home page with the Google search bar teh connection times out and its unable to connect. If I type any other address in the address bar it will open up the site, it's only Google it won't open. I've worked through every step on the Firefox support page and checked all my settings, run scans for malware, checked the firewall settings etc and even with my firewall, antivirus & spam filters all turned off I still can't open Google. I even uninstalled Firefox 4 and went back to version 3.6.16 but still have the same problem. Will I ever be able to Google again? Is there anything else I can try? Any help would be greatly appreciated!

    https://discussions.apple.com/message/25085868#25085868
    I started a thread in safari maverics, I ment to put it in iOS Safari.  New Thread lists all the steps I've taken.  No I haven't tried another browser.  I've only ever used Safari on my iDevices.

  • Help I cant figure out what the problem is.

    Here is my code:
    package
        import flash.display.MovieClip;
        import flash.events.KeyboardEvent;
        import flash.ui.Keyboard;
        import flash.events.Event;
        public class Main_Character_Two extends MovieClip
            var vx:int;
            var vy:int;
            public function Main_Character_Two()
                init();
            function init():void
                //Initialize variables
                vx = 0;
                vy = 0;
                //Add event listeners
                stage.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown);
                stage.addEventListener(KeyboardEvent.KEY_UP, onKeyUp);
                addEventListener(Event.ENTER_FRAME, onEnterFrame);           
            function onKeyDown(event:KeyboardEvent):void
                if (event.keyCode == Keyboard.LEFT)
                    vx = -5;
                else if (event.keyCode == Keyboard.RIGHT)
                    vx = +5;
                else if (event.keyCode == Keyboard.UP)
                    vy = -5;
                else if (event.keyCode == Keyboard.DOWN)
                    vy = +5;
            function onKeyUp(event:KeyboardEvent):void
                if (event.keyCode == Keyboard.LEFT || event.keyCode == Keyboard.RIGHT)
                    vx = 0;
                else if (event.keyCode == Keyboard.DOWN || event.keyCode == Keyboard.UP)
                    vy = 0;
            function onEnterFrame(event:Event):void
                //Initialize local variables
                var playerHalfWidth:uint = player.width / 2
                var playerHalfHeight:uint = player.height / 2
                var backgroundHalfWidth:uint = backdrop.width / 2;
                var backgroundHalfHeight:uint = backdrop.height / 2;
                //move the background
                backdrop.x += -vx;
                backdrop.y += -vy;
                //Stop the background at stage edges
                if (backdrop.x + backgroundHalfWidth < stage.stageWidth)
                    backdrop.x = stage.stageWidth - backgroundHalfWidth;
                else if (backdrop.x - backgroundHalfWidth > 0)
                    backdrop.x = 0 + backgroundHalfWidth;
                if (backdrop.y - backgroundHalfHeight > 0)
                    backdrop.y = 0 + backgroundHalfHeight;
                else if (backdrop.y + backgroundHalfHeight < stage.stageHeight)
                    backdrop.y = stage.stageHeight - backgroundHalfHeight;
    This is what it says is my problem,
    Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts.
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at Main_Character_Two/onEnterFrame()

    either backdrop or player don't exist.
    to pinpoint which, click file>publish settings>swf and tick permit debugging.  retest.
    the new error message(s) will indicate the problematic line number (trying to) reference the non-existant object.

  • Does passbook work for anyone? I can't figure out what the heck to do once I launch it.

    when I launch it it prompts me to go to the app store I assume to download compatible apps. I have downloaded a few and still nothing. This seems very odd for apple to release something that could be such a big deal and make it unuasable …

    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    You can inspect and manage the permissions for the domain in the currently selected tab via these steps:
    *Click the "Site Identity Button" (globe/padlock) on the location bar
    *Click "More Information" to open "Tools > Page Info" with the Security tab selected
    *Go to the Permissions tab (Tools > Page Info > Permissions) to check the permissions for the domain in the currently selected tab
    *http://kb.mozillazine.org/Cookies

  • HT5622 I sent my Mac Pro Air for repairs and for some reason my user and group password was changed to Apple and I can't figure out what the password is -.help please.

    Sent my Mac Pro Air  for repairs and when it came back I had to download many programs.  Dowloaded  the OS X Mavericks but now it tells me I need an application to install it in my computer.  Which application do I need? Checked the App store but am new at this and have no clue.

    Did they also restore your original user account? Log out of Apple and see if yours is there to log in to.
    You'll need to post the actual error message, not what you think it said. I don't think I've ever seen an error that said I needed an application to install anything on my Mac.

  • I want to put my photo on my iMessages profile, and I can't figure out how to do it, please help?

    iMessages profile, how do I add a photo to my account on my mini ipad?

    Ok so I go to contacts, find me, add a photo, click on finish, and go to my iMessages or the green icon on my desktop that says Messages, post a message to my friends and all they see is an avatar (or whatever you call it) with my initials on it. 

  • Whenever i try to purchase an in app purchase it says error visit apple support page. I do and that does nothing. I have everything entered in correctly. I do not see what the problem is please help

    Somebody please help

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Note:
    Some In-App Purchases require a Credit Card.

  • An mp3 file on my computer will not import to itunes by either the drag-and-drop or the Add File to Library method.  Can't figure out what I'm doing wrong.  My OS is Windows 7.

    I purchased an mp3 from a private website on my laptop.  The itunes library i sync ipod to is on my desktop, so i copied the mp3 onto a flash drive and then into my desktop in the Downloads folder and Desktop folder as well as the itunes music folder, 3 places.  I opened itunes on the desktop and read the instructions for importing music that's already in my computer.  Neither the drag-and-drop or the Add File to Library method works.  I've tried both ways over and over.  Cannot figure out what the problem is.  I do note that the name of the mp3 file doesn't show the .mp3 extension, it appears as simply it's title, Eating Healthy, without any extension at all.  Could the filename be the problem, or do you have any other idea what I'm doing wrong?  My OS is Windows 7, using IE9.  Thanks.
    ADDENDUM AFTER READING ANOTHER DISCUSSION HERE:  I have now tried right clicking the song in Windows Explorer and choosing Open With, clicking itunes.  The mp3 plays in itunes but does not add to the library.

    I don't have a Recently Added playlist.  However, I discovered that the file I had named Eating Healthy was given the name You Can Enjoy Eating Healthy when it copied to iTunes.  I'm guessing iTunes pulled the full name of the piece from the internet.  Upshot--the mp3 did transfer to iTunes on all 3 tries, but I was looking in my alphabetized list under E, not Y, so I didn't see it there.  Thanks for your help. 

  • Lumia 920: Still trying to figure out what the pro...

    Aside from being very upset about Nokia's not allowing updates for the unbranded 920s, I'm still trying to figure out what the problem is with my camera...
    I had nearly a perfect working phone one and a half week ago. Even though the battery didn't last well and heated up somehow and there are gliches with some apps, the phone and its original apps worked without problem. Once the battery died in the middle of the night but I thought that it was because I didn't plug the charger well enough, it's a little loose anyway. I read about the freezes and restarts in different forums and was wondering what people were talking about, since I didn't have any such kind of problems. I felt myself being lucky.
    Then I got some app updates (Nokia drive+ and a few others), and ever since then my camera hasn't worked properly. When I open the camera app or click the camera button nine out of ten times it just goes back to the home screen or else it freeze the phone. I have tried soft resets and restarts but they mostly don't work, or they might work long enough to take a couple of photos and then stop working, or otherwise it freeze the phone and need to soft reset it. There is no pattens as to when it works and when it doesn't. I have also tried to uninstall some apps but it seemed to have no effect on the condition of the phone. Every app that utilizes the camera won't work ( camera won't work but other functions work), flashlight app won't work.
    Today I decided to hard reset the phone. It's surprisingly easy procedure that took less than 10 min. I did my first hard reset and chose to use my phone's backup files from Skydrive and it went fine, except it didn't do anything to the camera, i.e. it didn't work. My second hard reset I chose to "start from clean table" (or something of such) without any apps installed, and also disabled the automatic update but it didn't do anything either, no working camera. I did the same procedure once more just in case I did something wrong, but it didn't work. The fourth hard reset I restored from Skydrive to have (mostly) everything in order. No working camera either but almost everything else works now.
    It puzzles me. I'd though that if the reason of camera not working is some app updates then start from the clean table would have resloved it. Even after hard reset using camera at the very first possible chance didn't succeed: it worked for a very short moment before it froze the phone, just like before resetting. If I can keep myself from touching the camera the phone itself works (aside from maybe once or twice restartd itself, very rarely anyway). Now I have a phone with a camera I can't use and I don't have a clue what the problem is. I don't think that there are hardware problems because the camera *worked*, and I don't believe that software updates can break it hardware-wise. I have thought of changing it but who can promise that I'll get a phone that works better. Probably I should wait for Microsoft's/Nokia's updates, it just feels like they never come...

    hi mate,
    Sorry to hear you are having such a rough time with your 920. In this case, it might be best to take your phone back to your point of purchase and ask for a replacement, and if they are being less than helpful, to take it to your local Nokia Care point instead: http://nokia.com/support
    I can certainly empathise with you, as a lot of the issues you describe are apparently fixed by the Portico update by Microsoft that was released yesterday to AT&T and Rogers devices but not the rest of the Lumia Windows Phone 8 range unfortunately. Bit of a wait, but hopefully not too long until the update hits.

  • Every e-mail I get comes with a duplicate. I've tried looking at the different features of the program, but I can't figure out why this is happening. Help!

    This has been happening for several years now. After one of the updates, I started getting the duplicates. I've lived with problem for a long time because I could still get e-mails, if over abundantly. My e-mail volume has gone up and up, however, and I'm now getting 60 or 70 e-mails a day because of this problem. Can someone tell me how to fix this?

    I think I might have figured out what the problem is. I have inadvertently set up two Thunderbird accounts. When I followed your advice, I was able to open the pop folder. I also had a mail folder and opened it to find another pop folder. In both pop folders I found a popstate.dat file. When I went into account settings, I found that I had somehow set up two cbldw accounts. The one at the top said mail as incoming server. The second account showed pop as the incoming server. Now this is what perplexes me. Do I attempt to get rid of one of the accounts? I took both popstate.dat files out of the folders and put them on my desktop. When I went back into the two mail folders, behold, the popstate. dat files were still in the folder, having been altered at the time I took them out of the folders.
    I'm really in a quandary as to how to proceed. I'm not sure I can delete the second Thunderbird account without wrecking havoc on my primary e-mail source, and there are a few subtle differences in the two different preferences sections.
    Any helpful suggestions?

  • HT201407 during a update of apple my iphone 3GS crashed an now the operating system wont load up..ive tried to reset the phone to the factory settings it took 4 hours an completed but my iphone still wont come on..what can i do to fix the problem? please

    during a update of apple my iphone 3GS crashed an now the operating system wont load up..ive tried to reset the phone to the factory settings using itunes it took 4 hours and completed but my phone still wont come on..what can i do to fix the problem? please help #

    In trying to include what information all that I could I should have specified I DON'T KNOW THAT IT WAS DEFINATELY JAILBROKEN when I took it to the apple store they told me there's no way for them to tell if it was jail broken or not. I'm only going by what ppl have told me COULD HAVE BEEN DONE TO THE PHONE. With that said the only thing I know for sure is that the apple tech at the Genius Bar told me that someone took control of my root menu in February &amp; I've had no control of my phone since. I asked him how to regain control &amp; how he knew his exact words were "oh that is out of our scope of capabilities here at this level &amp; you would need an apple engineer to fix it". I said ok then how do I get an apple eng then? He laughed &amp; said you can't!!!! To which I was furious I came home &amp; called apple requesting to speak w/the fraud dept to file a report they said we don't have a fraud dept!! So after a 45 mn phone call again I left w/no answers.
    @TJBUSMC1973-
    I DON'T HAVE THOUSANDS OF DOLLARS TO SPEND HIRING AN ATTORNEY &amp; Although I appreciate your suggestion I fail to how an attorney would be able to facilitate in any way since there's no suspect. I cannot prove that it's him doing it so I certainly can't pursue legal action w/no proof &amp; no money. :'((
    Again I thank you for your advice but I don't think that will help.
    I was looking more for a TECHNICAL way to avoid this happening w/a new phone should I buy one or trying to get them out of my phone now! Such as installing some kind of software protection?? Someway to clear out the entire phone (other than factory reset which was done 10 x's w/no success, etc. if this person got in then there HAS TO BE A WAY OF GETTING HIM OUT, right????

Maybe you are looking for