Crashing of PC while loading latest blackberry link in Windows 8.1

Is there a common issue of PC crashing everytime while loading latest Blackberry link 1.0.28.
Even sync with outlook is stopped in windows 8.1.
Assistance required.

Many have problems but millions do not,  it is most likely your computer, you have a better chance to find a answer here:
http://answers.microsoft.com/en-us

Similar Messages

  • Premiere Pro CS 4.1 Crashes at Startup While Loading NI's VST's.

    Premiere Pro CS 4.1 crashes at startup while loading Native Instrument's VST's. My work around is to move the VST folder off the Plug-Ins directory, but that is a pain because I have to do it everytime I wanna use Premiere. In all honesty, I use my audio apps a lot more than Premiere. Any help would be great.
    System Specs...
    MacPro
    Mac OsX 10.5.7
    Premiere Pro CS 4.1
    4GB RAM

    With your VST folder in its proper place, try launching and re-launching Pr.  Theoretically, every time it fails to start the plug-in that caused the problem should be automatically blacklisted.  Sooner or later, all of the VST plug-ins that cause problems will be blacklisted and Pr will start normally.
    That's the theory, anyway.
    -Jeff

  • Can't install Blackberry Link in window XP

    Hi all, when I install Blackberry Link in window XP, error prompts up
    "Error signature
     AppName: peermanager.exe   AppVer: 1.1.0.14   ModName: msvcr100.dll
     ModVer: 10.0.40219.1                Offset: 0008d6fd"
    Already tried different methods, applied window updates, installed MS Visual C++ 2010 SP1 Redistributable Package, installed MS .NET Framework 4.0 Client..., etc, still prompts up error. Can anyone help me??

    I have some questions...
    How much RAM in the computer?
    Type of CPU?
    Amount of available disk space?
    Check out the minimum PC requirements for Link.
    Try this:
    Open Windows Explorer with the Win - E -    keys at the same time. Or open Win Explorer as you normally do. Left mouse click on Drive C. Select and go to Properties. Run Disk Cleanup.  When it is finished clear the cache.
    Then select Tools.
    Select Error Checking or Check Disk. Put the check mark on Automatically Fix File System Errors.  Re-start the computer.  On the next startup, Checkdisk will do its work.
    Now see if the Link will install.  If it does not install, there may be something the blackberry tech support can help you with.
    Jerry G.

  • App crashes with EXC_BAD_ACCESS while loading preferences on @Property

    Hello everybody, this is one of many EXC_BADACCES questions, but I have done research for a long time and think that this question has not been answered yet. My App saves data with in the preferences. Everything wents well, if I delete the preferences und start the App, so that no loading happens at all. But if loading happens, there is a problem. I have to save one main array wich contains self-written objects called Box. One Box has a NSString* boxName and six NSMutableArray* wich contain another self written object, called Flashcard wich contains two NSString*: question and answer. If the AppDelegate gets the message applicationWillTerminate it encodes the main array (called boxArray) using the NSKeyedArchiver and saves it in the preferences. In the init method of AppControll, this archive is loaded from the preferences:
    - (id)init {self = [super init];if (self) {  
    // Initialization code here.  
    NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
       NSData* archive = [defaults objectForKey:@"boxArray"];
       if (archive) {    
       NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
          boxArray = [NSMutableArray arrayWithArray:array];
       } else {    boxArray = [[NSMutableArray alloc] init];    }}return self;
    In the encodeWithCoder method of Box, it creates sereval NSData* objects for all its arrays, like this.
    NSData* p1archv = [NSKeyedArchiver archivedDataWithRootObject:phase1];
    [aCoder encodeObject:p1archv forKey:@"phase1"];
    and it loads everything like this: NSData* p1archv = [aDecoder decodeObjectForKey:@"phase1"];
    if (p1archv) {  
         NSArray* a = [NSKeyedUnarchiver unarchiveObjectWithData:p1archv]; 
          phase1 = [NSMutableArray arrayWithArray:a]; 
          NSLog(@"loaded phase1: %@",phase1);    } else {  
         phase1 = [[NSMutableArray alloc] init];        NSLog(@"inited phase1");    }
    It saves its own box name like this: [aCoder encodeObject:boxName forKey:@"boxName"]; Loading is like this:
    boxName = [aDecoder decodeObjectForKey:@"boxName"];
    The flashcards encodeWithCoder:
    - (void) encodeWithCoder:(NSCoder *)aCoder {
    [aCoder encodeObject:question forKey:@"question"];
    [aCoder encodeObject:answer forKey:@"answer"];NSLog(@"encoded %@ and %@",question, answer);
    and initWithCoder:
    - (id) initWithCoder:(NSCoder *)aDecoder {
    self = [super init];
    if (self) {    // Initialization code here.
       question = [aDecoder decodeObjectForKey:@"question"];
        answer = [aDecoder decodeObjectForKey:@"answer"];}return self;
    Ok, now you know the actual setting, but this is what my actual problem is:
    If the application starts, and there are preferences to load, it crashes in the Box.h file. To be exact it crashes in this line:
    @property (readwrite, copy) NSString* boxName;
    with an EXC_BAD_ACCESS. I turned NSZombieEnabled on and it showed exactly the same line. On my research I made brake-points at every single method, and I found out, that in the init with coder method of Box, everything is ok and boxName is what it should be (e.g. "foo") but if the tableview (Managed by an NSArrayController) wants to load the data into the table view it crashes in the while running or it´s showing stuff like e.g. "1:918" in stepping through the single steps. I#m sure, I have not released the array, or the boxName or anything before in the loading process, so I can´t explain this issue. I would be very glad if you could help me, Elefantosque

    Hi,
    i suppose boxArray get's released to early, because unarchiveObjectWithData returns an autoreleased object.
    - (id)init
         self = [super init];
         if (self)
              // Initialization code here.  
              NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
              NSData* archive = [defaults objectForKey:@"boxArray"];
              if (archive)
                   NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
                   //boxArray = [NSMutableArray arrayWithArray:array]; -- boxArray will be released, because it's an autoreleased object.
                   boxArray [[NSMutableArray alloc] initWithArray:array];
              else
                   boxArray = [[NSMutableArray alloc] init];
         return self;
    - (id)init {self = [super init];if (self) {  
    // Initialization code here.  
    NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
       NSData* archive = [defaults objectForKey:@"boxArray"];
       if (archive) {    
       NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
          boxArray = [NSMutableArray arrayWithArray:array];
       } else {    boxArray = [[NSMutableArray alloc] init];    }}return self;
    }- (id)init
        self = [super init];
        if (self)
            // Initialization code here.  
            NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
            NSData* archive = [defaults objectForKey:@"boxArray"];
            if (archive)
                NSArray* array = [NSKeyedUnarchiver unarchiveObjectWithData:archive]; 
                //boxArray = [NSMutableArray arrayWithArray:array]; -- boxArray will be released, because it's an autoreleased object.
                boxArray [[NSMutableArray alloc] initWithArray:array];
            else
                boxArray = [[NSMutableArray alloc] init];
        return self;

  • Leap connecting to BlackBerry Link on Windows 7 Pro SP1 64-bit

    Connecting with USB cable, you are prompted, initially to install drivers.  This initiates the installation of the Device Manager, BlackBerry Link and BlackBerry Blend. After installing/un-installing/re-installing the software several times, checking a raft of knowledgebase articles, I still cannot get Link to recognize an attached device over USB. If I look at the device manager, I have the BlackBerry (USB Serial Bus Controllers) and Black Berry Virtual Private Network (Network Adapters) and have attempted updating the drivers for these. During software uninstallations, I have also purged directories and registry entries. I am running ESET A/V and have disabled A/V and Firewall during software installs. I have tried connecting with the Leap in various states (Airplane Mode, with WiFi on, With WiFi/Mobile Network on). In every case, the device asks to Install Drivers, etc. and is not visible in the BlackBerry Device Manager.

    try copying the installation files to a desktop folder and installing from the folder.
    if that fails, download the installation files,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Software update by blackberry link in windows 8

    Can anyone help me to sort out the software updates for my Z10 using blackberry link installed in my laptop with windows 8? 
    I cannot see the 'install updates' link ......!!

    With your Z10 connected to the PC, and running Link, do you see the Z10 connected in the bottom of the window (it should show as a tab at the bottom of the Link window)?
    If so, then at the upper right, click on the gear icon for Settings. You should see the RELOAD OS functions in the screen now.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Windows 8.1 Crashing after BlackBerry Link install failure

    I installed Windows 8.1  All went well. 
    Went to connect my BB and it asked for Link to be installed.  I obliged and started Link install.
    Part way thru the install, Windows 8.1 displayed a new blue screen of death with an face stating rebut needed and diplayed fatal error DRIVER_IRQL_NOT_LESS_OR_EQUAL (ndis.sys).
    Nothing I do will allow Windows to restart; it gets started and almost immediately desplays the blue death screen with the same message.  I can get into safe mode, but that does not allow me to uninstall Link.
    I also run Kaspersky and in one the posts indicates this can interfer as well,  I also tried running windows in the special mode that turns of anti-virus; same problem.
    I also unplugged all USB devices except keyboard and mouse.
    Anyone got any suggestions.

    I posses Z 10 myself. Thanks for pointing out this error. I am exactly facing this error and even installed the latest Blackberry link. I Even keep on updating Windows 8.1 as when it prompts something hoping that me sending the error report also wakes up Windows team.
    All was well till Windows 8.
    But since 8.1, the windows is crashing the way you described the moment the installation of blackberry link is about to complete. Though the link has somehow still started but does not show logo/shortcut on desktop. Can't synchronize at all.
    It does not even help for my HTC too. Only Apple with I5 has not faced any problem yet !!!.
    Look forward for fast response from BB team. The error somehow has links with regards to the phone driver.

  • Multiple problems after resoring Z30 from Blackberry Link.

    Hi,
        I have been working on a battery problem with Blackberry support and they had me backup my Z30 via Blackberry Link to try an older version of OS. When I restored my phone (full restore) I am missing my Android apps installed via Snap and my email no longer works.
         The email says my accounts are invalid and "some accounts have failed to respond". I reentered the passwords but that has not helped. Are there any known issues with email restoral on the latest Blackberry Link under OSX?
         I figured that my Android Waze and Outlook would have issues on restoral and I seem to remember coming across an article about restoring them but can't find it now. Any help or are there a collection of articles on restoral problems I could look at?
    Thanks,
         John C.
    My Device: BlackBerry Z30 w/OS 10.2.1.3247
    My Carrier: T-Mobile
    Solved!
    Go to Solution.

    lynnejohn wrote:
    Thanks for the help as support does not seem to be very technical.
    All too often the case. Sad.
    lynnejohn wrote:
    I understand that .2160 is a bit old but that is the one showing up for T-Mobile
    As has always been with BB, the carriers control the OS release cycle to their end users (as shown via the automated means -- on-device update and Link)...some approve newer versions more quickly than others. The methods I provided above allow you to ignore what your carrier has approved and install any version you want.
    lynnejohn wrote:
    I can load up my Windows 7 virtual machine and try to use Sachesi but how do most folks here determine  what the best version is for them?
    By reading what others experience. I can say that for Z30 .3177 and now .3247 are the best...things are much more stable than in any prior versions (and I "push" things quite hard).
    I have no idea if Sachesi or AutoLoader will function via a VM on a MAC.
    lynnejohn wrote:
         Another question is which is the best backup for OS10? At this point I'm not thinking very highly of Blackberry Link
    LINK remains the sole method I know of to back up the actual databases and configuration items...I know of no other tools that can access that area of the device. The best method is to use LINK to backup all that it can, and then also do a manual USB copy of the entire contents of your Device and Media card areas. And also to have full documentation of all of your preferred configuration items, email accounts, etc...just in case you wind up in a situation where the restore re-introduces the very corruption you are trying to remove (this is a known situation...hence the way I recommended above that you proceed). Of course, you should also be using the most recent version of LINK.
    lynnejohn wrote:
    and I'd like a stable way to do it so that I could try some of the newer, more experimental versions of the OS.
    Sorry, not for discussion here on this site...other sites on the Internet are devoted to such things. But, as per the Ts and Cs of this site, only production releases of the OS and devices are open for discussion here. But, as for backup/restore, the methods previously outlined remain as described...what you do regarding the OS itself is your choice to make.
    lynnejohn wrote:
    One last think does Sachesi take care of the Android SDKs?
    Sachesi is completely non-destructive...all it does is replace the BAR files that represent the core OS and associated core apps. It does not touch anything else, and hence does not destroy your data, configuration, added apps, etc. In contrast, AutoLoader is fully destructive, and it is necessary to reload everything afterwards.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Blackberry Link version okay?

    My BlackBerry Link version shows to be 1.1.1.26 but indicates a software update is available.
    Is 1.1.1.26 still fine and dandy for my Q10s or is the latest BlackBerry Link update important to install?
    Is 1.2.2.13 proving to be a good version to update to for Q10s?
    Thanks!
    . . . . .  Pete
    Solved!
    Go to Solution.

    Interesting that a later version is showing up for you, in version numbers any third number update is normally just a maintenance/bug fix.
    If the first or second number changes that indicates that there has been some significant changes and is probably worth upgrading to.
    If you've been helped click on , if you've been saved buy the app.
    Developer of stokLocker, Sympatico and Super Sentences.

  • Indesign cc 2014crashes at startup while loading Trackers? What to do?

    Indesign cc 2014 crashes at startup while loading Trackers? What to do? I've a windows 8 64bit system all other adobe product work fine.

    Hi Puccio,
    Please try to reset the preferences of InDesign
    http://helpx.adobe.com/indesign/using/setting-preferences.html#restore_all_preferences_and _default_settings
    Please share Event Viewer log immediate after cash in case the above solution doesn't worked.
    Regards,
    Sumit Singh

  • LV crashes while loading my llb, but the built app. functions correctly???

    I�m hoping someone may understand the cause of the LabVIEW crash I�m experiencing.
    LabVIEW 6.1 crashes and Windows 2000 says, "LabVIEW.exe has generated errors and will be closed by Windows" when I try to load an llb by clicking on the top-level vi from within LabVIEW or when opening the llb from outside LabVIEW. It crashes while loading particular sub-vi�s of the llb. If I try to load the offending subvi�s directly, I also get the same crash. If I build the llb into an application, the build goes smoothly and the resulting application functions correctly. If I use a �splash screen� approach and do not load the offending sub-vi�s (by not opening vi references to them), they load-up fi
    ne when the top-level vi loads and then I am able to edit and re-save any vi of the llb including the offending sub-vi�s. I�ve tried re-saving the llb as a separate development distribution and still get the same crash behavior. I�ve also tried saving the offending sub-vi�s to separate files outside the mother llb (after getting them open with the splash screen approach) and I get the same crash when I open these files. If I save one of the offending sub-vi�s as a separate llb, I can�t get it open even with the splash screen approach. I�ve loaded the latest video driver for my Dell Inspiron 8100 laptop and I get the same behavior on a Dell Dimension 8200 desktop that is also running Windows 2000 (Version 5 SP4). There are 110 objects in my llb that includes *.vi�s, *.rtm�s, and *.ctl�s.. Any ideas as to why/how this is occurring and how I can fix it? Is this a known 6.1 bug that is fixed in 7? Any info would be greatly appreciated. I�ve included my splash screen like loader, f
    or what it�s worth. Thanks.
    Attachments:
    __loadVIs.vi ‏88 KB

    Thanks for responding. Your understanding is correct. Mass compiling was one of the first things I tried (although I failed to mention it). I also un-installed and re-installed LabVIEW. It crashes during mass compiling of the full llb, although the vi that it appears to be working on when it crashes is not an �offender�, i.e. I can open that vi fine. The crash during mass compiling is the same crash, i.e. Windows says it had to close LabVIEW because it generated errors.
    I�ve attached one of the offenders. It is missing many of it�s sub-vi�s so you�ll have to hit �ignore vi� a bunch when opening it. (The llb of it is ~2.6 MB. I thought that might be too big/rude to post.) This vi crashes LabVIEW upon mass compile or upon opening it (after hit
    ting �ignore subvi� a bunch).
    I was going to attach an llb of another smaller offender, but in the process of editing it to be a little prettier and better documented, the problem kind of vanished for that vi. The main routine still crashes when I mass compile the full llb, but now I can open some of the old offenders without incident. I still can�t open the main routine directly as it crashes LabVIEW. Thanks for your time.
    Attachments:
    aveParam.vi ‏769 KB

  • Can't load music library on Blackberry Link

    When I click on my computers files to load my music library through Blackberry Link it says:
    Blackberry Link Wasn't Able to Load Your Music Library
    Close then reopen Blackberry Link
    Did that many times, rebooted the computer, reinstalled the program etc all won't load my Itunes library.
    It worked fine on BB Desktop Manager with my Bold 9900 which I was using until yesterday.
    When right clicking on all music and going sync to > Blackberry10. It says 'A problem occured while attempting to access your media library (the sync did not complete."
    Although there is no music there anyway as it can't load my Itunes library
    Can someone please help?
    Thanks

    I find it easier to just go through windows explorer and treat the phone as a memory stick. I click and drag everything over, a bit archaic but it works for me, problem free.
    It's always funny when it's someone else.

  • Premiere Elements 11 crashes while loading ImporterQuickTime.pm

    Hi all!
    I'm facing a problem with Adobe Premiere elements 11.0 whenever I launch it (even launched directly without passing the organizer's launch screen) it stops while loading ImporterQuickTime.pm.
    Here's my PC specifications:
    Windows 7 32bit
    Ram 2GB
    Intel Dueo CPU 2.20GHZ
    SIS Mirage 3 Graphics adapter
    QuickTime version: 7.7.4 (latest)
    Is there a troubleshooting steps or logs where I can find the culprit?
    Thanks for any help.

    Numerdiaweb
    This type of issue does not seem unique to Premiere Elements 11, and I am not certain that this is one answer to a fix.
    The person with this type of issue is usually put through the drill
    http://forums.adobe.com/thread/951360
    which includes
    a. Is latest version of QuickTime installed? If you have the latest version, have you tried uninstalling reinstalling it?
    b. Is your video card driver up to date according to the web site of the manufacturer of the card?
    c. Do you have the latest Windows Updates and was all working before the Windows Updates?
    I ran into this issue with Premiere Elements 11 on Window 7 64 bit. The only thing that worked everytime to get beyond this block for me was to go to the Task Manager/Processes and End Process for a Process named ElementsOrganizerSyncAgent.exe. The irony of it was that this .exe was located in the Premiere Elements 8.0/8.0.1 files on the hard drive. I have since deactivated, uninstalled, reinstalled Premiere Elements 8.0/8.0.1 and the problem has not reappeared.
    With the possibility of undefinited corrupted files, you might want to look at"
    a. Deleting the Adobe Premiere Elements Prefs file or the whole Folder that it exists in Windows 7 64 bit...(you may need to translate these details into 32 bit system...please ask for help if you need that...
    Local Disc C
    Users
    Owner
    AppData
    Adobe
    Premiere Elements
    11.0
    and in the 11.0 Folder is the Adobe Premiere Elements Prefs file that you delete. As I mentioned, if just the Prefs files has no impact, then try deleting that 11.0 Folder that it exists in.
    Remember to have Folder Options Show Hidden Files, Folders, and Drives on so that you can see the path involved.
    That 2 GB installed RAM caught my attention, but I would think that you would be able to get beyond that QuickTime message even at that. But do look into increasing that 2 GB RAM to at least 4 GB (which is the maximum supported for 32 bit system).
    Let us start here and see if any of the above leads to the solution.
    Thanks.
    ATR
    Add On...I was unaware of SG's post in your thread until after I had posted mine.

  • JVM Crash while loading StackFrame

    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode)
    # Error ID: 53414645504F494E540E4350500159
    # Problematic Thread: prio=5 tid=0x008cf798 nid=0x8a8 runnable
    I would get very similar or same error like above.
    I have got around it, but I would like to find out why it was happening.
    If you look at following function, you will notice this.get_ID() call.
    I used to pass "this" object instead of this.get_ID().
    If I replace this.get_ID() with "this" object JVM would crash while loading stackframe.
    Also, it would crash around while loading
    "Iterator Keys = m_UserCollection.getKeys();"
    Does anybody have any idea what might have caused above function to crash while loading stackframe?
    Thanks in advance.
    public void setUsers(UserCollection value)
    if(m_UserCollection == null)
    m_UserCollection = UserFactory.GetUsers(get_ID());
    UserCollection inCol = value;
    Iterator Keys = m_UserCollection.getKeys();
    while(Keys != null && Keys.hasNext())
    Object key = Keys.next();
    User current = m_UserCollection.getm_users(key);
    User newUser = inCol.getm_users(key);
    if(current != null && newUser == null)
    current.RemoveFromGroup(this.get_ID());
    else
    inCol.Remove(key);
    Iterator enums2 = inCol.getKeys();
    while(enums2.hasNext())
    inCol.getm_users(enums2.next()).AddToGroup(this.get_ID());

    Hi
    Did it dump out where the function name is?
    Is it happening consistenly?
    Can u try running with -XX:+PrintCompilation and show the last few printed line? You will see something like
    11 b java.lang.String::lastIndexOf (67 bytes)
    Thanks.

  • My MacBook Pro completely crashes while loading up games

    Hey all, thanks for reading.
    I'm running a MacBook Pro (<1 year old)
    Processor: 2.8GHz Intel Core 2 Duo
    RAM: 4GB 1067 MHz DDR3
    It's connected to the power supply, and it's set to High Performance (meaning the dedicated graphics card should be in use)
    Every time I try to play a game, my Mac completely freezes. I'm currently trying to play the Sims 3; hardly graphic-intensive. As soon as I click the Play button, the screen goes black and the disc drive starts to whirr (sometimes vibrating the computer violently). Then the animated EA logo swirls onto the screen, and the load music starts up. Before the EA logo can fully animate, my computer dies. The screen instantaneously goes black, and the background music keeps playing in a skipping fashion, like a broken record: click-click-click-click.
    Force Quit does nothing. None of the hardware buttons, e.g. volume/brightness controls, do anything. I have to hold down the power button to restart.
    It probably isn't overheating, since I've tried with my fans on full blast (smcFanControl) and I'm currently using a laptop cooling pad.
    I used to be able to play the Sims for a few hours before it would crash: it has gotten much worse. I downloaded the WoW demo and got a bit farther: I could create a character, but within 5 seconds of playing this same problem would happen.
    I know Macs aren't particularly good at playing games, but this seems a bit ridiculous. Can anyone help? I have the full error report saved, if that would be useful.
    Summary: While loading a game, my MacBook Pro full-crashes, becoming totally unresponsive, before the EA logo can even animate.

    Try it using the other (dedicated) graphics. Also, run your hardware tester.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

Maybe you are looking for

  • Storing an array permanently

    Hi, Is there a way of storing an array permanently, so that it stays saved somewhere in a file or something? I need to create an application that stores this array and reads the values from it, without having to re-create the array everytime I run th

  • Having Logon screen just like sdn

    Hi, How can we have the logon screen which displays on the anonymous user screen. Mr.Chowdary

  • Imac freezes with gray screen after mavericks update

    I was updating my imac system and it is frozen in a gray screen, like it is restarting. It's been twenty minutes and it didn't restarted. What can i do if it don't restart anymore? All my work data is on that imac.

  • Accessing shares on CentOS server

    Since the 10.6.5 update, we are seeing some issues writing and deleting files to share(s) on our CentOS server. We can log on, see the share, browse and read and write. If we remove a file, in this case an index.html file, and try to place a file by

  • Text animation question

    Hi all, I'm using Flash CS3, actionscript 2 to build a site in which I would like to have a line of text animation to slide off the screen, but I'm looking for something similar to almost a 'sideways explosion'.... it will be synched to the sound of