"application cannot be found" when trying to open certain files

  Recently i upgraded my computer to Mavericks recently and I've been having a problem opening certain files.  In one day I upgraded to Mavericks and I also updated my Adobe programs to the Creative Cloud.  Ever since then I cannot open any of my Adobe files.  They are all saved as under the CS4 legacy format.  I uninstalled CS4 after installing the Creative Cloud.  Every time I try to open one of these files previously created in CS4, whether it is a photoshop ot illustrator file, I get the error message "The application cannot be found".  I also can see no preview or thumbnails for the files.  I talked to Adobe Support and we went through a process of deleting my preferences and it didn't work.  I restarted my machine and it worked.  It worked for a day and now after starting up my machine today it is saying the same thing again.  After a while it just out of nowhere started working again.  I'll be clear and say that I was logged into my adobe account and there were no network interuptions. 
By the way, the new versions (Creative Cloud) of the adobe programs all work just fine and If I save something then it works fine.  It is only when trying to read a file from a previous format. 

If you are attempting to start Adobe Creative Cloud by opening a file created by its previous version, open the Adobe Creative Cloud app first, then choose Open from its File menu and select the old file. The files you are attempting to open were associated with the version you used to create them, which is now gone.
After opening them, save them again. From then on, opening them will probably open Adobe CC directly.

Similar Messages

  • File cannot be found when trying to open emailed fdf file

    Hello all. I'm starting to lose my mind here so I thought I'd ask the community for any help. I'm using Acrobat Pro X. I have a PDF that a new hire is supposed to fill out. All the fields work and save just fine. There's 2 buttons at the end of the document set to email certain fields to a specific email address. When either button is clicked, an .fdf file is attached to a new outlook message. The problem is when the recipient tries to open the attachment, Adobe Acrobat X Pro (and Reader XI) comes up with the following message:
    "The file you are attempting to open contains comments or form data that are supposed to be placed . This document cannot be found. It may have been moved, or deleted. Would you like to browse to attempt to locate this document?"
    The original file is located on a mapped network drive (the same drive letter on both computers). The same message comes up even on the computer the email was sent from. I saved the document with "Enable Additional Features" enabled. I'm getting close to wits end. I need to be able to send the email outside the network but don't want to include the entire PDF as it has confidential information. Any suggestions?

    So the recipients will need an original copy of the PDF in order to import the fdf? I know they'll get confused with that. Is there a way to just email the fields in a text file?

  • "application descriptor not found" when trying to create .ane file

    I have been trying to create a very simple native extention for the better part of a week now and I just can't seem to figure it out.
    Using tutorials and guides from the following sources:
    http://www.adobe.com/devnet/air/articles/extending-air.html
    http://www.adobe.com/content/dam/Adobe/en/devnet/devices/pdfs/DevelopingActionScriptExtens ionsForAdobeAIR.pdf
    http://custardbelly.com/blog/2011/09/21/air-native-extension-example-ibattery-for-ios/
    I managed to get up to the point where I need to create the ane file, but I am getting "application descriptor not found".
    So, here is the detailed explanation of everything I have done to date. Can someone tell me where I have gone wrong?
    1. On the mac, I created an xcode project, using the iBattery example code from the link above, I managed to create static library .a file. I am not going to discount the possiblity that there are many errors still in this file, but I am going to assume for the moment that my current problem is not related to any issues in this static library.
    2. Copied the static library "DaveExtention.a" to my PC where I have flash CS5.5 installed (yes, I know there is a typo in the name)
    3. In my app folder, I created a lib folder that now contains the following files:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension.fla
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension-app.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\DaveExtension.as
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\BatteryStateEnum.as
    I set my project to compile an swc into the build folder and simply put the following code into my project:
    import com.extensions.DaveExtension.BatteryStateEnum;
    import com.extensions.DaveExtension.DaveExtension;
    var ext:DaveExtension = new DaveExtension;
    var batterystate:BatteryStateEnum;
    stop();
    I then publish the swc.
    4. Once the swc is created in the build folder, I copy the libDaveExtention.a to the build folder and create the extension.xml file, which looks like this:
    <extension xmlns="http://ns.adobe.com/air/extension/2.5">
      <id>com.extensions.DaveExtension</id>
      <versionNumber>1</versionNumber>
      <platforms>
        <platform name="iPhone-ARM">
            <applicationDeployment>
                <nativeLibrary>libDaveExtention.a</nativeLibrary>
                <initializer>ExtInitializer</initializer>
                <finalizer>ExtFinalizer</finalizer>
            </applicationDeployment>
        </platform>
      </platforms>
    </extension>
    5. I make a copy of the swc file and rename it to .zip... I then extract library.swf from it and delete the zip. My build folder now looks like this:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\DaveExtension.swc
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\extension.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\libDaveExtention.a
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\library.swf
    6. I downloaded the flex 4.5.1.21328 sdk and the Air 3.0 sdk, which I copied into the flex sdk folder (which is located in "D:\SDKs\flex_sdk_4.5.1.21328")
    7. In my build folder, I create a simple batch file called buildane.bat with the following command:
    D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    8. I then open a command prompt to my build folder and run buildane.bat and this is my output:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>buildane.bat
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    application descriptor not found
    No matter what I try, I can't get passed this.
    Can anyone tell me what I am doing wrong?

    >>D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    Either its a typo or by mistake you wrote adl in yout bat file. Change it to adt since that is the file that will package your ane. adl is just used for debugging/running on Desktop.
    Hope this helps. let me know how it goes.
    Thanks,
    Meet

  • Apple Application Support not found when trying to open iTunes

    iTunes not opening. Error 2 message keeps popping up saying that Apple Application Support is not found. (Dont' know where it went!!!) It's asking me to uninstall and reinstall iTunes. B4 I do, will I lose my library and have to start over?

    downloaded winrar and extracted that bfile, haha answered my own question,

  • External drive changed from F to G drive and folders that were associated with F cannot be found when trying to open them in develop mode

      how have I changed the drive from F to G  and how do I access from F now or how do I transfer to G

    You need to relocate the folders in the library. Read here.
    Do this on the topmost folder that is showing a '?'.

  • Keep getting error code 2048 when trying to open wmv files, says realplayer cannot open with the installed version of Quicktime, any suggestions?

    Keep getting error code 2048 when trying to open wmv files, says realplayer cannot open with the installed version of Quicktime, any suggestions?

    wmv is a Windows Media format.  I don't know why Realplayer is coming into it since that deals primarily with Real format files and maybe a few generic formats.
    You need
    Free Flip4mac QuickTime player components - http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx
    After installation a new Flip4Mac pane will appear in System Preferences.  Make sure you set the boxes to ensure that it will play WMV files in Quicktime.
    or play the files with VLC
    VLC media player - http://www.videolan.org/vlc/ - general media player that plays just about anything.
    While you're at it you might install:
    Perian codecs for Quicktime - http://www.perian.org - plugins to add functionality to Quicktime for playing additional audio and video formats
    Quicktime audio problems, Perian, VLC - http://discussions.apple.com/message.jspa?messageID=9013669 - read note about uninstalling prior DIVX support before installing Perian.
    Perian doen't do WMV but it's handy to get many things to play in Quicktime.
    Note, if these are protected WMV, nothing on a Mac will play those (unless you also have Windows installed).

  • Why does message say application components are missing when trying to open Photoshop?

    why does message say application components are missing when trying to open Photoshop?

    The probable causes are:
    A bad, or incomplete install
    Inability of the program to access the location of those components
    Deleted files, that are required for those components
    What is the exact text of the error message?
    Good luck,
    Hunt

  • Having used Distort crashes CS4 when trying to open additional files

    I have a strange problem that I've started experiencing since upgrading my PC. I was previously running CS4 and Lightroom 2 without problems on Windows XP Pro 32 bit - I recently upgraded to new hardware and Windows Vista 64 bit so that I could use more RAM as I was regularly receiving running out of RAM messages when working on large print resolution files.
    My current setup is:
    P6T Motherboard
    Intel Core i7 CPU 2.67 GHz
    12 GB RAM
    Windows Vista Ultimate 64 bit
    NVIDIA GeForce 880 GTS video card
    One entire physical disk (70 GBs) solely as a scratch disk
    More than half of C drive free
    Other disks with free space in scratch disk list
    I have narrowed it down to a specific activity:
    1) From Lightroom I choose 'Edit in Photoshop' (a RAW file) I could open more than one file at this point, no problem yet
    2) Once a file or files are opened I choose to implement a Distort/Twirl (I have a very specific reason for using this command, developing elements for other creative works)
    3) Having performed a Twirl distortion, I then choose to open another RAW file from Lightroom, choose Edit in Photoshop - Photoshop then just hangs, without opening the file and I see the message that it has stopped responding. I then have to forcibly end Photoshop and reopen it
    4) This still occurs if from Lightroom, I choose 'Show in Explorer' and then try to open the RAW file by itself, Photoshop stops responding
    I seem to get very good performance on other things I've tried. For example, choosing 22 files with varying focal lengths to Merge to Panorama in Photoshop - goes without a hitch.... Again it seems specifically linked to having performed the distort effect. Also tried Distort/Wave and the same occurred, stopped responding when trying to open another file.
    Have deleted prefs files, reinstalled Lightroom etc, turned off Open GL, twiddled with the cache and RAM levels, turned off export clipboard etc... still the same.
    Any ideas?
    Can anyone replicate this?

    It hangs.... That is the application window stays up, but nothing further happens and the top information bar says the application is not responding. I don't think it has anything to do with Lightroom...
    I have narrowed this problem down to being specifically related to the 64 bit version of CS4 Photoshop Extended. I have tested the same procedure in 32 bit Photoshop without incident.
    I have to say this is pretty distressing as the procedure I am trying to carry out is at the heart of my original motivation to take the plunge and do the whole 64 bit upgrade, particularly being able to access all the RAM I now have. Using the 32 bit version in many ways plunges me back to where I started... :-(
    I have spent the whole of today uninstalling the whole Creative Suite, running the cleaning utilites etc, reinstalling, uninstalling (many, many times with various problems with the installation process) and still have the same problem (although now, I cannot install Acrobat Pro, the installation fails - but that's another issue). I currently have Lightroom2 uninstalled and am experiencing the exact same problem.
    This is it in a nutshell:
    1) Open any RAW file in Photoshop 64 bit (I am opening.RAF files)
    2) Apply a Distort/Twirl to it
    3) TRY to open another RAW file
    At this point, the file will not open and Photoshop will stop responding - requiring a forcible shut down and the loss of any unsaved work
    Could it be something related to Adobe Camera RAW? I have now found that if I open a photoshop file after performing a Distort/Twirl for example, the problem does not occur. So it perhaps points to the ACR app?

  • Photoshop CS6 and Illustrator CS6 crash unexpectedly when trying to open a file

    Photoshop CS6 and Illustrator CS6 crash unexpectedly when trying to open a file.  I'm on OSX 10.6.8.  I installed the software through Creative Cloud.  I tried deleting preferences and it still doesn't work.  Here is the error details.
    Process:         Adobe Photoshop CS6 [254]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.0 (20120315.r.428)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2012-09-19 09:50:58.644 -0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          53721 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  3290 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      420A7D57-F2CF-4101-9FAD-545C1E92B4BA
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x1084e9208: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff891410b6 __kill + 10
    1   ???                                     0x00000001039c11d0 0 + 4355527120
    2   libSystem.B.dylib                       0x00007fff891e19f6 abort + 83
    3   libSystem.B.dylib                       0x00007fff891d062d szone_error + 519
    4   libSystem.B.dylib                       0x00007fff890fa854 small_malloc_from_free_list + 473
    5   libSystem.B.dylib                       0x00007fff890f71e1 szone_malloc_should_clear + 2070
    6   libSystem.B.dylib                       0x00007fff890f8d1a malloc_zone_calloc + 92
    7   libSystem.B.dylib                       0x00007fff890fc7bb calloc + 57
    8   com.apple.ColorSync                     0x00007fff85240d37 CMMMemMgr::New(unsigned long) + 89
    9   com.apple.ColorSync                     0x00007fff85240d8d CMMBase::NewInternal(unsigned long, CMMMemMgr&, char const*) + 23
    10  com.apple.ColorSync                     0x00007fff85240de6 CMMTable::CMMTable(unsigned long, CMMMemMgr&) + 60
    11  com.apple.ColorSync                     0x00007fff8524da37 CMMCurveTag::MakeLutTable(CMMFloatLutInfo*, CMMMemMgr&, CMMLutRangeMapping, double) + 517
    12  com.apple.ColorSync                     0x00007fff8523af68 CMMRGBCurves::MakeLutTable(CMMFloatLutInfo*, CMMMemMgr&, unsigned int) + 128
    13  com.apple.ColorSync                     0x00007fff8524f3af ConversionManager::AddMatrixConv(CMMXYZTag* (&) [3], CMMRGBCurves&) + 69
    14  com.apple.ColorSync                     0x00007fff8525c4fa ConversionManager::MakeConversionSequence(CMMProfileInfoContainer*, CMMColorConversionInfo*) + 990
    15  com.apple.ColorSync                     0x00007fff8525dc35 DoInitializeTransform + 765
    16  com.apple.ColorSync                     0x00007fff8525e359 AppleCMMInitializeTransform + 164
    17  com.apple.ColorSync                     0x00007fff8528bd08 ColorSyncCMMInitializeTransform + 112
    18  com.apple.ColorSync                     0x00007fff8523227b ColorSyncTransformCreate + 1964
    19  libCSync.A.dylib                        0x00007fff89784126 create + 1059
    20  libCSync.A.dylib                        0x00007fff8977dbb2 aquireColorWorldByAttributes + 379
    21  libCSync.A.dylib                        0x00007fff8977d9c0 acquireColorWorld + 107
    22  libCSync.A.dylib                        0x00007fff8977d863 CMSTransformConvertComponents + 84
    23  com.apple.CoreGraphics                  0x00007fff801e6ff4 CGCMSInterfaceTransformConvertColorComponents + 56
    24  com.apple.CoreGraphics                  0x00007fff801e6196 CGColorTransformConvertColorFloatComponents + 370
    25  com.apple.CoreGraphics                  0x00007fff801e5fa3 CGColorTransformConvertColorComponents + 143
    26  com.apple.CoreGraphics                  0x00007fff8021159c CGColorTransformConvertColor + 185
    27  com.apple.AppKit                        0x00007fff829e4d5c convertColorToColorSpaceNamed + 375
    28  com.apple.AppKit                        0x00007fff829e4ac5 -[NSCalibratedWhiteColor colorUsingColorSpaceName:device:] + 262
    29  com.apple.AppKit                        0x00007fff82a39b3b -[NSTextFieldCell drawWithFrame:inView:] + 227
    30  com.apple.AppKit                        0x00007fff82a34444 -[NSControl drawRect:] + 405
    31  com.apple.AppKit                        0x00007fff82a2ccc5 -[NSView _drawRect:clip:] + 3390
    32  com.apple.AppKit                        0x00007fff82a2b938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    33  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    34  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    35  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    36  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    37  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    38  com.apple.AppKit                        0x00007fff82a2a00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 767
    39  com.apple.AppKit                        0x00007fff82a29b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 254
    40  com.apple.AppKit                        0x00007fff82a263de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    41  com.apple.AppKit                        0x00007fff8299fc0e -[NSView displayIfNeeded] + 969
    42  com.apple.AppKit                        0x00007fff82967c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    43  com.apple.AppKit                        0x00007fff82ba927f -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 734
    44  com.apple.AppKit                        0x00007fff82ba8ce7 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextIn fo:] + 714
    45  com.apple.AppKit                        0x00007fff82ba8a18 -[NSApplication beginModalSessionForWindow:] + 36
    46  com.apple.AppKit                        0x00007fff82ba893a -[NSApplication runModalForWindow:] + 106
    47  com.apple.AppKit                        0x00007fff82e0e112 -[NSSavePanel runModal] + 318
    48  com.adobe.Photoshop                     0x000000010192f56e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17667086
    49  com.adobe.Photoshop                     0x00000001005b3050 0x100000000 + 5976144
    50  com.adobe.Photoshop                     0x0000000100c4dcc5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4160357
    51  com.adobe.Photoshop                     0x00000001005b3f4a 0x100000000 + 5979978
    52  com.adobe.Photoshop                     0x0000000100c51b02 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4176290
    53  com.adobe.Photoshop                     0x000000010061b102 boost::system::system_error::what() const + 338690
    54  com.adobe.Photoshop                     0x00000001006145b7 boost::system::system_error::what() const + 311223
    55  com.adobe.Photoshop                     0x0000000100614674 boost::system::system_error::what() const + 311412
    56  com.adobe.Photoshop                     0x00000001005b0c02 0x100000000 + 5966850
    57  com.adobe.Photoshop                     0x00000001005b77ec 0x100000000 + 5994476
    58  com.adobe.Photoshop                     0x00000001005ad3ae 0x100000000 + 5952430
    59  com.adobe.Photoshop                     0x000000010001faa2 0x100000000 + 129698
    60  com.adobe.Photoshop                     0x0000000101920e04 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17607844
    61  com.apple.AppKit                        0x00007fff829356de -[NSApplication run] + 474
    62  com.adobe.Photoshop                     0x0000000101920402 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17605282
    63  com.adobe.Photoshop                     0x000000010192266e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614094
    64  com.adobe.Photoshop                     0x00000001005ae27c 0x100000000 + 5956220
    65  com.adobe.Photoshop                     0x00000001007b074f boost::system::system_error::what() const + 1999183
    66  com.adobe.Photoshop                     0x00000001007b0999 boost::system::system_error::what() const + 1999769
    67  com.adobe.Photoshop                     0x000000010054b24c 0x100000000 + 5550668
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8910dadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8910d7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8910d2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8910cc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 2:  Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8912d8f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff8912d863 usleep + 57
    3   com.apple.DesktopServices               0x00007fff88abce1e TNode::WaitToBeSynced(bool) + 156
    4   com.apple.DesktopServices               0x00007fff88abcbfa TNode::StSynchronize::StSynchronize(TNodePtr const&, unsigned int) + 200
    5   com.apple.DesktopServices               0x00007fff88af6ea7 TNode::GetNodeFromPathName(TUString const&, TNodePtr&) + 83
    6   com.apple.DesktopServices               0x00007fff88ac66ba TNode::FindUserFolder(unsigned int, bool, TNodePtr&) + 212
    7   com.apple.DesktopServices               0x00007fff88ac6419 TNode::SetSpecialNodeFromOStype(unsigned int) + 133
    8   com.apple.DesktopServices               0x00007fff88ac6313 TNode::SetSpecialNode(unsigned int, TNodePtr&) + 263
    9   com.apple.DesktopServices               0x00007fff88ac052c TNode::GetSpecialNodeWithStatus(unsigned int, OpaqueNodeRequest* const&, unsigned int, TNodePtr&) + 552
    10  com.apple.DesktopServices               0x00007fff88ad6b94 TNode::GetSpecialNode(unsigned int, OpaqueNodeRequest* const&, unsigned int) + 44
    11  com.apple.DesktopServices               0x00007fff88ad6b09 TNode::IsDesktop() const + 103
    12  com.apple.DesktopServices               0x00007fff88ad646d TNode::ResolveSharedFileListAliasIfNeeded() + 739
    13  com.apple.DesktopServices               0x00007fff88abe6d5 TNode::SynchronizeChildren(unsigned int, TNodeEventPtrSet&) + 4139
    14  com.apple.DesktopServices               0x00007fff88abd242 TNode::HandleSync(unsigned int) + 736
    15  com.apple.DesktopServices               0x00007fff88abcf33 TNode::HandleSync(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 45
    16  com.apple.DesktopServices               0x00007fff88afb964 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1052
    17  com.apple.DesktopServices               0x00007fff88abb4a8 __PostNodeTaskRequest_block_invoke_2 + 98
    18  libSystem.B.dylib                       0x00007fff8912ed64 _dispatch_call_block_and_release + 15
    19  libSystem.B.dylib                       0x00007fff8910d8d2 _dispatch_queue_drain + 251
    20  libSystem.B.dylib                       0x00007fff8910d734 _dispatch_queue_invoke + 57
    21  libSystem.B.dylib                       0x00007fff8910d2de _dispatch_worker_thread2 + 252
    22  libSystem.B.dylib                       0x00007fff8910cc08 _pthread_wqthread + 353
    23  libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8910ca2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff8910ce3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001210450f3 main + 8403
    3   MultiProcessor Support                  0x00000001210451b0 main + 8592
    4   MultiProcessor Support                  0x0000000121061f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 37:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 38:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 39:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 40:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 41:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051912c9 0x105158000 + 234185
    6   com.adobe.ACE                           0x00000001051905da 0x105158000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 42:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.Photoshop                     0x0000000101958e99 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17837369
    3   com.adobe.Photoshop                     0x000000010195837e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17834526
    4   com.adobe.Photoshop                     0x00000001017de496 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16286518
    5   com.adobe.Photoshop                     0x0000000101958160 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17833984
    6   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 43:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8912d8f9 nanosleep + 148
    2   com.adobe.PSAutomate                    0x00000001390089cb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate                    0x0000000138fee7c9 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.PSAutomate                    0x0000000139008d36 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 44:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 45:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 46:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 47:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 48:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine                    0x000000013b29ae79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 49:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine                    0x000000013b29ac0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine                    0x000000013b048ec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000013b29acd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine                    0x000000013b29ad4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine      

    Hi Chris,
    I just tried to create and save a new custom color setting in Photoshop and it crashed on me as soon as I hit save.  I was using a custom color setting that I had created a couple of days ago.  I tried deleting preferences again which doesn't seem to help.  Here's the problem details.
    Process:         Adobe Photoshop CS6 [845]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.1 (13.0.1.519)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [102]
    Date/Time:       2012-09-19 13:47:34.159 -0700
    OS Version:      Mac OS X 10.6.8 (10K540)
    Report Version:  6
    Interval Since Last Report:          66277 sec
    Crashes Since Last Report:           32
    Per-App Interval Since Last Report:  2012 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      420A7D57-F2CF-4101-9FAD-545C1E92B4BA
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff890fa9c7 small_malloc_from_free_list + 844
    1   libSystem.B.dylib                       0x00007fff890f71e1 szone_malloc_should_clear + 2070
    2   libSystem.B.dylib                       0x00007fff890f698a malloc_zone_malloc + 82
    3   com.apple.Foundation                    0x00007fff88e5fb08 allocateCollectableUnscannedStorage + 51
    4   com.apple.Foundation                    0x00007fff88e6d2b5 -[NSConcreteMapTable grow] + 187
    5   com.apple.Foundation                    0x00007fff88e6bf56 -[NSConcreteMapTable setObject:forKey:] + 159
    6   com.apple.AppKit                        0x00007fff82a2b7c9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 958
    7   com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    8   com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    9   com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    10  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    11  com.apple.AppKit                        0x00007fff82a2bca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    12  com.apple.AppKit                        0x00007fff82a2a00a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 767
    13  com.apple.AppKit                        0x00007fff82a29b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 254
    14  com.apple.AppKit                        0x00007fff82a263de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    15  com.apple.AppKit                        0x00007fff8299fc0e -[NSView displayIfNeeded] + 969
    16  com.apple.AppKit                        0x00007fff82967c3b -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1050
    17  com.apple.AppKit                        0x00007fff82ba927f -[NSApplication _orderFrontModalWindow:relativeToWindow:] + 734
    18  com.apple.AppKit                        0x00007fff82ba8ce7 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextIn fo:] + 714
    19  com.apple.AppKit                        0x00007fff82ba8a18 -[NSApplication beginModalSessionForWindow:] + 36
    20  com.apple.AppKit                        0x00007fff82ba893a -[NSApplication runModalForWindow:] + 106
    21  com.apple.AppKit                        0x00007fff82e0e112 -[NSSavePanel runModal] + 318
    22  com.adobe.Photoshop                     0x000000010039402d 0x100000000 + 3751981
    23  com.adobe.Photoshop                     0x00000001000c4379 0x100000000 + 803705
    24  com.adobe.Photoshop                     0x000000010059e4db 0x100000000 + 5891291
    25  com.adobe.Photoshop                     0x000000010059b40e 0x100000000 + 5878798
    26  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    27  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    28  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    29  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    30  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    31  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    32  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    33  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    34  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    35  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    36  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    37  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    38  com.adobe.Photoshop                     0x00000001005bf6bc 0x100000000 + 6026940
    39  com.adobe.Photoshop                     0x00000001005b92ef 0x100000000 + 6001391
    40  com.adobe.Photoshop                     0x0000000101917ba8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17568264
    41  com.adobe.Photoshop                     0x00000001005bf74f 0x100000000 + 6027087
    42  com.adobe.Photoshop                     0x0000000101920088 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17602280
    43  com.apple.AppKit                        0x00007fff82ac4eda -[NSApplication sendAction:to:from:] + 95
    44  com.adobe.Photoshop                     0x0000000101922f8c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614316
    45  com.apple.AppKit                        0x00007fff82ac4e39 -[NSControl sendAction:to:] + 94
    46  com.apple.AppKit                        0x00007fff82b5084b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    47  com.apple.AppKit                        0x00007fff82b8137a -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    48  com.apple.AppKit                        0x00007fff82b4f2f5 -[NSControl mouseDown:] + 624
    49  com.apple.AppKit                        0x00007fff82a693a7 -[NSWindow sendEvent:] + 5409
    50  com.adobe.Photoshop                     0x00000001019b1c47 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18199207
    51  com.apple.AppKit                        0x00007fff8299eafa -[NSApplication sendEvent:] + 4719
    52  com.adobe.Photoshop                     0x0000000101922dcd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17613869
    53  com.adobe.Photoshop                     0x00000001019222ae AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17611022
    54  com.adobe.Photoshop                     0x00000001005be155 0x100000000 + 6021461
    55  com.adobe.Photoshop                     0x00000001005ad63e 0x100000000 + 5953086
    56  com.adobe.Photoshop                     0x000000010001f312 0x100000000 + 127762
    57  com.adobe.Photoshop                     0x00000001005ba9ca 0x100000000 + 6007242
    58  com.adobe.Photoshop                     0x000000010018d11e 0x100000000 + 1626398
    59  com.adobe.Photoshop                     0x000000010018d3dc 0x100000000 + 1627100
    60  com.adobe.Photoshop                     0x000000010055bffa 0x100000000 + 5619706
    61  com.adobe.Photoshop                     0x00000001005a0d03 0x100000000 + 5901571
    62  com.adobe.Photoshop                     0x0000000100591c0f 0x100000000 + 5839887
    63  com.adobe.Photoshop                     0x0000000100023e98 0x100000000 + 147096
    64  com.adobe.Photoshop                     0x000000010061493e boost::system::system_error::what() const + 311358
    65  com.adobe.Photoshop                     0x0000000100614974 boost::system::system_error::what() const + 311412
    66  com.adobe.Photoshop                     0x00000001005b0ed2 0x100000000 + 5967570
    67  com.adobe.Photoshop                     0x00000001005b7abc 0x100000000 + 5995196
    68  com.adobe.Photoshop                     0x00000001005ad63e 0x100000000 + 5953086
    69  com.adobe.Photoshop                     0x000000010001f312 0x100000000 + 127762
    70  com.adobe.Photoshop                     0x00000001019218a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17608452
    71  com.apple.Foundation                    0x00007fff88ebdcb5 __NSFireTimer + 114
    72  com.apple.CoreFoundation                0x00007fff827b1be8 __CFRunLoopRun + 6488
    73  com.apple.CoreFoundation                0x00007fff827afdbf CFRunLoopRunSpecific + 575
    74  com.apple.HIToolbox                     0x00007fff86f2c7ee RunCurrentEventLoopInMode + 333
    75  com.apple.HIToolbox                     0x00007fff86f2c551 ReceiveNextEventCommon + 148
    76  com.apple.HIToolbox                     0x00007fff86f2c4ac BlockUntilNextEventMatchingListInMode + 59
    77  com.apple.AppKit                        0x00007fff8296feb2 _DPSNextEvent + 708
    78  com.apple.AppKit                        0x00007fff8296f801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    79  com.apple.AppKit                        0x00007fff8293568f -[NSApplication run] + 395
    80  com.adobe.Photoshop                     0x00000001019219d2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17608754
    81  com.adobe.Photoshop                     0x0000000101923c3e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17617566
    82  com.adobe.Photoshop                     0x00000001005ae50c 0x100000000 + 5956876
    83  com.adobe.Photoshop                     0x00000001007b0f8f boost::system::system_error::what() const + 2000527
    84  com.adobe.Photoshop                     0x00000001007b11d9 boost::system::system_error::what() const + 2001113
    85  com.adobe.Photoshop                     0x000000010054b4dc 0x100000000 + 5551324
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff8910dadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff8910d7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff8910d2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff8910cc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff8910caa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 21:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 22:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 23:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 24:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   MultiProcessor Support                  0x00000001209450f3 main + 8403
    3   MultiProcessor Support                  0x00000001209451b0 main + 8592
    4   MultiProcessor Support                  0x0000000120961f50 main + 126768
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 27:
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   ...dobe.dvatransport.framework          0x0000000127fbd5b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   ...dobe.dvatransport.framework          0x0000000127fc927b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   ...dobe.dvatransport.framework          0x0000000127fb1ab5 SkyConnectionEnv::MainLoop() + 117
    4   ...dobe.dvatransport.framework          0x0000000127fb1b19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    6   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...dobe.dvatransport.framework          0x0000000127fc94df boost::asio::detail::task_io_service::run(boost::system::error_code&) + 1167
    3   ...dobe.dvatransport.framework          0x0000000127fc9acd boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 61
    4   ...dobe.dvatransport.framework          0x0000000127fbbd99 boost_asio_detail_posix_thread_function + 25
    5   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 29:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 30:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 31:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000127bb21e1 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 193
    6   com.adobe.dvacore.framework             0x0000000127b998b3 boost::function0<void>::operator()() const + 51
    7   com.adobe.dvacore.framework             0x0000000127ba82f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 99
    8   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    9   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 32:
    0   libSystem.B.dylib                       0x00007fff8910bc0a kevent + 10
    1   ...dobe.dvatransport.framework          0x0000000127fbd5b3 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 243
    2   ...dobe.dvatransport.framework          0x0000000127fc927b boost::asio::detail::task_io_service::run(boost::system::error_code&) + 555
    3   ...dobe.dvatransport.framework          0x0000000127fb1ab5 SkyConnectionEnv::MainLoop() + 117
    4   ...dobe.dvatransport.framework          0x0000000127fb1b19 SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    5   ...obe.boost_threads.framework          0x0000000127a99f25 thread_proxy + 133
    6   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 33:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 34:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 35:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 36:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 37:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 38:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 39:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 40:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 41:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 42:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 43:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 44:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 45:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 46:
    0   libSystem.B.dylib                       0x00007fff8912da6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff89131881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff83fd4d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff83f43ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff83f3defb MPWaitOnQueue + 215
    5   com.adobe.ACE                           0x00000001051bc2c9 0x105183000 + 234185
    6   com.adobe.ACE                           0x00000001051bb5da 0x105183000 + 230874
    7   ...ple.CoreServices.CarbonCore          0x00007fff83f160d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                       0x00007fff8912bfd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff8912be89 thread_start + 13
    Thread 47:
    0   libSystem.B.dylib                       0x00007fff8

  • Adobe Photoshop CC shuts down when trying to open a file or save it!

    Adobe Photoshop CC shuts down when trying to open a file or save it. I'm running windows 7 professional and have tried unistalling/reinstalling preferences but does not work. I will list the events logs for help in seeing what I need to do to make this work. Please help!
    This is the first of 2 errors listed associated with photoshop cc.
    Log Name: Application
    Source:        .NET Runtime
    Date: 10/12/2014 9:52:29 AM
    Event ID:      1026
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer: Owner-PC
    Description:
    Application: Photoshop.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.TypeInitializationException
    Stack:
       at P1.WICCODEC.CODEC.ImageCoreBasedDecoder..ctor(System.Runtime.InteropServices.ComTypes.ISt ream, System.String)
       at P1.WICCODEC.CODEC.WICBitmapDecoder.CreateICDecoder(System.Runtime.InteropServices.ComType s.IStream)
       at P1.WICCODEC.CODEC.WICBitmapDecoder.QueryCapability(System.Runtime.InteropServices.ComType s.IStream, UInt32 ByRef)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name=".NET Runtime" />
        <EventID Qualifiers="0">1026</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-12T14:52:29.000000000Z" />
    <EventRecordID>62867</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Owner-PC</Computer>
        <Security />
      </System>
      <EventData>
    <Data>Application: Photoshop.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.TypeInitializationException
    Stack:
       at P1.WICCODEC.CODEC.ImageCoreBasedDecoder..ctor(System.Runtime.InteropServices.ComTypes.ISt ream, System.String)
       at P1.WICCODEC.CODEC.WICBitmapDecoder.CreateICDecoder(System.Runtime.InteropServices.ComType s.IStream)
       at P1.WICCODEC.CODEC.WICBitmapDecoder.QueryCapability(System.Runtime.InteropServices.ComType s.IStream, UInt32 ByRef)
    </Data>
      </EventData>
    </Event>
    Second Error
    Log Name: Application
    Source: Application Error
    Date: 10/12/2014 9:52:30 AM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer: Owner-PC
    Description:
    Faulting application name: Photoshop.exe, version: 14.2.1.570, time stamp: 0x52f4a1d7
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.18409, time stamp: 0x531599f6
    Exception code: 0xe0434352
    Fault offset: 0x0000812f
    Faulting process id: 0x16c8
    Faulting application start time: 0x01cfe62c123b9d8e
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CC\Photoshop.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 633cd65f-521f-11e4-a63f-001cc0725d07
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-12T14:52:30.000000000Z" />
    <EventRecordID>62868</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Owner-PC</Computer>
        <Security />
      </System>
      <EventData>
    <Data>Photoshop.exe</Data>
    <Data>14.2.1.570</Data>
        <Data>52f4a1d7</Data>
    <Data>KERNELBASE.dll</Data>
    <Data>6.1.7601.18409</Data>
    <Data>531599f6</Data>
    <Data>e0434352</Data>
    <Data>0000812f</Data>
    <Data>16c8</Data>
    <Data>01cfe62c123b9d8e</Data>
    <Data>C:\Program Files\Adobe\Adobe Photoshop CC\Photoshop.exe</Data>
    <Data>C:\Windows\system32\KERNELBASE.dll</Data>
    <Data>633cd65f-521f-11e4-a63f-001cc0725d07</Data>
      </EventData>
    </Event>

    The first error has nothing to do with Photoshop - that's some .NET application.
    The second error is most likely connected to a third party plugin or driver.
    And you're running Photoshop CC (14.x) instead of the current Photoshop CC 2014 (15.x).

  • I keep getting result code -43 not found when trying to load certain instruments. Any idea why

    I keep getting error code -43 not found when trying to load certain instruments. Any ideas?

    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.

  • I have PSE 8.0 and the error: 150:30 always occurs when trying to open a file.

    I have PSE 8.0 and the error: 150:30 always occurs when trying to open a file. Can anybody help me with this problem?

    click file > place formats to import graphic files.
    http://helpx.adobe.com/indesign/kb/supported-file-formats-indesign-cs5.html

  • User with a paid CC acct, getting "Print.ai" is an unknown format' when trying to open new file. Computer was recently attacked by ransomeware and wonder if I need to re-install Creative cloud software....need help asap!!

    User with a paid CC acct, getting "Print.ai" is an unknown format' when trying to open new file. Computer was recently attacked by ransomeware and wonder if I need to re-install Creative cloud software....need help asap!!

    First, ask in the forum for the program you are using
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    Second, do a complete scan with a good anti-virus program to be sure your computer is clean... I use Norton, there are others

  • Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.

    Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.  Has there been a fix or patch to this issue or do I have to convert back to CS4 to open the file?

    Having the same problem in CS6.  I can tell you that converting back to CS4 will NOT solve the problem.  It seems when support for backward compatibility is discontinued, there's just no way to get
    any help at all?  Absolute failure to provide any user support so far...

  • Some music and apps that I have downloaded from i-tunes "cannot be found" when trying to download them onto my ipod.  Why is this happening when they are available on my computer?

    Some music and apps that I have purchased and downloaded from i-tunes "cannot be found" when I try to put them on my i-pod.  Why is this happening and what can I do about it?

    In iTunes, select the audio book and righ click and select Get Info. Go to the options tab and click on Media kind and change it to Audiobook. It will then appear  on the iPod under Audio books. On the iPod that is Muisc app>More>Audobooks.

Maybe you are looking for

  • Unable to Capture an image using Native Camera

    Hi all, Please help me out. I am getting an issue but unable to find out its solution. I am watching a video on my mobile phone N96 and open the CAM pressing right side button continue, Camera gets opened and i am able to take a snap. Same functional

  • The Neverending VirtualBox + USB Story

    Like many people, I'm having challenges getting USB, specifically my USB mouse (Logitech M305 wireless) to work in VirtualBox. My setup: Dell E6320 laptop. I have a WinXP VM that was previously used with VMware Player. I am now booting the vmdk file

  • Backspace button not working...anyone know how to fix?

    My backspace button will not work.  The "Return" button activates instead.  Can anyone help?

  • Directing syslog messages to a particular file

    Hi Guys, I have successfully been able to direct my Airport Extreme Syslog files to my macmini which is acting as a syslog server. I uncommented the networking listening section of the /System/Library/LaunchDaemons/com.apple.syslogd.plist in order to

  • It says I haven't purchased lion osx and I have

    I recently deleted my software to do a hard reset on my mac book air and when I went to reinstall it, it tells me that I haven't bought it and to use an Apple ID that I've bought it with so I bought the software again and now it's telling me I still