Time of opening document

Hi,
is there a property to read, at what time a document was opened.
Target is to know how long it took to edit a document.
File will be opened via the File - Open dialog, at that point no scripting involved,
but at the end the file is saved by using a javascript. In that script i wan't to make a log file with edit time

I wrote a run twice script to time the duration it took to run an action the could be used to do something like you want to do. It may not be perfect for I do not know how you would trigger the second run of the script.  You could trigger the first run using the script event manager to run the script when an open document event occurs.  The script would note the start time in the documents metadata.  A second run of the script before your close event would be needed to know the stop time  and  get the start start times from the metadata to calculate the duration. 
If you use a script to save and close your document you could through in a run of the script before you close out the document.  A close event happens after the document has been closed so the document and its metadata is not available when a script manager close event is triggered.
/* =============================================================================================
// 2010  John J. McAssey (JJMack)  http://www.mouseprints.net/
// This script is supplied as is. It is provided as freeware.
// The author accepts no liability for any problems arising from its use.
// This script is designed to be used by a Photoshop Action twice
// A good pratice to use when creating an actions that use this scipt is for the action
// not to do a save or play some other action between its two useages of this Script.
// The first time this script is used by an action the currend date and time
// are saved into the document's meta-data Info Instructions field.
// The second time this script used by the action this script retreives the date and time
// that was saved in the meta-data during the first usage.
// The script Outputs an Action duration message to Alerts the user of the time it took.
// Logs the Action Times into the ActionTime.log file in the folder where the script resides.
// Then the saved date and time is removed from the document's meta-data Info Instructions field.
// ============================================================================================== */
<javascriptresource>
<about>$$$/JavaScripts/ActionTime/About=JJMack's ActionTime^r^rCopyright 2010 Mouseprints.^r^rRun twice script utility for action.^rNOTE:Don't play other actions between runs!^r^rFirst Run records Actions Start Time.^rSecond Run removes start time recording and outputs an execution time message.</about>
<enableinfo>true</enableinfo>
<category>JJMack's Action Run Twice Utility</category>
</javascriptresource>
if (app.documents.length > 0) { // LOGFile faild trying this --> app.activeDocument.suspendHistory('ActionTime','main()');
          if (app.activeDocument.info.instructions.indexOf("<ActionTime>") == -1 ){ // no footprint fisrt useage
                    //alert("first");
                    // Retreive Date Time for Foot Print
                    var stime = new Date().getTime();
                    //alert("Time = " + stime );
                    StartTime = timeStamp() ;
                    // put footprint in metadata info instructions
                    app.activeDocument.info.instructions = app.activeDocument.info.instructions + "<ActionTime>" + StartTime + "</ActionTime>" + "<ClockTime>" + stime + "</ClockTime>";
                    //alert( "Saved ="  + "<ActionTime>" + StartTime + "</ActionTime>"+ "<ClockTime>" + stime + "</ClockTime>");
          else {
                    //alert("second");
                    var etime = new Date().getTime();
                    //alert("Time = " + etime );
                    EndTime = timeStamp();
                    // Retreive saved information
                    ActionTimeOffset = app.activeDocument.info.instructions.indexOf("<ActionTime>") + "<ActionTime>".length;
                    ActionTimeLength = app.activeDocument.info.instructions.indexOf("</ActionTime") -ActionTimeOffset;
                    StartTime = app.activeDocument.info.instructions.substr(ActionTimeOffset, ActionTimeLength);
                    ClockTimeOffset = app.activeDocument.info.instructions.indexOf("<ClockTime>") + "<ClockTime>".length;
                    ClockTimeLength = app.activeDocument.info.instructions.indexOf("</ClockTime") -ClockTimeOffset;
                    stime = app.activeDocument.info.instructions.substr(ClockTimeOffset, ClockTimeLength);
                duration = ((etime - stime)/1000);
                    alert("ActionTime \rStart = " + StartTime  + " \rEnd   = " +  EndTime + " \rTime = " +  duration + " Seconds");
                    // Log Edit Session into Log File
                    var scriptLocation = findScript()+ "0";
                var LOGFilePath = scriptLocation.slice(0,-4) + "log";
                var LOGFile = File(LOGFilePath);
                    writeLOG(app.activeDocument.name + " Start=" + StartTime  + " End=" +  EndTime + " Time=" +  duration + " Seconds\r")
                    // End log File
                    // Remove footprint from metadata info instructions
                    before = app.activeDocument.info.instructions.substr(0,app.activeDocument.info.instructions.indexOf("<ActionTime>"));
                    afterOffset = app.activeDocument.info.instructions.indexOf("</ClockTime>") + "</ClockTime>".length;
                    after = app.activeDocument.info.instructions.substr(afterOffset, app.activeDocument.info.instructions.length - afterOffset);
                    //alert ("before = " + before + " after = " + after);
                    app.activeDocument.info.instructions = before + after;
else { alert("You must have at least one open document to run this script!"); }
//       main function
function main(){
// END - main function
function timeStamp(){
          // Get the time and format it
          var digital = new Date();
          var hours = digital.getHours();
          var minutes = digital.getMinutes();
          var seconds = digital.getSeconds();
          var amOrPm = "AM";
          if (hours > 11) amOrPm = "PM";
          if (hours > 12) hours = hours - 12;
          if (hours == 0) hours = 12;
          if (minutes <= 9) minutes = "0" + minutes;
          if (seconds <= 9) seconds = "0" + seconds;
          // Get the date and format it
          var date = new Date();
          var d  = date.getDate();
          var day = (d < 10) ? '0' + d : d;
          var m = date.getMonth() + 1;
          var month = (m < 10) ? '0' + m : m;
          var yy = date.getYear();
          var year = (yy < 1000) ? yy + 1900 : yy;
          // create a variable with the fully formatted the time and date
          // todaysDate = hours + ":" + minutes + ":" + seconds + " " + amOrPm + " - " + day + "/" + month + "/" + year;
          // todaysDate = hours + ":" + minutes + ":" + seconds + " " + amOrPm + " - " + month + "/" + day + "/" + year;
          MonthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
          todaysDate = hours + ":" + minutes + ":" + seconds + " " + amOrPm + " " + MonthNames[date.getMonth()] + " " + date.getDate() + ", " + year;
        return todaysDate;
// Find the location where this script resides
function findScript() {
          var where = "";
          try {
                    FORCEERROR = FORCERRROR;
          catch(err) {
                    // alert(err.fileName);
                    // alert(File(err.fileName).exists);
                    where = File(err.fileName);
          return where;
// Write LOG file
    function writeLOG(log) {
        try {
            if(LOGFile.exists) {
                LOGFile.open ("e");
                LOGFile.seek (0,2);      // Move to EOF
            } else {
            LOGFile.open ("w");          // Add unicode marker if we change to LOG file format for this log file
        LOGFile.encoding = "UTF8"; // set UTF8
        LOGFile.write(log);
        LOGFile.close();
        } catch (e) {
            alert(e);
        } finally {
        return;

Similar Messages

  • Opening document in FileFormat plug-in crashes Illustrator

    Hi,
    I am trying to open an EPS file in the GoFileFormat() handler of a File Format plug-in, by the following code.
    AIDocumentListSuite* sAIDocumentList = nil;
    AIDocumentHandle document;
    message->d.basic->AcquireSuite(kAIDocumentListSuite, kAIDocumentListVersion, (const void **)&sAIDocumentList);
    error = sAIDocumentList->Open(ai::FilePath(ai::UnicodeString("D:\\MyFile.eps")), kAIUnknownColorModel, kDialogOff, false, &document);
    message->d.basic->ReleaseSuite(kAIDocumentListSuite, kAIDocumentListVersion);
    The file is getting opened and shown properly but as soon as the handler returns, Illustrator is crashing. In fact, Illustrator will crash if these lines are put in the GoFileFormat() handler of the TextFileFormat sample application also. However, I tried to put these same statements at some other place (e.g. against the click of a menu item), where they seem to be working properly. But it may be accidental also. What can be the reason? Is there some problem with this code? Or opening files this way is not possible in the GoFileFormat() handler, may be because it is already trying to open a new type of file? If that is the case, how should the code be modified? I need to open this eps file, actually more than one eps file, when the user chooses to open my special file type (Actually, the eps file names are mentioned in that file). I also tried to define the sAIDocumentList as a global pointer (like many other suite pointers in the samples), but the result remained same.
    Any help will be most appreciated.
    Thanks in advance,
    Joydeep Ray

    Hello
    > Or opening files this way is not possible in the GoFileFormat() handler, may be because it is already trying to open a new type of file?
    I think this is probably the reason it is crashing.
    > If that is the case, how should the code be modified?
    You could use a timer. In your GoFileFormat() handler store the filename and then create a timer with a zero timeout.
         // Store filename etc
         sAITimer->AddTimer(message->d.self,"DocOpen",0,&docOpenTimer);
         return kBadParameterErr;
    In your GoTimer() handler, open the file and remove the timer:
        if (message->timer == docOpenTimer)
            sAITimer->SetTimerActive(message->timer,false);
            // Open document code

  • Acrobat Pro XI Mac 11.0.10 freezes every time I open a document

    Every time I open a document in Acrobat XI Pro 11.0.10, the app freezes with a spinning beach ball. Beach ball will go for 10 minutes plus before I can't stand it and force quit. I am using Macbook Pro 15 Retina with Mavericks (OSX 10.9.5). The same document opens without issues under Windows 7 Acrobat Pro XI. I have disabled enhanced security and upgraded form 11.0.7 without any change in behavior. I have also un-installed and re-installed Acrobat from a fresh download off the internet.
    I am getting ready to ask for my $$ back!!  This is ridiculous, Acrobat is completely unusable under Mac.

    Hi David ,
    I would request you to refer to the below mentioned link and check how it goes.
    https://helpx.adobe.com/x-productkb/global/troubleshoot-system-errors-freezes-mac.html
    Regards
    Sukrit Dhingra

  • It takes a long time to open up documents on my Imac. I get the multicolor circle for a long time. I have 27 In Mid 2010 3.2 ghz Intel core I3 with 16 gb memory.

    It takes a long time to open up documents on my Imac. I get the multicolor circle for a long time. I have 27 In Mid 2010 3.2 ghz Intel core I3 with 16 gb memory.

    There are file hidden all around in your system.
    Go to Phil Stokes' info page, for a gerat uninstall primer.

  • Pages on my iPad3 has become very slow to open documents after upgrading to ios7. I've clicked on a folder 5 minutes ago and am still waiting. The work-around seems to be to force-close it, but I've needed to do this many times in the last few days.

    Pages on my iPad3 has become very slow to open documents after upgrading to ios7.
    I posted on here about this a few weeks back and someone suggested force-closing Pages -- and that does indeed enable me to open things -- but I have had to force-close many times in the last 24 hours, which is worrying. Are there any other suggestions?
    I am sometimes also finding that, when I have been writing something and then click on "documents" the screen goes blank, there is a wait of around a minute and then the same document is re-displayed, before clicking "documents" again lets me look at other documents -- which is a pain if I am trying to move between documents repeatedly. Again, words of wisdom on this would be great.
    Pages under iOS6 opened quickly, and there was an immediate loss of performance when I upgraded. I am finding this very frustrating because I don't feel that the new Pages has added to the facilities I was using, but a slowness to open documents is frustrating.
    Thanks
    Mark

    Pages on my iPad3 has become very slow to open documents after upgrading to ios7.
    I posted on here about this a few weeks back and someone suggested force-closing Pages -- and that does indeed enable me to open things -- but I have had to force-close many times in the last 24 hours, which is worrying. Are there any other suggestions?
    I am sometimes also finding that, when I have been writing something and then click on "documents" the screen goes blank, there is a wait of around a minute and then the same document is re-displayed, before clicking "documents" again lets me look at other documents -- which is a pain if I am trying to move between documents repeatedly. Again, words of wisdom on this would be great.
    Pages under iOS6 opened quickly, and there was an immediate loss of performance when I upgraded. I am finding this very frustrating because I don't feel that the new Pages has added to the facilities I was using, but a slowness to open documents is frustrating.
    Thanks
    Mark

  • Long time to open Pages document and DocX

    I keep about 20 Pages documents open. Then, opening an existing Pages document takes 30-45 seconds, or longer sometimes.
    Need to stop the waiting.
    Regarding docx files. It takes :10 seconds for a document of text only to open. Much longer if there're images or anything other than text in the document.
    Is this a normal? If not, how can it be sped up?

    What Yvan is saying is that your open documents are stored on your relatively slow hard drive.
    AS you have more and more open with Pages perhaps having to refresh reflows as you edit them, it will get slower and slower.
    You can set your computer up with a very fast SSD Solid State Flash Drive or simply not open so many documents at one time.
    Alternatively use a fast text editor with better methods of work. I can't see why you need so many files open at one time, but you know best how you need to work.
    Peter

  • Every time I open a second document the 1st one slides off the screen and I have to reopen everything.  I want to view more than 1 document at the same time.

    How can I view and work on more than one document at a time?  I've never had a problem with this but suddenly every time I open a new document the 1st one slides over out of sight.  How do I get that to stop?

    Hi bbd,
    Here is a screen shot of two documents open side by side. Drag the first document to the left of the screen. Open another document and drag it to the right of the screen.
    I have not had an open document slide from view. Puzzling!
    Regards,
    Ian.

  • My MacBook Pro will not open documents via Adobe Reader. Says I need to aspen Reader in Browzer and accept terms and contitions first. Went through this 3 times and got through to "Finish", closed browser and then retried. No luck. What's going on?? Have

    My MacBook Pro will not open documents via Adobe Reader. Says I need to aspen Reader in Browzer and accept terms and contitions first. Went through this 3 times and got through to "Finish", closed browser and then retried. No luck. What's going on?? Have no problem with same documents on iPhone and iPad

    After you finished installing did you launch Adobe Reader from your /Applications folder and accept EULA(End User License Agreement)?
    What is your Adobe Reader version?
    What browser are you using and browser version?
    Thank You.

  • InDesign (10.0.0.70) always asks to save every time I open an existing document (no legacy) even if I don't make any changes, why?

    Literally EVERY time I open an existing document that I created myself before InDesign brings up the "Save" Dialog when I close it. I'm working with the Creative Suite like forever already and only had that sometimes, very rarely before (up to CS6). Now at my new job with CC set up this phenomenon appears. ALL files are saved on local hard drive!
    Any idea or is InDesign now set to ask all the time?
    Thanks for any tips!

    I totally understand version issues, BUT I did create tons of new documents in CC2014 already and still every time I've been ask to save it only when opening and closing them! Like I said it happens EVERY time and I'm working constantly with InDesign. Up until now I only kinda accepted what it is and didn't have time to deal with that problem...

  • CS5 crashing every time I open a file or begin a new document

    Hi everyone,
    I am currently on CS5 and upgraded my Mac to OSX 10.7.4 (Lion) in June. I have been using PS every day with no dramas, but on Wednesday PS stopped working and was crashing every time I opened a jpg file or even started a new document.
    I uninstalled CS5, and reinstalled it from my purchase disc, did all the updates, and the same thing happened.
    I repeated the process and the same thing is still happening.
    I have tried switching to 32 bit...same thing.
    I have run diagnostics on all 4 hard drives and all are ok and healthy.
    I have allocated RAM 70% to PS 1470mb
    Are there any known issues with PS5 and Lion?
    Do you suspect a hardware issue?
    Many thanks for some help.

    Hi Chris,
    I have asked the Mac technician to send me the Crash report…so here it is.
    Hope this helps,
    Many thanks,
    Lesley
    Process:         Adobe Photoshop CS5
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd
    Date/Time:       2012-07-30 17:02:39.618 +1000
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          307305 sec
    Crashes Since Last Report:           21090
    Per-App Interval Since Last Report:  451400 sec
    Per-App Crashes Since Last Report:   28
    Anonymous UUID:                      3ACA74FE-A9F4-4CB1-BAC8-1BD868DC2338
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    objc[375]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation           0x00007fff890e9862 CFRetain + 18
    1   com.apple.CoreFoundation           0x00007fff890f56c7 __CFDictionaryStandardRetainValue + 71
    2   com.apple.CoreFoundation           0x00007fff8911f1e6 __CFBasicHashReplaceValue + 38
    3   com.apple.CoreFoundation           0x00007fff890f442c CFDictionarySetValue + 252
    4   com.apple.CoreFoundation           0x00007fff8915c7f5 -[CFXPreferencesSource setValue:forKey:] + 69
    5   com.apple.CoreFoundation           0x00007fff89167541 -[CFXPreferencesPropertyListSource setValue:forKey:] + 97
    6   com.apple.CoreFoundation           0x00007fff89167456 _CFXPreferencesSetValue + 150
    7   com.adobe.Photoshop                0x0000000100241b2d 0x100000000 + 2366253
    8   com.adobe.Photoshop                0x000000010072e5bd AWS_CUI_GetVersionComments(OpaqueWindowPtr, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument, adobe::q::QProject*, long) + 4530465
    9   com.adobe.Photoshop                0x000000010072e7bd AWS_CUI_GetVersionComments(OpaqueWindowPtr, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument, adobe::q::QProject*, long) + 4530977
    10  com.adobe.Photoshop                0x00000001006b5e16 AWS_CUI_GetVersionComments(OpaqueWindowPtr, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument, adobe::q::QProject*, long) + 4036986
    11  com.adobe.Photoshop                0x000000010006b38f 0x100000000 + 439183
    12  com.adobe.Photoshop                0x000000010006c097 0x100000000 + 442519
    13  com.adobe.Photoshop                0x00000001000711ba 0x100000000 + 463290
    14  com.adobe.Photoshop                0x00000001000665d3 0x100000000 + 419283
    15  com.adobe.Photoshop                0x0000000100066696 0x100000000 + 419478
    16  com.adobe.Photoshop                0x00000001012e0583 AWS_CUI_GetVersionComments(OpaqueWindowPtr, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument, adobe::q::QProject*, long) + 16793831
    17  com.apple.Foundation               0x00007fff89413f40 __NSFireTimer + 102
    18  com.apple.CoreFoundation           0x00007fff8913f934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    19  com.apple.CoreFoundation           0x00007fff8913f486 __CFRunLoopDoTimer + 534
    20  com.apple.CoreFoundation           0x00007fff8911fe11 __CFRunLoopRun + 1617
    21  com.apple.CoreFoundation           0x00007fff8911f486 CFRunLoopRunSpecific + 230
    22  com.apple.HIToolbox                0x00007fff8eb0c4d3 RunCurrentEventLoopInMode + 277
    23  com.apple.HIToolbox                0x00007fff8eb13781 ReceiveNextEventCommon + 355
    24  com.apple.HIToolbox                0x00007fff8eb1360e BlockUntilNextEventMatchingListInMode + 62
    25  com.apple.AppKit                   0x00007fff833d5e31 _DPSNextEvent + 659
    26  com.apple.AppKit                   0x00007fff833d5735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    27  com.apple.AppKit                   0x00007fff833d2071 -[NSApplication run] + 470
    28  com.adobe.Photoshop                0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument, adobe::q::QProject*, long) + 16793608
    29  com.adobe.Photoshop                0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument, adobe::q::QProject*, long) + 16796261
    30  com.adobe.Photoshop                0x00000001000682e6 0x100000000 + 426726
    31  com.adobe.Photoshop                0x00000001002371f1 0x100000000 + 2322929
    32  com.adobe.Photoshop                0x0000000100237281 0x100000000 + 2323073
    33  com.adobe.Photoshop                0x00000001000022f4 0x100000000 + 8948
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x00007fff867c57e6 kevent + 10
    1   libdispatch.dylib                  0x00007fff8d9de78a dispatchmgr_invoke + 923
    2   libdispatch.dylib                  0x00007fff8d9dd31a dispatchmgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib             0x00007fff867c5192 __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x00007fff8b464594 pthreadwqthread + 758
    2   libsystem_c.dylib                  0x00007fff8b465b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib             0x00007fff867c5192 __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x00007fff8b464594 pthreadwqthread + 758
    2   libsystem_c.dylib                  0x00007fff8b465b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.amt.services             0x00000001086e6c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services             0x00000001086dfcce AMTThreadedPCDService::PCDThreadWorker(AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services             0x00000001086e6cbe AMTThread::Worker(void*) + 28
    5   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    6   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib             0x00007fff867c5192 __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x00007fff8b464594 pthreadwqthread + 758
    2   libsystem_c.dylib                  0x00007fff8b465b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib             0x00007fff867c36ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore     0x00007fff82b3326e MPWaitOnSemaphore + 77
    2   MultiProcessor Support             0x000000010fd35b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    5   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   AdobeACE                           0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                           0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib             0x00007fff867c4e42 __semwait_signal + 10
    1   libsystem_c.dylib                  0x00007fff8b418dea nanosleep + 164
    2   com.adobe.PSAutomate               0x0000000113482e4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate               0x0000000113464d83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate               0x0000000113482f46 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    6   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.adobeswfl                0x000000011438789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl                0x00000001141405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib             0x00007fff867c367a mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff867c2d71 mach_msg + 73
    2   com.apple.CoreFoundation           0x00007fff8911750c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation           0x00007fff8911fc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation           0x00007fff8911f486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO              0x00007fff8b78bfe9 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO              0x00007fff8b78215a CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b4662a6 pthreadcond_wait + 890
    2   com.adobe.adobeswfl                0x0000000114387869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                0x00000001143a40ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b4662a6 pthreadcond_wait + 890
    2   com.adobe.adobeswfl                0x0000000114387869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl                0x0000000114521ef3 APXGetHostAPI + 4146787
    4   com.adobe.adobeswfl                0x00000001143879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl                0x0000000114387d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl                0x0000000114387e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    8   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib             0x00007fff867c4d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib      0x0000000113ad3982 Invoke + 54020
    2   ServiceManager-Launcher.dylib      0x0000000113ad2adf Invoke + 50273
    3   ServiceManager-Launcher.dylib      0x0000000113ad1b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib      0x0000000113ad1b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib      0x0000000113ad1c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib      0x0000000113acc30d Invoke + 23695
    7   ServiceManager-Launcher.dylib      0x0000000113acc4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib      0x0000000113accf2f Invoke + 26801
    9   ServiceManager-Launcher.dylib      0x0000000113acd01d Invoke + 27039
    10  ServiceManager-Launcher.dylib      0x0000000113ad031f Invoke + 40097
    11  ServiceManager-Launcher.dylib      0x0000000113ad05c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib      0x0000000113ad0b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib      0x0000000113ad0d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib      0x0000000113ac2daf Login + 1773
    15  ServiceManager-Launcher.dylib      0x0000000113ac4295 Login + 7123
    16  ServiceManager-Launcher.dylib      0x0000000113ad12a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib      0x0000000113ad36c1 Invoke + 53315
    18  libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    19  libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib             0x00007fff867c36b6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw                0x0000000117a559c1 EntryFM + 2524321
    2   com.adobe.CameraRaw                0x0000000117a87cd3 EntryFM + 2729907
    3   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    4   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 40:
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.apple.CoreServices.CarbonCore     0x00007fff82b5ba5e TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore     0x00007fff82aedea6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore     0x00007fff82b32e81 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw                0x0000000117750539 0x117500000 + 2426169
    6   com.adobe.CameraRaw                0x000000011774f790 0x117500000 + 2422672
    7   com.apple.CoreServices.CarbonCore     0x00007fff82b33ce6 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    9   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 41:: cr_scratch
    0   libsystem_kernel.dylib             0x00007fff867c4bca __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x00007fff8b466274 pthreadcond_wait + 840
    2   com.adobe.CameraRaw                0x00000001175630a3 0x117500000 + 405667
    3   com.adobe.CameraRaw                0x00000001178d9594 EntryFM + 966772
    4   com.adobe.CameraRaw                0x0000000117628f88 0x117500000 + 1216392
    5   libsystem_c.dylib                  0x00007fff8b4628bf pthreadstart + 335
    6   libsystem_c.dylib                  0x00007fff8b465b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000000  rdx: 0x0000000103152868
    rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfd880  rsp: 0x00007fff5fbfd870
      r8: 0x00000000000000c8   r9: 0x0000000103152878  r10: 0x0000000000000040  r11: 0x0000000000000004
    r12: 0x0000000113f90240  r13: 0x000000010b4bc3b0  r14: 0x0000000113f90540  r15: 0x0000000113f90540
    rip: 0x00007fff890e9862  rfl: 0x0000000000000246  cr2: 0x0000000113f91000
    Logical CPU: 2
    Binary Images:
          0x100000000 -        0x1026fbfff +com.adobe.Photoshop (12.0.4 - 12.0.4x20110407.r.1265] [12.0.4) <6BFE637D-7ADA-BD5C-F1C5-64AD4688D89D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
          0x1032f4000 -        0x10336cfef +com.adobe.adobe_caps (adobe_caps 3.0.116.0 - 3.0.116.0) <4A355686-1451-B19A-0C55-DFE49FD2539E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
          0x103382000 -        0x103389fff  org.twain.dsm (1.9.5 - 1.9.5) <D3C111E6-AAE8-3267-B760-1529D0917170> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
          0x103391000 -        0x1033a1ff8 +com.adobe.ahclientframework (1.5.0.30 - 1.5.0.30) <5D6FFC4E-7B81-3E8C-F0D4-66A3FA94A837> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
          0x1033ac000 -        0x1033b2fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
          0x1033b9000 -        0x1035bffef +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
          0x103652000 -        0x103800fef +com.adobe.owl (AdobeOwl version 3.0.93 - 3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
          0x1038a2000 -        0x103cd2fef +AdobeMPS (??? - ???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
          0x103e2c000 -        0x104157ff7 +AdobeAGM (??? - ???) <770E65CA-643B-CFEE-2BE1-F73D45B77D09> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
          0x104224000 -        0x10454cfe7 +AdobeCoolType (??? - ???) <9979447D-9477-BC48-A84E-8A6A6AF380B5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
          0x1045e4000 -        0x104605ff7 +AdobeBIBUtils (??? - ???) <E0E813D7-0DEE-4BD6-599B-B1DE16008C3C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
          0x104612000 -        0x10463dff6 +AdobeAXE8SharedExpat (??? - ???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
          0x10464f000 -        0x104793fef +WRServices (??? - ???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
          0x1047da000 -        0x10483ffff +aif_core (??? - ???) <28B07687-9957-7C0B-B221-1B849283C87A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
          0x10485b000 -        0x104871fff +data_flow (??? - ???) <81432128-C1BC-2E87-852E-2E4FBE63DEF3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
          0x104889000 -        0x10491ffff +image_flow (??? - ???) <83A775AD-5EFE-4EC1-4EE4-7A92C88D1B02> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
          0x104996000 -        0x1049b4fff +image_runtime (??? - ???) <F3EE4945-4348-A9BE-61AD-A546D0371C62> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
          0x1049d1000 -        0x104c00fff +aif_ogl (??? - ???) <0C2C2B20-688E-18BE-B33C-9B2A816A7E65> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
          0x104cdf000 -        0x104d72fff +AdobeOwlCanvas (??? - ???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
          0x104d92000 -        0x1050dbfef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
          0x10526b000 -        0x1053edfe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
          0x10548f000 -        0x105807fff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
          0x105951000 -        0x105a66fff +AdobeACE (??? - ???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
          0x105a8b000 -        0x105aa7fff +AdobeBIB (??? - ???) <EBA9513A-E3A2-10A8-35E9-B2A8DCDE10DD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
          0x105ab1000 -        0x105b1bff7 +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <6B2F73C2-10AB-08B3-4AB0-A31C83D1E5E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
          0x105b4e000 -        0x105c21ffb +AdobeJP2K (??? - ???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
          0x105c41000 -        0x105c45ff8 +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <0C380604-C686-C2E4-0535-C1FAB230187E> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
          0x105c49000 -        0x105cc0fff +FileInfo (??? - ???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
          0x105ce1000 -        0x105d3fffd +AdobeXMP (??? - ???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
          0x105d4d000 -        0x1061e8fff +com.nvidia.cg (2.2.0006 - ???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
          0x10676e000 -        0x1067c4feb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
          0x106809000 -        0x10682effe +adobepdfsettings (??? - ???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
          0x106868000 -        0x10686dffd +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <DFFB9A08-8369-D65F-161F-7C61D562E307> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
          0x106872000 -        0x106a0efff +com.adobe.PlugPlug (2.0.0.109 - 2.0.0.109) <83092855-E671-F64A-EE0D-1110CF669634> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
          0x106ab6000 -        0x106b99fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
          0x106bef000 -        0x106c08feb +libtbb.dylib (??? - ???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
          0x106c19000 -        0x106c1ffeb +libtbbmalloc.dylib (??? - ???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
          0x106c26000 -        0x106c26fff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <C23BF0A1-7E6D-35EF-85FE-651EE2C13D53> /usr/lib/libmx.A.dylib
          0x106c29000 -        0x106c31ff3 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
          0x106fe0000 -        0x106fe2fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
          0x106ffb000 -        0x106ffcff7  libCyrillicConverter.dylib (54.0.0 - compatibility 1.0.0) <C8D0607A-A668-36EE-AF03-866BD04B5611> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
          0x1086c3000 -        0x108733ff6 +com.adobe.amt.services (AMTServices 3.0.0.64 BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00 - 3.0.0.64) <52FF1F9B-9991-ECE2-C7E3-09DA1B368CBE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
          0x10b0e9000 -        0x10b0f8ff7  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <D30A4333-0953-394D-BB26-739937ED0BD8> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
          0x10b678000 -        0x10b693fff  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <59FCE9C0-27E6-34CE-89E5-3A83B843B36C> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
          0x10b698000 -        0x10b6b9fff  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <25FF31F5-9D1E-35EB-8085-F0AC25C38DAC> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
          0x10b6bd000 -        0x10b6cfff7  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <66A3625A-6918-3C14-8DF3-2F4924C389EA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
          0x10b6f3000 -        0x10b6fbfff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
          0x10c346000 -        0x10c34dfff +Enable Async IO (??? - ???) <3935C129-0FAE-3EAC-0CF2-4D740CD22E43> /Applications/Adobe Photoshop CS5/*/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
          0x10cce6000 -        0x10cceffff +FastCore (??? - ???) <25D92063-457F-C14A-6BE8-1C96C54F904C> /Applications/Adobe Photoshop CS5/*/FastCore.plugin/Contents/MacOS/FastCore
          0x10e703000 -        0x10e766ff3 +MMXCore (??? - ???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/*/MMXCore.plugin/Contents/MacOS/MMXCore
          0x10fd00000 -        0x10fd6bff0 +MultiProcessor Support (??? - ???) <4CDEDB26-96A2-631F-3C4B-FC3DBE9E2A02> /Applications/Adobe Photoshop CS5/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
          0x113300000 -        0x11355dfef +com.adobe.PSAutomate (12.0.2 - 12.0.2) <2A43E60A-F63A-68A0-A73C-5BEEE05E6F33> /Applications/Adobe Photoshop CS5/*/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
          0x11377c000 -        0x113820ffb +com.adobe.AdobeExtendScript (ExtendScript 4.1.26 - 4.1.26.11099) <00717496-ACE1-7D2F-DEE7-4316D0AB52D5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
          0x113882000 -        0x113922fef +com.adobe.AdobeScCore (ScCore 4.1.26 - 4.1.26.11099) <036DBC1F-0576-705F-3507-213E9F455222> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
          0x113a6e000 -        0x113a8effb +com.adobe.ape (adbeapecore version 3.1.70.10055 - 3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
          0x113a9b000 -        0x113a9ffff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <F94D690D-3196-3B01-B798-09708367D28D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
          0x113aa4000 -        0x113aa9fff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
          0x113ac0000 -        0x113ae8fef +ServiceManager-Launcher.dylib (??? - ???) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
          0x114100000 -        0x114f68ff3 +com.adobe.adobeswfl (??? - 2.0.0.10053) <ADE7E8AA-80B6-7BAC-8205-13D7A0E89DF8> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
          0x117306000 -        0x117343feb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 1.0.0.64 - 1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
          0x117500000 -        0x11863cfe7 +com.adobe.CameraRaw (6.7 - 6.7.0f339) <EE11AFE4-0A58-B5C6-F22A-55658C54E036> /Library/Application Support/Adobe/*/Camera Raw.plugin/Contents/MacOS/Camera Raw
       0x7fff64ed8000 -     0x7fff64f0cbaf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
       0x7fff81ff7000 -     0x7fff82098ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
       0x7fff82099000 -     0x7fff820e0ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
       0x7fff820e1000 -     0x7fff820feff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
       0x7fff82107000 -     0x7fff82aa4c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
       0x7fff82aa5000 -     0x7fff82aa9ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
       0x7fff82aaa000 -     0x7fff82dc6fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
       0x7fff82ddd000 -     0x7fff82e62ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
       0x7fff82ead000 -     0x7fff82edaff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
       0x7fff83069000 -     0x7fff830bdff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
       0x7fff830be000 -     0x7fff830befff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
       0x7fff83114000 -     0x7fff83219fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
       0x7fff8321a000 -     0x7fff83231fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
       0x7fff83364000 -     0x7fff833beff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
       0x7fff833cd000 -     0x7fff83fd3ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x7fff83fd4000 -     0x7fff83fd4fff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
       0x7fff83fd5000 -     0x7fff84002fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
       0x7fff84003000 -     0x7fff84004ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
       0x7fff84005000 -     0x7fff84006ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
       0x7fff84007000 -     0x7fff8401cfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
       0x7fff8401d000 -     0x7fff840

  • How do you permanently disable Tool Pane from showing up every time you open a pdf document in Adobe Reader DC 2015?

    Just like 9.9/10 people out here in the real world, I use Adobe Reader to read pdf files and never (ever) use the Tool Pane for anything.
    How do I permanently disable it from showing up, instead of having to close it *each & every time* I open a pdf document? The majority of people don't want thins thing covering up the page they are trying to read.

    Okay, seems I've stumbled upon an ugly workaround but it works for me. I'm using Windows 8.1. Go to the install directory, i.e." C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroApp\ENU". Create a new subfolder (I used "Disabled"). Move 3 files from the "ENU" folder into the new "Disabled" folder: AppCenter_R.aapp & Home.aapp & Viewer.aapp. Open a PDF and no more Tool Pane! I originally moved just the "Viewer" file but if you clicked on "Home" or "Tools" on the toolbar you couldn't go back to the "Document." Moving all 3 files takes care of that issue. Like a lot of people I don't and won't ever use any of the tools. I just want a reader. Let me know if this works for you.

  • Why do I have to logon each time when opening a office Document from a SharePoint 2010 Library

    Hello guys,
    I'm facing some design issue with sharepoint 2010 and Microsoft office, hope you can help me to fix this.
    Why do I have to logon each time when opening a office Document from a SharePoint Library when I'm already authenticated via the browser?
    Please help me to skip this authentication when i try to open office documents from sharepoint library.
    Thanks
    Jeyaraman S

    Hi Jeyaraman, in addition to Alex's solution, check the following browser settings:
    Make sure “Enable protected mode” in security tab & “Require server verification” in “sites” area are unchecked. In “Custom level,” choose “Automatic logon” way at the bottom.
    cameron rautmann

  • Every time I open a document on my Apple Mac a copy is saved to My Documents which I don't want. How do I stop the documents being saved automatically all the time??

    Every time I open a document on my Apple Mac a copy is saved to My Documents which I don't want. How do I stop the documents being saved automatically all the time??

    OS X Lion- About Auto Save and Versions
    You cannot disable this.

  • Adobde Reader X locks up every time I open a document.  Can you help?

    Every time I open a pdf file, Adbode Reader locks up (not responding) and I cannot edit, print or even scroll on a document.  What is the problem?

    Operating system?  Reader version?

  • Every time i open a word document ALL my word documents open as separate windows. Same with PowerPoints. How do i fix this?!

    every time i open a word document ALL my word documents open as seperate windows. Same with powerpoints. How do I fix this? Its getting really annoying.

    If you are using Apple's Mail app, whichever os you have, post in its os/Mail forum area.

Maybe you are looking for