AIR Crashes when application begins install

Any help on why when I try to install AIR applications my PC (Windows) crashes?
When I get the blue screen it says that possibly I have outdated BIOS?
Not a techie so this could be over my head to get AIR to work on my PC.
I am using a Dell Dimension E310
Thanks,
Judd

Any help on why when I try to install AIR applications my PC (Windows) crashes?
When I get the blue screen it says that possibly I have outdated BIOS?
Not a techie so this could be over my head to get AIR to work on my PC.
I am using a Dell Dimension E310
Thanks,
Judd

Similar Messages

  • My 4S crashed when wanted to install 8.1.3

    My 4S crashed when wanted to install 8.1.3, and now I can't restore or update from iTunes 'Cos it says:
    "there was a problem downloading the software for the iphone. The network connection was reset.".... and also I get "error 3253".
    I'm on windows 8, and using the latest version of iTunes.
    can someone help me?

    You can try 2 things.
    1) A hard reset. Push down the "Home button" and "On/Off" button at the same time until your phone restarts and when you see the Apple logo release the buttons then try again.
    2) Download the ISWP file directly to you PC and restore the phone. (Hold down the Alt + Shift key when clicking "restore" in iTunes and you can find teh file via Windows explorer.
    Let me know if this helps

  • Macbook air crashed when using USB.

    My macbook air crashed when I plugged in my new portable charger in the USB, and it refuse to start again. Nothing is happening when Im trying to start the mac. Is the macbook totally destroyed or can I fix this in some way? appreciate your help!

    You should also ask this in the MacBook Air forum. This is the forum for the white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_air

  • Extension Manager 2.1 for Mac crashes when trying to install any extension

    Hi,
    I have the Adobe Extension Manager 2.1 installed on a Mac running Mac OS X 10.5.6.  I updated all the latest Adobe and Apple software.
    I tried to install MXP files for Adobe AIR, jQuery, and Drupal, but doing so crashes the Extension Manager.  I tried uninstalling it using the Photoshop installer (which is what installed the Manager initially), but this didn't help.
    The Manager also crashes when I try to open the Help > About the dialogue, both from the main window and from the menu bar.
    Can anyone help me with this?  Thanks in advance!
    Rémi

    Reading the thread linked below resolved my problem.  I only had to uninstall Safari 4 Beta before I could use the Extension Manager.
    http://forums.adobe.com/thread/222366

  • Mid-2011 MacBook Air Crashed When Unplugging Thunderbolt

    I am using the Belkin Thunderbolt Express dock. I have found that if I am running my Macbook Air off of the battery and unplug the Belkin dock, my Air crashes. Has anyone else had any issues with their Macbook crashing when dicsonnecting a Thunderbolt peripheral?

    I never installed it, it's popped up each time I've checked -- but today it wasn't offered in Software Update.  Odd.

  • Adobe Air Crash when try to load video

    Hi,
    Recently, I am trying to do an very simple application using Adobe Air that plays video when certain key pressed on keyboard. However, the adobe air crash frequently when it try to load the video. The problem seems to be Adobe Air/ Flash player bug, because when I tried to do the debug, the debug launcher crash. I have tried with both f4v and mp4 format, but the situation is still the same.
    I am using up to date Flash builder 4.5 and Adobe Air 2.7.1. Tested on both WinXP and Win7 Home Premium 32bit. Hopes to get your respond as soon as possible. If the problem cannot be solved soon, maybe I have to search for alternative solution to do the project. Thanks.
    Here is my working code:
    Display Window:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/mx" width="640" height="360" showStatusBar="false" applicationComplete="initConn()">
         <fx:Script>
              <![CDATA[
                   import flash.utils.setTimeout;
                   import mx.events.FlexEvent;
                   private var SWFconn:LocalConnection;
                   private var delay:Number = 300;
                   private var intervalId:uint;
                   protected var nWin:videoscreen = new videoscreen();
                   private var playing:Number = 0;
                   protected function initConn():void{
                        stage.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown);
                        SWFconn = new LocalConnection();
                        nWin.width = 500;
                        nWin.height = 400;
                        nWin.open();
                   public function handleKeyDown(event:KeyboardEvent) :void
                        if(event.keyCode==13){
                             stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
                             nWin.fullscreen();
                        }else if(event.keyCode==27){
                             stage.displayState = StageDisplayState.NORMAL;
                             nWin.normalscreen();
                        }else{
                             if((playing==0)&&(((event.keyCode>=48)&&(event.keyCode<=57))||((event.keyCode>=65)&&(event.keyCode<=67)))){
                                  playing=1;
                                  SWFconn.send("swfConnection", "reset");
                                  clearTimeout(intervalId);
                                  SWFconn.send("swfConnection", "select", String.fromCharCode(event.charCode));
                                  intervalId = setTimeout(sendLock,delay, String.fromCharCode(event.charCode));
                   private function sendLock(msg:String):void{
                        SWFconn.send("swfConnection", "lock", msg);
                        playing=1;
                        nWin.player.source = msg+".f4v";
                        nWin.player.play();
                   private function reset():void{
                        SWFconn.send("swfConnection", "reset");
                   public function playFinished():void{
                        reset();
                        playing =0;
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <mx:SWFLoader left="0" right="0" top="0" bottom="0" source="content.swf"/>
    </s:WindowedApplication>
    Video Window:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Window xmlns:fx="http://ns.adobe.com/mxml/2009"
                xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300" showStatusBar="false">
         <fx:Script>
              <![CDATA[
                   import mx.core.FlexGlobals;
                   import org.osmf.events.TimeEvent;
                   protected function CallBack(event:TimeEvent):void
                        // TODO Auto-generated method stub
                        player.source="";
                        FlexGlobals.topLevelApplication.playFinished();
                   public function fullscreen():void
                        stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
                   public function normalscreen():void
                        stage.displayState = StageDisplayState.NORMAL;
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:VideoDisplay id="player" left="0" right="0" top="0" bottom="0" complete="CallBack(event)"/>
    </s:Window>

    Hi Pierre,
    Would you mind adding this as a new bug report over at bugbase.adobe.com?  I went to look to see if there was an existing bug already in place but couldn't find one.  If you can, note this thread url in the bug and post back with the bug URL and I'll follow up internally.
    In Yue's original bug, he was able to narrow this down to memory leaks in the spark component video display.  He ended up working around it by using the mx video display.
    Thanks,
    Chris

  • My Ipad Air crashes every time after installing IO8

    With IO8 and the recent 8.0.2 my iPad Air crashes every time. Most of the crashes occurs when I'm using Safari. Does any body have the same problem?

    With IO8 and the recent 8.0.2 my iPad Air crashes every time. Most of the crashes occurs when I'm using Safari. Does any body have the same problem?

  • IPad Air crashes when beginning to enter password after doing iOS 7.1 update!

    I just did a iOS 7,1 software update to my iPad Air yesterday and now it crashes every time I begin entering my password on the first start-up attempt.  Then it is completely down with a black screen for approx 5 min before I can start it up again, at which time it will start after password is entered. 

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • Mac book air crashed, when restarted it gets stuck on grey screen

    I was using my MacBook Air (mountain lion osx) this afternoon as normal when the screen froze on me as if the computer had crashed. After a minute or two I decided to restart it by holding down the power button. The air turned off and back on, and got the the grey screen with the apple symbol as if it was re-booting but has been stuck there ever since?.
    Any idea what's happened and how to resolve please.
    Thanks in advance.

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    Step 1
    The first step in dealing with a boot failure is to secure your data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since your last backup, you can skip this step.   
    There are several ways to back up a Mac that is unable to boot. You need an external hard drive to hold the backup data.
         a. Boot into the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.”
    b. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, boot the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    c. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to boot, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can boot now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    If you've booted from an external storage device, make sure that your internal boot volume is selected in the Startup Disk pane of System Preferences.
    Step 3
    Boot in safe mode. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you boot in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, your boot volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 5.
    If you can boot and log in now, empty the Trash, and then open the Finder Info window on your boot volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then reboot as usual (i.e., not in safe mode.)
    If the boot process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 4
    Sometimes a boot failure can be resolved by resetting the NVRAM.
    Step 5
    Launch Disk Utility in Recovery mode (see Step 1.) Select your startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then reboot as usual.
    Step 6
    Reinstall the OS. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 7
    Repeat Step 6, but this time erase the boot volume in Disk Utility before installing. The system should automatically reboot into the Setup Assistant. Follow the prompts to transfer your data from a Time Machine or other backup.
    Step 8
    This step applies only to older Macs (not current models) that have a logic-board ("PRAM") battery. Both desktop and portable Macs used to have such a battery. The logic-board battery is separate from the main battery of a portable. A dead logic-board battery can cause a gray screen at boot. Typically the boot failure will be preceded by loss of the startup disk and system clock settings. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 9
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store to have the machine tested. If you can't get to an Apple Store, go to another authorized service provider.

  • Safari 7.1 hangs and crashes when any extension installed

    Hi
    after latest Safari upgrade (ver 7.1 seed 1), Safari hangs and crashes after I install any extensions. When I delete all extensions from extensions dir, the problem disappear.
    Thank's for any advice.
    Date/Time:       2014-07-12 10:14:58 +0200
    OS Version:      10.9.4 (Build 13E28)
    Architecture:    x86_64
    Report Version:  18
    Command:         Safari
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Version:         7.1 (9537.85.5)
    Build Version:   2
    Project Name:    WebBrowser
    Source Version:  7537085005000000
    Parent:          launchd [144]
    PID:             7146
    Event:           hang
    Duration:        7.99s
    Steps:           80 (100ms sampling interval)
    Hardware model:  MacBookPro11,2
    Active cpus:     8
    Fan speed:       2153 rpm
    Free pages:      534132 pages (+226260)
    Pageins:         2 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         Safari [7146]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:    x86_64
    Parent:          launchd [144]
    UID:             502
    Task size:       86388 pages (+7)
    CPU Time:        0.036s
      Thread 0x1ab7c    DispatchQueue 1          priority 47       
      80 start + 1 (libdyld.dylib) [0x7fff8c68c5fd]
        80 SafariMain + 267 (Safari) [0x10a683bcd]
          80 NSApplicationMain + 940 (AppKit) [0x7fff83e1c783]
            80 -[NSApplication run] + 553 (AppKit) [0x7fff83e3199c]
              80 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161 (Safari) [0x10a4b2690]
                80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122 (AppKit) [0x7fff83e3d89b]
                  80 _DPSNextEvent + 1434 (AppKit) [0x7fff83e3e24e]
                    80 _BlockUntilNextEventMatchingListInModeWithFilter + 65 (HIToolbox) [0x7fff8aa975bc]
                      80 ReceiveNextEventCommon + 479 (HIToolbox) [0x7fff8aa977b7]
                        80 RunCurrentEventLoopInMode + 226 (HIToolbox) [0x7fff8aa97a0d]
                          80 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff86309e75]
                            80 __CFRunLoopRun + 1525 (CoreFoundation) [0x7fff8630a6a5]
                              80 __CFRunLoopDoTimers + 298 (CoreFoundation) [0x7fff863c05aa]
                                80 __CFRunLoopDoTimer + 1151 (CoreFoundation) [0x7fff8634ef1f]
                                  80 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x7fff8634f3e4]
                                    80 WebCore::timerFired(__CFRunLoopTimer*, void*) + 20 (WebCore) [0x10bb23ec4]
                                      80 WebCore::ThreadTimers::sharedTimerFiredInternal() + 175 (WebCore) [0x10bb23faf]
                                        80 WebCore::DOMTimer::fired() + 318 (WebCore) [0x10bc8a0be]
                                          80 WebCore::ScheduledAction::execute(WebCore::Document*) + 144 (WebCore) [0x10bc8a250]
                                            80 WebCore::ScheduledAction::executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue, WebCore::ScriptExecutionContext*) + 537 (WebCore) [0x10bc8a4d9]
                                              80 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&, JSC::JSValue*) + 63 (JavaScriptCore) [0x10af5c7cf]
                                                80 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 438 (JavaScriptCore) [0x10ada0576]
                                                  80 JSC::JITCode::execute(JSC::VM*, JSC::ProtoCallFrame*) + 35 (JavaScriptCore) [0x10b0b4e83]
                                                    80 callToJavaScript + 311 (JavaScriptCore) [0x10b1268f3]
                                                      80 llint_entry + 22744 (JavaScriptCore) [0x10b12c3f0]
                                                        80 ??? [0x32eb0d80299a]
                                                          80 llint_entry + 22744 (JavaScriptCore) [0x10b12c3f0]
                                                            80 ??? [0x32eb0d80299a]
                                                              80 llint_entry + 10037 (JavaScriptCore) [0x10b12924d]
                                                                80 llint_slow_path_get_by_id + 696 (JavaScriptCore) [0x10af3f308]
                                                                  80 WebCore::JSHTMLEmbedElement::getOwnPropertySlot(JSC::JSObject*, JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&) + 28 (WebCore) [0x10c2d1d8c]
                                                                    80 WebCore::JSHTMLEmbedElement::getOwnPropertySlotDelegate(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&) + 24 (WebCore) [0x10bd9d7d8]
                                                                      80 bool WebCore::pluginElementCustomGetOwnPropertySlot<WebCore::JSHTMLEmbedElement, WebCore::JSHTMLElement>(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&, WebCore::JSHTMLEmbedElement*) + 195 (WebCore) [0x10bd9d8a3]
                                                                        80 WebCore::pluginElementCustomGetOwnPropertySlot(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&, WebCore::JSHTMLElement*) + 34 (WebCore) [0x10c38b622]
                                                                          80 WebCore::pluginScriptObject(JSC::ExecState*, WebCore::JSHTMLElement*) + 150 (WebCore) [0x10bcc6606]
                                                                            80 WebCore::HTMLPlugInElement::pluginWidget() const + 23 (WebCore) [0x10bcc66b7]
                                                                              80 WebCore::HTMLEmbedElement::renderWidgetForJSBindings() const + 70 (WebCore) [0x10bd9d906]
                                                                                80 WebCore::Document::updateLayoutIgnorePendingStylesheets(WebCore::Document::RunP ostLayoutTasks) + 297 (WebCore) [0x10bf80189]
                                                                                  80 WebCore::FrameView::flushAnyPendingPostLayoutTasks() + 111 (WebCore) [0x10c07bd9f]
                                                                                    80 WebCore::FrameView::updateEmbeddedObjects() + 159 (WebCore) [0x10c07bd0f]
                                                                                        80 WebCore::WidgetHierarchyUpdatesSuspensionScope::moveWidgets() + 299 (WebCore) [0x10bb40eab]
                                                                                          80 WebCore::ScrollView::addChild(***::PassRefPtr<WebCore::Widget>) + 125 (WebCore) [0x10bb85bbd]
                                                                                            80 WebCore::ScrollView::platformAddChild(WebCore::Widget*) + 145 (WebCore) [0x10c69dae1]
                                                                                              80 -[WebHTMLView addSubview:] + 50 (WebKitLegacy) [0x10b9154a2]
                                                                                                80 -[NSView addSubview:] + 364 (AppKit) [0x7fff83e527d4]
                                                                                                  80 -[NSView _setWindow:] + 2899 (AppKit) [0x7fff83e55190]
                                                                                                    80 -[WebBaseNetscapePluginView viewDidMoveToWindow] + 163 (WebKitLegacy) [0x10b924473]
                                                                                                      80 -[WebBaseNetscapePluginView start] + 212 (WebKitLegacy) [0x10b9246c4]
                                                                                                        80 -[WebHostedNetscapePluginView createPlugin] + 402 (WebKitLegacy) [0x10b924962]
                                                                                                          80 WebKit::NetscapePluginHostManager::instantiatePlugin(***::String const&, int, ***::String const&, WebHostedNetscapePluginView*, NSString*, NSArray*, NSArray*, NSString*, NSURL*, bool, bool, bool, bool) + 57 (WebKitLegacy) [0x10b9508d9]
                                                                                                            80 WebKit::NetscapePluginHostManager::hostForPlugin(***::String const&, int, ***::String const&) + 194 (WebKitLegacy) [0x10b924c32]
                                                                                                              80 WebKit::NetscapePluginHostManager::spawnPluginHost(***::String const&, int, unsigned int, unsigned int&, ProcessSerialNumber&) + 52 (WebKitLegacy) [0x10b924d44]
                                                                                                                80 WebKit::NetscapePluginHostManager::initializeVendorPort() + 161 (WebKitLegacy) [0x10b9251c1]
                                                                                                                  80 _WKPACheckInApplication + 133 (WebKitLegacy) [0x10b925265]
                                                                                                                    80 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8da19a1a]
                                                                                                                     *80 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1ab93    DispatchQueue 2          priority 49         cpu time   0.005s
      80 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff8a4f2136]
        80 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8da1e662]
         *80 ??? (mach_kernel + 3959520) [0xffffff80005c6ae0]
      Thread 0x1aba8    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 WebCore::IconDatabase::iconDatabaseSyncThread() + 295 (WebCore) [0x10bb0c0f7]
                80 WebCore::IconDatabase::syncThreadMainLoop() + 411 (WebCore) [0x10bb0e71b]
                  80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                   *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abb2    priority 63       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 thread_fun + 25 (QuartzCore) [0x7fff86fc22ad]
              80 CA::Render::Server::server_thread(void*) + 195 (QuartzCore) [0x7fff86fc2377]
                80 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8da19a1a]
                 *80 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1abb5    priority 63       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 __NSThread__main__ + 1318 (Foundation) [0x7fff85eec76b]
              80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348 (Foundation) [0x7fff85eec967]
                80 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff86309e75]
                  80 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8630a539]
                    80 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8630af15]
                      80 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8da19a1a]
                       *80 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff80002167d0]
      Thread 0x1abb8    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 __select + 10 (libsystem_kernel.dylib) [0x7fff8da1d9aa]
             *80 ??? (mach_kernel + 4079664) [0xffffff80005e4030]
      Thread 0x1abe7    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::BlockAllocator::blockFreeingThreadMain() + 227 (JavaScriptCore) [0x10ad5d983]
                80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                  80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                   *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abe8    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abe9    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abea    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abeb    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abec    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abed    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abee    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::BlockAllocator::blockFreeingThreadMain() + 227 (JavaScriptCore) [0x10ad5d983]
                80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                  80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                   *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abef    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf0    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf1    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf2    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]
                80 JSC::GCThread::waitForNextPhase() + 171 (JavaScriptCore) [0x10ad5e1cb]
                  80 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47 (libc++.1.dylib) [0x7fff8c3c5d43]
                    80 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff8da1d716]
                     *80 psynch_cvcontinue + 0 (pthread) [0xffffff7f80b51940]
      Thread 0x1abf3    priority 47       
      80 thread_start + 13 (libsystem_pthread.dylib) [0x7fff88339fc9]
        80 _pthread_start + 137 (libsystem_pthread.dylib) [0x7fff8833572a]
          80 _pthread_body + 138 (libsystem_pthread.dylib) [0x7fff88335899]
            80 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x10ad53c3f]
              80 JSC::GCThread::gcThreadMain() + 88 (JavaScriptCore) [0x10ad5e028]

    Here's a simple AppleScript I wrote to work around this 'issue'
    -- Safari_Extensions
    -- author: Matt D
    -- email: [email protected]
    -- created: 07.17.2014
    try -- ask whether or not to disable or enable Safari extensions
      display dialog "Safari Extensions" buttons {"Enable", "Disable", "Cancel"} with icon stop default button 1
      set userChoice to button returned of result
      if userChoice = "Disable" then
      do shell script "defaults write com.apple.Safari ExtensionsEnabled 0"
      display dialog "Extensions Disabled!" buttons {"Ok"} with icon applet default button 1
      else if userChoice = "Enable" then
      do shell script "defaults write com.apple.Safari ExtensionsEnabled 1"
      display dialog "Extensions Enabled!" buttons {"Ok"} with icon applet default button 1
      else if userChoice = "Cancel" then
      display dialog "You quit" buttons {"Ok"} with icon applet default button 1
      quit
      end if
    end try
    try -- Restart Safari with the Extension Flag set
      display dialog "Restart Safari?" buttons {"Restart", "Cancel"} with icon stop default button 1
      set userChoice to button returned of result
      if userChoice = "Restart" then
      do shell script "killall Safari; open -a Safari"
      else if userChoice = "Cancel" then
      quit
      end if
    end try
    Here's my blog post about it http://oramatt.com/2014/07/17/safari-extension-changer/

  • 2013 air crashes when asleep

    Hello, was wondering if any one out there has a 2013 MacBook Air, 13" to be exact, and when the computer falls asleep, completely, I try to wake it up and it crashes, or I should say no response what-so-ever.

    If you're running OS X 10.8.5 or earlier, then from the menu bar, select
     ▹ System Preferences... ▹ Accessibility
    If the checkbox at the bottom marked
    Enable access for assistive devices
    is checked, uncheck it and test.
    If you're running OS X 10.9 or later, select
     ▹ System Preferences... ▹ Security & Privacy ▹ Privacy ▹ Accessibility
    If any applications are listed on the right and have a checked box next to them, uncheck all the boxes and test. You may first have to click the padlock icon in the lower left corner of the window and authenticate as an administrator to unlock the settings.

  • Error message that no virtual memory pops up & crashes when application is run for more than 1 hour

    My application uses VISA serial operations. It has arrays to store data collected from various devices. I reinitialise the arrays each time the index reaches 50.
    Data acquisitions is carried out in separate threads by invoking the runVI method.
    When i run the application on Win XP continuaously for more than 1 hour it gives an error message that no more virtual memory to complete the task and the system hangs up.
    I open the serial port only once and close it when the application is terminated. But serial read/write operations are done continuaously
    Is the error caused due to memory leakage? How can i solve the problem. It's very urgent and i shall be thankful if i ge
    t the help.

    Yes, it sounds like a memory leakage (either that or you're trying to run an advanced app on an old computer w/ little memory and a small hard drive).
    Things to try:
    1. Ensure it's only labview, and not say labview and another application interacting. This isn't a likely case, but you never know what people have on their boxes and I've seen some weird things with virus scanners. Hit Ctrl-Shift-Esc to get the task manager. Go to processes and watch the memory consumption (click Memory twice to sort in descending order) of the various processes. If labview keeps rising, you've got a leak.
    2. If only a reasonable amount of memory is being used, double check your page file settings (read virtual memory).
    From the Control Panel
    Select System
    Select
    Advanced Tab
    Under Performance, select the Settings button
    Select Advanced Tab
    Under Virtual Memory, let windows dynamically adjust the page file (and any XP speed tweakers out there can now chime in about how wrong this is. This essentially allows windows to keep upping the virtual memory as needed by various processes.
    3. Find the leak. In LV Tools->Advanced->Profile VIs. Turn on memory stats. Start the profiler. Start your vi. If the vi crashes labview totally, you'll have to keep hitting snapshot to find the leaky vi (the one that's memory keeps growing).
    4. Upload the vi to the forum so we can give it a looksee.
    G'luck
    2006 Ultimate LabVIEW G-eek.

  • PC crashes when itunes is installed and I connect my iphone

    I am running Windows XP Home and just reformatted my hard drive in an effort to figure out why my pc would crash every time I hooked up my iphone 4S via USB. The pc screen would go black immediately and then the pc would reboot.
    I have service pack 3 and all my windows updates are up to date. All my drivers are also up to date. I have not installed a printer, web cam, or other imaging device. I could now plug my iphone in via USB and windows xp recognized it as an image device and opened a folder with all of my iphone photos inside it.
    However, as soon as I installed the latest version of itunes and tried to conect my iphone to synch, my pc crashed as it had before, with the black screen and reboot. As long as itunes is installed it does this every time.
    I uninstalled itunes and my pc went back to recognizing the iphone as an image device and opens a folder with all of my iphone photos inside it.
    Any thoughts on what's happening here?  I am stumped and don't know what else to try.  Thanks!  :-)

    Is your computer a laptop computer or a desktop?
    Look at the underside if it is a laptop and you should find the make/model. Look at the back if it is a desktop.
    Even more basic, is it a Mac (Apple computer) or a PC?
    To find the OS if it is a PC, do a restart when it reboots it should say WindowsXP or Windows Vista, or Windows 7. If it is a Mac click on the Apple in the top left hand corner then click on About this Mac. A window will open and you should find the OS version number, like 10.4.11 or 10.5.8.

  • Itunes crashes when Podcasts begin downloading

    Every time I start up itunes it crashes after the podcast begin downloading.  I have to open task manager to shut down itunes.  I have tried creating a different user account, it seems to be a system wide issue.  I have tried the suggestions on the apple support site but nothing has worked.  Please help, ty

    Hi Keithgspar1,
    Welcome to Apple Support Communities.
    It sounds like you're seeing an issue where iTunes is quitting unexpectedly when working with podcasts. The article linked below provides a lot of great troubleshooting suggestions that can help you isolate and resolve the issue.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    I hope this helps.
    -Jason

  • Crash when attempting to install panther and jaguar

    Hello,
    Few days ago I suffered a nasty crash (kernel panic I think) from using Windows Media Player 9 and a partially downloaded movie. After that the computer was unable to restart. Blue screen after showing the starting up window and nothing more. (I asked about that in this thread "what are my chances of full/partial recovery?" http://discussions.apple.com/thread.jspa?threadID=1008280&tstart=0 ).
    Managed to get all my personal files off the crashed Powerbook via another machine using firewire disk target mode. Having managed to successfully do that I thought it was going to be plain sailing from then on. I used Disk Utility to reformat the drive including overwriting with zeros, and the Powerbook drive appeared on the other machine's desktop completely empty and looking fine.
    Having disconnected it from the other machine, using Panther install CD 1 to install Panther I got a kernel panic, the message in multiple languages including Japanese saying restart computer, soon after clicking the Install button.
    I tried starting from the Jaguar install disk 1, choosing Disk Utilities to reformat the drive again (without zeroing it this time) and tried to install Jaguar instead. Soon after clicking Install the screen went entirely black with a bit of white text in the top left: The installer has quit due to an unexpected error (exit code 0). Please restart your computer.
    What's going on? The computer was working fine before the Windows Media Player crash (which occured when viewing movie in full screen mode). I've wiped and reformated the disk and now can't install Panther or Jaguar. What could the problem be? Firmware? I'm guessing without knowing anything. I'm v. surprised the problem is continuing after reformatting the drive. That indicates that the crash effected something other than the contents of the drive?! which I thought was impossible.
    Any suggestions would be much apprecaited.
    Thanks.

    Hello,
    Thanks for the replies/info.
    Yes the Panther and Jaguar install disks are retail versions, not specific machine versions. And the Jaguar ones worked for the Powerbook before.
    The Powerbook I have is the Firewire 500mhz one, Pismo I think it's called. The hard drive is a 60GB one. I didn't have to partition it before.
    Reviewing all the above, it would appear that the problem is me not being able to use an internal, built in CD/DVD drive to install from this time? The only other thing it could be I think is the crash I recently had has had some bad effect -- but that's unlikely right? So, I need to get a new DVD drive? Or is there any other way to get the OS onto the Powerbook without getting another internal DVD/CD drive? Is there anyway to install onto the PB from another machine maybe?
    Does that sound right?: not being able to use internal DVD/CD drive is the source of my current problem?
    Thanks.

Maybe you are looking for