Photoshop CS4 error since Mavericks when open file from Server: "file is empty"

Since I upgraded to Mavericks I can't open files directly from a Server (smb://..), it says "file is empty". When I copy the PSD file to my local drive I can open it though. I tried already to remove the server and reconnect. I'm using the CS4. Any idea how to fix that?

My solution from another thread:-
Hello - I recently upgraded to Mavericks and have experienced a number of problems, one of which matches yours, and after some experimentation found a solution.
Like you, whenever I tried to open a file held on the server in any Adobe software, I would get an error that the file is empty. However, if I copied the file to my desktop, it would open without issue. i then noticed that the server name, which has a space in it, had %20 instead of a space, which drew me to the conclusion that Mavericks was reading the server incorrectly. I ejected the mounted server icons, and then click 'Go', 'Connect to Server', and reconnected. The server reconnected (and this time that space was restored) and I could open all of my files without issue.
Hope this helps

Similar Messages

  • CS6: DistributedCOM Error id: 10016 when open pdf from web page in Win8.1

    For example here below I've got the issue: 
    http://modemwifi.it/wp-content/uploads/asus-dsl-n55u.pdf
    Adobe Acrobat X pro V 10.1.8:
    DistributedCOM Error id: 10016 when open pdf from web page.
    Nome registro: System
    Origine:       Microsoft-Windows-DistributedCOM
    Data:          04/11/2013 19:09:19
    ID evento:     10016
    Categoria attività:Nessuna
    Livello:       Errore
    Parole chiave: Classico
    Utente:        PC-PIERO\Piero
    Computer:      Pc-Piero
    Descrizione:
    Le impostazioni delle autorizzazioni impostazioni predefinite del computer non concedono l'autorizzazione di Attivazione in Locale per l'applicazione server COM con CLSID
    {B801CA65-A1FC-11D0-85AD-444553540000}
    e APPID
    {2EAF0840-690A-101B-9CA8-9240CE2738AE}
    all'utente Pc-Piero\SID Piero (S-1-5-21-3453328585-262132574-2759341577-1001) dall'indirizzo LocalHost (tramite LRPC) in esecuzione nel SID del contenitore di applicazioni Non disponibile (S-1-15-2-1430448594-2639229838-973813799-439329657-1197984847-4069167804-1277922394). Per modificare tale autorizzazione di sicurezza, è possibile utilizzare lo strumento amministrativo Servizi componenti.
    XML evento:
    < Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="0">10016</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2013-11-04T18:09:19.468877700Z" />
        <EventRecordID>14806</EventRecordID>
        <Correlation />
        <Execution ProcessID="768" ThreadID="776" />
        <Channel>System</Channel>
        <Computer>Pc-Piero</Computer>
        <Security UserID="S-1-5-21-3453328585-262132574-2759341577-1001" />
      </System>
      <EventData>
        <Data Name="param1">impostazioni predefinite del computer</Data>
        <Data Name="param2">Locale</Data>
        <Data Name="param3">Attivazione</Data>
        <Data Name="param4">{B801CA65-A1FC-11D0-85AD-444553540000}</Data>
        <Data Name="param5">{2EAF0840-690A-101B-9CA8-9240CE2738AE}</Data>
        <Data Name="param6">Pc-Piero</Data>
        <Data Name="param7">Piero</Data>
        <Data Name="param8">S-1-5-21-3453328585-262132574-2759341577-1001</Data>
        <Data Name="param9">LocalHost (tramite LRPC)</Data>
        <Data Name="param10">Non disponibile</Data>
        <Data Name="param11">S-1-15-2-1430448594-2639229838-973813799-439329657-1197984847-4069167804-1 277922394</Data>
      </EventData>
    < /Event>
    How can I solve this problem?
    Thanks

    // I got this from an Action (I�m using Struts)
    java.sql.Blob file=(java.sql.Blob)request.getAttribute("PDFfile");
    String filename=(String)request.getAttribute("filename");
    try{
      int iLength = (int)(file.length());
      response.setHeader("Content-type", "application/pdf");   
      response.setHeader("Content-Disposition", "inline; filename=\""+filename+"\"");
      response.setHeader("Expires","0");
      response.setHeader("Cache-Control","must-revalidate, post-check=0, pre-check=0");
      response.setHeader("Pragma","public");
      response.setContentLength(iLength);
      ServletOutputStream os = response.getOutputStream();
      InputStream in = null;
      in = file.getBinaryStream();
      byte buff[] = new byte[1024];
      while (true) {
          int i = in.read(buff);
          if (i<0) break;      
          os.write(buff,0,i); 
      os.flush();
      os.close();
    } catch(Exception ex){
       out.println("Error while reading file : " + ex.getMessage());
    }and now it�s running !!! I�m not using response.setContentType(...) and I do this in response.setHeader("Content-type", "application/pdf"). And I use response.setHeader("Content-Disposition", "inline; filename=\""+filename+"\"") instead of response.setHeader("Content-Disposition", "attachment; filename=\""+filename+"\"");

  • XML to ABAP from server file

    Hello everyone.
    I'm trying to import XML file from server file and without using a transformation.
    I'm using a parser to get the data into an internal table.
    When i use GUI_UPLOAD all works fine ...
    By means of READ DATASET, parser is returning errors.
    The way i'm reading the data fom server file:
    DATA: BEGIN OF it_dados OCCURS 0,
          data(256) TYPE x,
    END OF it_dados.
       OPEN DATASET l_sfile FOR INPUT MESSAGE msg IN BINARY MODE.
      IF sy-subrc NE 0.
        WRITE: / msg.
        STOP.
      ENDIF.
      REFRESH it_dados. CLEAR it_dados.
      CLEAR l_file_size.
      DO.
        READ DATASET l_sfile INTO it_dados LENGTH l_line_size.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          ADD l_line_size TO l_file_size.
        ENDIF.
        APPEND it_dados.
      ENDDO.
    Please provide some help.
    Thank you all.
    Mário
    Message was edited by:
            Mario Semedo

    Hi,
    Try this way
    DATA: BEGIN OF it_dados OCCURS 0,
    data(256) TYPE x,
    END OF it_dados.
    OPEN DATASET l_sfile FOR INPUT MESSAGE msg IN BINARY MODE.
    IF sy-subrc NE 0.
    WRITE: / msg.
    STOP.         
    ENDIF.
    REFRESH it_dados. CLEAR it_dados.
    DO.
    READ DATASET l_sfile INTO it_dados. "<<<<
    APPEND it_dados.       "<<<<
    ENDDO.
    close dataset l_sfile. "<<<<

  • Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset pref

    Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset preferences and still have problem. Slow to open and in force quit "Photoshop not responding" At this point should I uninstall and start over.

    What are the performance Preferences?

  • Trying to get Photoshop CS4 functional with Mavericks and an Epson 3880 printer. CS4 fails to send a file to the print queue. Have reinstalled the Epson 3880 driver for Mavericks. All looks good but no file is sent.

    rying to get Photoshop CS4 functional with Mavericks and an Epson 3880 printer. CS4 fails to send a file to the print queue. Have reinstalled the Epson 3880 driver for Mavericks. All looks good but no file is sent.
    Does anyone know how to fix this?

    What EXACT version of Photoshop CS4 are you running?  You should be on Photoshop CS4 v 11.0.2.
    Also run Apple's software update to see whether it offers you the latest Epson update:
    Printer Driver v9.33
    Epson Stylus Pro 3880, Drivers & Downloads - Technical Support - Epson America, Inc.
    MOST IMPORTANTLY:  have Photoshop re-create its own Preferences:
    To re-create the preferences files for Photoshop, start the application while holding down Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS). Then, click Yes to the message, "Delete the Adobe Photoshop Settings file?"
    Note: If this process doesn't work for you while you're using a wireless (Bluetooth) keyboard, attach a wired keyboard and retry.
    Important: If you re-create the preferences by manually deleting the Adobe Photoshop CS6 Settings file, make sure that you only delete that file. If you delete the entire settings folder, you also delete any unsaved actions or presets.
    Reinstalling Photoshop does not remove the preferences file. Before reinstalling Photoshop, re-create your preferences.
    NEW Video! Julieanne Kost created a video that takes you through two ways of resetting your Photoshop preferences. The manual preference file removal method is between 0:00 - 5:05. The keyboard shortcut method is between 5:05 - 8:18. The video is located here:
    How to Reset Photoshop CS6’s Preferences File | The Complete Picture with Julieanne Kost | Adobe TV
    Mac OS
    Important: Apple made the user library folder hidden by default with the release of Mac OS X 10.7. If  you require access to files in the hidden library folder to perform Adobe-related troubleshooting, see How to access hidden user library files.

  • I have Adobe Acrobat Pro and it will not open my Photoshop CS4, error code 148.3 Can you help?

    I have Adobe Acrobat Pro and Windows Vista. I am unable to open my Photoshop CS4, error code 148.3. Can you help me resolve this problem?

    Hi,
    Please try the steps given in following article:
    http://helpx.adobe.com/creative-suite/kb/error-licensing-stopped-windows.html
    Regards,
    Anoop

  • MacAfee stops Photoshop when open directly a PSD file.

    Is MacAfee and Photoshop compatibles ?
    As MacAfee stops Photoshop when open directly a PSD file, the message is "OverFlow problem,internet acces stopped"

    With the advent of real-tiime scanning anti-virus, anti-malware and anti-anything software, we are seeing all sorts of issues with video editing, and not just with McAfee products, though more reports do seem to come in, regarding one, or another of their programs.
    While video editing involves larger files, usually, than Image editing, the issues are very similar. Many of those real-time scanning programs will "lock" files on writes, and many of them on reads, as well, while doing a complete survey of the file(s). This can cause all sorts of issues, like program time-outs in Ps, or Premiere Pro (or PrElements).
    With some, the "white-listing" that Pierre refers to can be done on certain file types, such as .PSD, .AVI, and others, that are not common carriers for evil code. Also, some will allow the white-listing of programs, which can then allow those programs to read/write to files as necessary, regardless of the file's type. It just depends on the exact anti-whatever program.
    One option is to shut such software down, during editing sessions, BUT they should NOT multi-task with the Internet, e-mails, etc., while the protections are down.
    Good luck,
    Hunt

  • Photoshop Elements 10 Mac crashes when opening images

    As the title says Photoshop Elements 10 Mac crashes when opening images! I cannot understand why this is happening as i've never had any issues with it before.
    Below I have copied and pasted the crash report in the hope someone can decypher it and tell me why this is happening.
    Any help is greatly appreciated.
    John
    Crash Report:
    Process:         Adobe Photoshop Elements Editor [23272]
    Path:            /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/MacOS/Adobe Photoshop Elements Editor
    Identifier:      com.adobe.PhotoshopElements
    Version:         10.0 [20110831.m.17215] (10)
    Code Type:       X86 (Native)
    Parent Process:  launchd [128]
    User ID:         501
    Date/Time:       2013-07-10 16:44:09.374 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          253101 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  39109 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      610CE585-EE61-A1BD-EDC5-1DBB16EAE93D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000c0000000
    VM Regions Near 0xc0000000:
        Stack                  00000000bf800000-00000000c0000000 [ 8192K] rw-/rwx SM=COW 
    -->
        CG shared images       00000000c0001000-00000000c0009000 [   32K] rw-/rw- SM=SHM 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.PhotoshopElements             0x00b52164 start + 7972992
    1   com.adobe.PhotoshopElements             0x00b53103 start + 7976991
    2   com.adobe.PhotoshopElements             0x0002889e 0x1000 + 161950
    3   com.adobe.PhotoshopElements             0x00028aa2 0x1000 + 162466
    4   com.adobe.PhotoshopElements             0x00028aa2 0x1000 + 162466
    5   com.adobe.PhotoshopElements             0x00028aa2 0x1000 + 162466
    6   com.adobe.PhotoshopElements             0x00028aa2 0x1000 + 162466
    7   com.adobe.PhotoshopElements             0x00028aa2 0x1000 + 162466
    8   com.adobe.PhotoshopElements             0x00028aa2 0x1000 + 162466
    9   com.adobe.PhotoshopElements             0x00028b34 0x1000 + 162612
    10  com.adobe.PhotoshopElements             0x004906c1 start + 888285
    11  com.adobe.PhotoshopElements             0x00f6f3a4 start + 12286656
    12  com.adobe.PhotoshopElements             0x00f70120 start + 12290108
    13  com.adobe.PhotoshopElements             0x00f6d1e1 start + 12278013
    14  com.apple.HIToolbox                     0x9339a9bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    15  com.apple.HIToolbox                     0x93222394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    16  com.apple.HIToolbox                     0x93221780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    17  com.apple.HIToolbox                     0x932215ca SendEventToEventTargetWithOptions + 94
    18  com.apple.HIToolbox                     0x9323bb17 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 491
    19  com.apple.HIToolbox                     0x932c8fad HIView::RecursiveDrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char) + 551
    20  com.apple.HIToolbox                     0x932c9048 HIView::RecursiveDrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned char, unsigned char, unsigned char) + 706
    21  com.apple.HIToolbox                     0x932c7ff9 HIView::DrawNonComposited(short, OpaqueGrafPtr*, OpaqueRgnHandle*, unsigned long) + 333
    22  com.apple.HIToolbox                     0x932b8ea5 UpdateControls + 182
    23  com.apple.HIToolbox                     0x93235f00 HandleWindowEvent(OpaqueEventRef*) + 369
    24  com.apple.HIToolbox                     0x9320d851 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 110
    25  com.apple.HIToolbox                     0x9339a9bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    26  com.apple.HIToolbox                     0x93222394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    27  com.apple.HIToolbox                     0x93221780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    28  com.apple.HIToolbox                     0x93235655 SendEventToEventTarget + 88
    29  com.apple.HIToolbox                     0x934d844b SendEvent(unsigned long, WindowData*, OpaqueRgnHandle*) + 205
    30  com.apple.HIToolbox                     0x9324388c PaintWindow(WindowData*, OpaqueRgnHandle*, PaintReason, bool) + 470
    31  com.apple.HIToolbox                     0x9323a63c WindowData::PrepareForVisibility() + 232
    32  com.apple.HIToolbox                     0x932394e8 _ShowHideWindows + 484
    33  com.apple.HIToolbox                     0x932392ff ShowHide + 44
    34  com.adobe.owl                           0x02f28d10 OWLThemeAddBrush + 6524
    35  com.adobe.owl                           0x02ff6aba OWLDocumentCreateNonComposite + 18152
    36  com.adobe.owl                           0x02ff7520 OWLDocumentCreateNonComposite + 20814
    37  com.adobe.owl                           0x02f27928 OWLThemeAddBrush + 1428
    38  com.apple.HIToolbox                     0x9339a9bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    39  com.apple.HIToolbox                     0x93222394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    40  com.apple.HIToolbox                     0x93221780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    41  com.apple.HIToolbox                     0x932215ca SendEventToEventTargetWithOptions + 94
    42  com.adobe.owl                           0x02f2762d OWLThemeAddBrush + 665
    43  com.adobe.owl                           0x02f28ef3 OWLThemeAddBrush + 7007
    44  com.adobe.owl                           0x02ff7039 OWLDocumentCreateNonComposite + 19559
    45  com.adobe.owl                           0x02ff9418 OWLDocumentCreateNonComposite + 28742
    46  com.adobe.owl                           0x02ff958c OWLDocumentCreateNonComposite + 29114
    47  com.adobe.owl                           0x0300bfc1 OWLWorkspaceBookmarkSnapshot + 25517
    48  com.adobe.owl                           0x02f3dbfe OWLPaletteGetIcon + 536
    49  com.adobe.owl                           0x02f62318 OWLWidgetShow + 370
    50  com.adobe.PhotoshopElements             0x00f6cfee start + 12277514
    51  com.adobe.PhotoshopElements             0x00f66aa1 start + 12251581
    52  com.adobe.PhotoshopElements             0x00f6b592 start + 12270766
    53  com.adobe.PhotoshopElements             0x00437ba1 start + 524989
    54  com.adobe.PhotoshopElements             0x0042198f start + 434347
    55  com.adobe.PhotoshopElements             0x004220c5 start + 436193
    56  com.adobe.PhotoshopElements             0x0042658d start + 453801
    57  com.adobe.PhotoshopElements             0x004257a5 start + 450241
    58  com.adobe.PhotoshopElements             0x0041c32f start + 412235
    59  com.adobe.PhotoshopElements             0x0041c4a7 start + 412611
    60  com.adobe.PhotoshopElements             0x0041b076 start + 407442
    61  com.adobe.PhotoshopElements             0x005e4fa9 start + 2283205
    62  com.adobe.PhotoshopElements             0x005e5042 start + 2283358
    63  com.adobe.PhotoshopElements             0x003b79e6 start + 258
    64  com.adobe.PhotoshopElements             0x003b790d start + 41
    Thread 1:
    0   libsystem_kernel.dylib                  0x949c50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9313c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9313be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93123d2a start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x949c59ae kevent + 10
    1   libdispatch.dylib                       0x96c01c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x96c017a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x949c50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9313c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9313be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93123d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x949c48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9313e2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x931cbaf0 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0b839900 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x0b832650 C_EULA_SetState + 2164
    5   com.adobe.amt.services                  0x0b839966 C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x949c50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9313c0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9313be79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x93123d2a start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x949c2826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x922fc810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x1913a238 ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x922fca7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x949c2826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x922fc810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x1913a238 ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x922fca7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x949c2826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x922fc810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x1913a238 ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x922fca7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x949c48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9313e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x931c4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92329492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9232968e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92275acb MPWaitOnQueue + 261
    6   AdobeACE                                0x0315bf81 0x311c000 + 262017
    7   AdobeACE                                0x0315b979 0x311c000 + 260473
    8   com.apple.CoreServices.CarbonCore          0x922fca7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x949c48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9313e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x931c4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92329492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9232968e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92275acb MPWaitOnQueue + 261
    6   AdobeACE                                0x0315bf81 0x311c000 + 262017
    7   AdobeACE                                0x0315b979 0x311c000 + 260473
    8   com.apple.CoreServices.CarbonCore          0x922fca7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x949c48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9313e280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x931c4095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92329492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9232968e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92275acb MPWaitOnQueue + 261
    6   AdobeACE                                0x0315bf81 0x311c000 + 262017
    7   AdobeACE                                0x0315b979 0x311c000 + 260473
    8   com.apple.CoreServices.CarbonCore          0x922fca7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x949c28e6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x931cac10 nanosleep + 375
    2   com.adobe.PSAutomate                    0x1c2086cb ScObjects::Thread::sleep(unsigned int) + 143
    3   com.adobe.PSAutomate                    0x1c20872b ScObjects::Thread::wait(unsigned int) + 23
    4   com.adobe.PSAutomate                    0x1c1e18be ScObjects::BridgeTalkThread::run() + 332
    5   com.adobe.PSAutomate                    0x1c2089eb ScObjects::Thread::go(void*) + 239
    6   libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 13:
    0   com.adobe.PhotoshopElements             0x016ae067 sqlite3_file_control + 18162
    1   com.adobe.PhotoshopElements             0x016c54da sqlite3_open + 18285
    2   com.adobe.PhotoshopElements             0x016c92fb sqlite3_step + 56
    3   com.adobe.PhotoshopElements             0x0165acc2 sqlite_result::advance() + 234
    4   com.adobe.PhotoshopElements             0x01658dc3 dbl::sqlite_implementer::exec_sql(dbl::sql_t const&, boost::shared_ptr<boost::function<jtb::progress_result ()> >) + 481
    5   com.adobe.PhotoshopElements             0x016572a9 dbl::sql_t::begin_internal(boost::shared_ptr<boost::function<jtb::progress_result ()> >) const + 319
    6   com.adobe.PhotoshopElements             0x019fd3dd dbl::sql_t::begin() const + 45
    7   com.adobe.PhotoshopElements             0x01241fd2 start + 15247086
    8   com.adobe.PhotoshopElements             0x01249aad start + 15278537
    9   com.adobe.PhotoshopElements             0x0124aff4 start + 15283984
    10  com.adobe.PhotoshopElements             0x0124b14a start + 15284326
    11  com.adobe.PhotoshopElements             0x01638421 Pt::ThreadStartInternal(void*) + 29
    12  libsystem_c.dylib                       0x931395b7 _pthread_start + 344
    13  libsystem_c.dylib                       0x93123d4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00001bb8  ebx: 0x00001bb8  ecx: 0x00001bb8  edx: 0x00000000
      edi: 0x1c60a8d0  esi: 0x00000001  ebp: 0xbfffc8d8  esp: 0xbfffc810
       ss: 0x00000023  efl: 0x00010203  eip: 0x00b52164   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xc0000000
    Logical CPU: 1
    Binary Images:
        0x1000 -  0x2227fe3 +com.adobe.PhotoshopElements (10.0 [20110831.m.17215] - 10) <1B04ADC3-E3D8-A190-822F-969CC9559AB2> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/MacOS/Adobe Photoshop Elements Editor
    0x2a6b000 -  0x2a71fff  org.twain.dsm (1.9.4 - 1.9.4) <A001BEFA-F163-340E-BB1A-C2905F9FC65B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x2a79000 -  0x2e5301f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x2f0e000 -  0x30aefe7 +com.adobe.owl (AdobeOwl version 3.1.12 - 3.1.12) <CDEF4B02-FC22-7D48-3FE3-61BA27E7B770> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x311c000 -  0x323dfeb +AdobeACE (1) <4ED19D67-5FCE-653F-FE47-63F2642FFD3C> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x3264000 -  0x365fffb +AdobeMPS (1) <746FBFB2-5AFA-B27F-51B1-949B3CE65FCE> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x36de000 -  0x3a03ff7 +AdobeAGM (1) <B4C93913-5929-0DD9-B6AA-F31898A40579> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x3a79000 -  0x3d98ff7 +com.adobe.CoolType (AdobeCoolType 5.08.104.14136 - 5.08.104.14136) <C8D029C6-B48A-A2B9-79E3-6022A22A6E32> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3def000 -  0x3e0aff3 +AdobeBIB (1) <CF6D168F-10ED-7B79-9346-4607F3064DB9> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x3e12000 -  0x3e38ff3 +AdobeBIBUtils (1) <185B4EA9-AF0A-0D6C-1E12-709827408B54> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x3e40000 -  0x3e63ff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedE xpat
    0x3e77000 -  0x3f042cb +libicucnv.dylib.36.0 (36) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x3f34000 -  0x3f4f80f +libicudata.dylib.36.0 (36) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x3f53000 -  0x3fc1ffb +com.adobe.amtlib (amtlib 4.2.0.4 - 4.2.0.4) <997A56A4-498F-BBB1-189F-DF28DCDF9440> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x3fd8000 -  0x4068fc3 +WRServices (0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x41ed000 -  0x4244fff +aif_core (0) <B4DCB439-E1EE-ABE3-BD12-2C42E980366B> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x425f000 -  0x427cffd +data_flow (0) <8E452B6F-8032-39D8-EB5C-49A4E31CB988> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x42aa000 -  0x4323fff +image_flow (0) <498A857D-F8C6-F9E0-C92F-BC3EC8680ED0> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x438c000 -  0x439cfff +image_runtime (0) <F379A952-2983-1E44-676D-BBD8259F131A> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x43b3000 -  0x4572ffe +aif_ogl (0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x4628000 -  0x46f9fef +AdobeAXEDOMCore (0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x47b0000 -  0x486dfff +AdobeAXSLE (0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x4918000 -  0x491cffc +AdobeOperaMgr (1) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeOperaMgr.framework/Versions/A/AdobeOperaMgr
    0x4928000 -  0x4951ff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <F5A4CCC3-E5E2-3451-96FD-40BA328605B6> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x496a000 -  0x49d7fef +FileInfo (0) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x49f4000 -  0x4a51fff +AdobeXMP (0) <7577D84C-17DF-E00C-F720-AE40E88F29A6> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x4a5c000 -  0x4ae8fef +AdobeXMPFiles (0) <03DDE52B-E9AB-EFDD-CA13-C8DF1DB345D0> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x4b22000 -  0x4bc1ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.13.2 - 4.13.2.13472) <5E71AEDA-B617-EC2A-A131-3780B4C904AA> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x4c2b000 -  0x4cbdfe3 +com.adobe.AdobeScCore (ScCore 4.13.2 - 4.13.2.13472) <4D01E91C-F2D4-CC20-EBC6-6EA099AE2CF9> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x4d0d000 -  0x4d28ff9 +AdobePDFSettings (1) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x4d42000 -  0x4dbffff +AdobeOwlCanvas (1) <7AA102E0-B244-9265-38B9-9831AE50388A> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x4dde000 -  0x5126fe7 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <909D96B9-E5EA-57C2-77F6-4485D4B65108> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x562a000 -  0x57a6fe7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <C69521DA-0A39-8FE2-1F02-240209E2FD8E> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5920000 -  0x5c06fff +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <E469635D-2271-EB2C-F96A-5BFE77FC16BB> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x5f25000 -  0x5f28ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x5f2f000 -  0x5f36ff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <6D2E0799-9E36-6F46-33B5-7F8C91D4C1DD> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x5f47000 -  0x5f9affb +com.adobe.headlights.LogSessionFramework (2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5fe2000 -  0x6087ffb +FaceDetector (0) <1275F007-B8A7-CA23-8F89-570E182FCBA8> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/FaceDetector.framework/Versions/A/FaceDetector
    0x61aa000 -  0x6255fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x6299000 -  0x62bbffe  libssl.0.9.7.dylib (106) <FC1F6C04-EAD3-39D1-8E25-B1192E89D98B> /usr/lib/libssl.0.9.7.dylib
    0x62c9000 -  0x62cdffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x62d4000 -  0x62f6ff7 +libtbb.dylib (0) <AAA2AFA2-789A-41B8-D03D-C03861305060> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/libtbb.dylib
    0x630b000 -  0x6347ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x67ed000 -  0x67eeffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xb814000 -  0xb880fe7 +com.adobe.amt.services (AMTServices 4.2.0.4 [BuildVersion: 4.2; BuildDate: Wed Apr 27 2011 21:49:00] - 4.2.0.4) <4AB06004-C6E0-593E-912C-821526F14DF9> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xb8a4000 -  0xb8b1ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xbfc0000 -  0xbfcefff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xbfd2000 -  0xbfe4ffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xbfe8000 -  0xbfe9ff8  ATSHI.dylib (341.1) <7FD74F4D-E42A-30CB-8863-1832BFADFE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0xe417000 -  0xe487feb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xe495000 -  0xe49dfff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xe4d7000 -  0xe4d8ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1) <098CE576-3239-3B41-9141-A5BE6E476C84> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0x17a5f000 - 0x17acdfd7 + (???)
    0x17b37000 - 0x17b70ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <3A9CF871-6678-90BB-3770-CDBF56AF21D5> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificat ions
    0x17c55000 - 0x17c82ff3 +libcurl (0) /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/libcurl.framework/Versions/A/libcurl
    0x17d79000 - 0x17d8bfff +com.adobe.pip (5.0.0.2021) <5251926B-C2C0-282C-B3A9-94A9FEF0FCB8> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
    0x17d94000 - 0x17f28ffa  GLEngine (8.9.2) <73F967E8-16C2-3FB2-8C04-293EB038952D> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x17f5f000 - 0x180e0fff  libGLProgrammability.dylib (8.9.2) <B7AFCCD1-7FA5-3071-9F11-5161FFA2076C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x18112000 - 0x1811dfff  libGPUSupport.dylib (8.9.2) <01E0F852-CBB7-3EE7-A2CD-79CB4A3EF2B5> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0x18124000 - 0x1814fff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x18158000 - 0x18160ffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x181b1000 - 0x181dafef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x181ec000 - 0x181f5ff3 +FastCore (???) <1D09EA0C-4838-1CFF-FA7A-97D1FA4758FE> /Applications/Adobe Photoshop Elements 10/*/FastCore.plugin/Contents/MacOS/FastCore
    0x18300000 - 0x18686ff3  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (8.12.47 - 8.1.2) <6D34B12D-7E54-3B24-A018-D061C03FDD35> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver
    0x187dc000 - 0x187e3ffb +PPCCore (???) <7106D548-71D1-D467-B047-3A4A42FD120C> /Applications/Adobe Photoshop Elements 10/*/PPCCore.plugin/Contents/MacOS/PPCCore
    0x187ed000 - 0x187f4fff +AltiVecCore (???) <C8351EB9-FBD4-D846-3181-19B1BE0BA339> /Applications/Adobe Photoshop Elements 10/*/AltiVecCore.plugin/Contents/MacOS/AltiVecCore
    0x19100000 - 0x1914aff7 +MultiProcessor Support (???) <610A5DAF-1D7F-A07D-DC07-437CC35D361D> /Applications/Adobe Photoshop Elements 10/*/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x1917d000 - 0x192cffc7 +com.adobe.coretech.adm (3.10x16 - 3.1) /Applications/Adobe Photoshop Elements 10/*/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x195a5000 - 0x195b7fff +net.telestream.license (1.1.0.1 -GC - 1.1.0.1 -GC) <DC7780FD-AAAC-310E-92D5-1B8E7AB20E8C> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x195ed000 - 0x195f4ffc  com.apple.AppleGVAHW.component (1.1 - 1) <5DB91F15-3FD3-308F-8FC5-662562F3EA78> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x197d5000 - 0x197d9ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x197de000 - 0x197f6ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo
    0x1a3ad000 - 0x1a46bff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x1a784000 - 0x1a7befff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.31) <0761249B-19FD-39DA-819E-C827BE16B0B8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x1a7ca000 - 0x1a7ebfff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec
    0x1c000000 - 0x1c3acff7 +com.adobe.PSAutomate (11.0 - 11.0) <C0EF016C-58E4-6BFF-168E-C1B5E78A9374> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Required/scriptingsupport.plugin/Contents/MacOS/ScriptingSupport
    0x1c8c5000 - 0x1c9bdfef +com.yourcompany.ems (1.0 - 1) <D0C54C8B-59B4-04D7-E441-4EB71F36D173> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/ems.framework/ems
    0x1cb01000 - 0x1cb69feb  com.apple.AppleProResDecoder (3.0.2 - 5718) <4442CBCE-7163-3E6A-8511-A52E9F6D8AFC> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProResDecoder
    0x1d105000 - 0x1d215ff7 +net.telestream.wmv.import (2.5.0.1 - 3.0.0.126) <6CB544CE-B60B-3BEE-954F-67BD9228B6C9> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1d8a2000 - 0x1da63fef +net.telestream.wmv.advanced (2.5.0.1 - 3.0.0.126) <6D1AADBA-C72A-3B73-85B3-4D37C4083830> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1daad000 - 0x1daf6fff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <E1B4C063-BF0D-3021-AFB0-4575C986140C> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1dbba000 - 0x1dd05fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6) <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x40000000 - 0x400c7ff3 +AdobeJP2K (0) <88B283E5-7E2A-693F-C2D0-0398430A2933> /Applications/Adobe Photoshop Elements 10/*/Adobe Photoshop Elements Editor.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe63000 - 0x8fe95e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9024a000 - 0x90273ff7  libRIP.A.dylib (332) <521E60A6-A768-3CB8-B10D-D10EECD68A94> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x90274000 - 0x9036cff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x9036d000 - 0x90424ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.31) <962991AB-532D-3CBA-BBE4-BA55E1A45562> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4
    0x90425000 - 0x90434fff  libGL.dylib (8.9.2) <1082B9A5-9AA3-35D4-968B-3A3FE15B1ED7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90435000 - 0x9043fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x90470000 - 0x90473fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x90474000 - 0x90498fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x90499000 - 0x9049dfff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9049e000 - 0x90572ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90574000 - 0x90589fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9058c000 - 0x9059cff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x9059d000 - 0x905f8ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x905f9000 - 0x906a8ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x906d9000 - 0x90721ff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9074e000 - 0x907eeff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x907ef000 - 0x908fc057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x908fd000 - 0x9093ffff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x909f5000 - 0x90a3cff3  com.apple.CoreMedia (1.0 - 926.104) <D0E3BE86-12ED-31BE-816F-E72D757A9F2F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90a3d000 - 0x90a49ffe  libkxld.dylib (2050.24.15) <BEC097B0-9D9A-3484-99DB-0F537E71963E> /usr/lib/system/libkxld.dylib
    0x90a4a000 - 0x90aa4ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x91323000 - 0x9139dff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9139e000 - 0x9164cffb  com.apple.MediaToolbox (1.0 - 926.104) <DD264DFD-9AFB-38E2-A44C-B463DCB721A0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x9164d000 - 0x91672ffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x91673000 - 0x91681fff  com.apple.opengl (1.8.9 - 1.8.9) <1872D2CD-00A8-30D1-8ECC-B663F4E4C530> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91682000 - 0x91686ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x91687000 - 0x91770ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x91915000 - 0x91957ffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x91958000 - 0x91bfbff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x91bfc000 - 0x91c64ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <70DE925B-51E8-3C65-8928-FB49FD823D94> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91c65000 - 0x91ca4ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91ca5000 - 0x91ccefff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x91ccf000 - 0x91cd6ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x91cd7000 - 0x91d4cff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x91d4d000 - 0x91d4dfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x91d4e000 - 0x91d61ff9  com.apple.MultitouchSupport.framework (235.29 - 235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x91d62000 - 0x91d70fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x91d71000 - 0x91eacff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x91ead000 - 0x92265ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x92266000 - 0x9256bff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9256c000 - 0x92579ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9257a000 - 0x9257bfff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x9257c000 - 0x925b2ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x925b3000 - 0x925b7ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x925b8000 - 0x92606ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92607000 - 0x92661fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x92662000 - 0x928d4ff3  com.apple.RawCamera.bundle (4.07 - 696) <6D4C54D0-2C3A-3364-B7D1-2148B9D30C07> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x928d5000 - 0x92924ff6  libTIFF.dylib (850) <78E121A6-92A2-3120-883C-7AA3C2966F9C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92931000 - 0x92964ffb  com.apple.GSS (3.0 - 2.0) <9566A96D-C296-3ABD-A12A-E274C81C0B25> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x92cde000 - 0x92ce0ffb  libRadiance.dylib (850) <83434287-A09E-3A3F-A1AC-085B563BA46D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92ce1000 - 0x92d25ff7  libGLU.dylib (8.9.2) <F33F6C73-7F89-3B5B-A50F-2AB57BBA314D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92d30000 - 0x92e63ff3  com.apple.MediaControlSender (1.7 - 170.20) <7B1AC317-AFDB-394F-8026-9561930E696B> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x92e72000 - 0x92e97ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92e99000 - 0x92eb0fff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x92eb7000 - 0x92ebaff9  libCGXType.A.dylib (332) <07B59FCC-6229-37C2-9870-70A18E2C5598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x92ebb000 - 0x92ed8fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x92ed9000 - 0x92eeefff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x92eef000 - 0x92f0dff3  com.apple.openscripting (1.3.6 - 148.3) <F3422C02-5ACB-343A-987B-A2D58EA2F5A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x92f0e000 - 0x92f6ffff  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <A3B911DB-77DF-3037-A47A-634B08E5727D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92f96000 - 0x92ff1fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x92ff7000 - 0x93102ff7  libJP2.dylib (850) <3FFCEFA6-317A-34AF-8D99-AEBB017543C5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x93103000 - 0x9310affe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9310b000 - 0x93122ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x93123000 - 0x931e0feb  libsystem_c.dylib (825.26) <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x931e1000 - 0x931edff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x931ee000 - 0x935d1fff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x935d2000 - 0x93614fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x93646000 - 0x93648fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x93649000 - 0x9368bff7  libcups.2.dylib (327.6) <D994A44F-CCDD-3D40-B732-79CB88F45908> /usr/lib/libcups.2.dylib
    0x9368c000 - 0x9368cfff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9368d000 - 0x936f3fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x936f4000 - 0x936f8fff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x936f9000 - 0x93794fff  com.apple.CoreSymbolication (3.0 - 117) <F705A8CD-A04A-3A84-970A-7B04BC05DA97> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x93795000 - 0x93795fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93796000 - 0x9382dff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x9382e000 - 0x9382efff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9382f000 - 0x9389effb  com.apple.Heimdal (3.0 - 2.0) <964D9952-B0F2-34F6-8265-1823C0D5EAB8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x93910000 - 0x93912fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x93b81000 - 0x93bbcfef  libGLImage.dylib (8.9.2) <9D41F71E-E927-3767-A856-55480E20E9D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x93bbd000 - 0x93d0bff3  com.apple.CFNetwork (596.4.3 - 596.4.3) <547BD138-E902-35F0-B6EC-41DD06794B22> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x93d0c000 - 0x93d0dfff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x93d0e000 - 0x93d0effd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x93d0f000 - 0x93d10fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x93d11000 - 0x93d8dff3  com.apple.Metadata (10.7.0 - 707.11) <F9BB5BBE-69D0-3309-8280-2303EB1DC455> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x93d8e000 - 0x93d8efff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x93e2d000 - 0x940a9ff7  com.apple.QuickTime (7.7.1 - 2599.31) <3839E1F3-7948-3E68-9AE1-A0CEE8C59212> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x940aa000 - 0x940b1ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x940b2000 - 0x943d2ff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x943d7000 - 0x943d8ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x943d9000 - 0x943dafff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x943db000 - 0x943dbfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x943dc000 - 0x943e0fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x943e1000 - 0x9456aff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9456b000 - 0x94572fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x945b9000 - 0x946b6ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <26D0C7F8-E87E-3511-8388-8EE616A39D6D> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x946c1000 - 0x946deff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x946df000 - 0x94764ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x947a5000 - 0x947acfff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x947ad000 - 0x947b7fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x947b8000 - 0x947befff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x947bf000 - 0x947c0fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x947c1000 - 0x948a2fff  libcrypto.0.9.8.dylib (47.1) <E4820342-4F42-3DEB-90DB-DE5A66C5585E> /usr/lib/libcrypto.0.9.8.dylib
    0x948a7000 - 0x948c7ffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x948d6000 - 0x9498afff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9498b000 - 0x949affff  libJPEG.dylib (850) <36FEAB05-86C5-33B9-9DE9-5FAD8AEBA15F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x949b0000 - 0x949caffc  libsystem_kernel.dylib (2050.24.15) <9E58DCC0-D5FF-37E1-AA7F-F2206719E138> /usr/lib/system/libsystem_kernel.dylib
    0x949cb000 - 0x949ceffc  libCoreVMClient.dylib (32.3) <35B63A60-DF0A-3FB3-ABB8-164B246A43CC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x949cf000 - 0x94a79fff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x94a7a000 - 0x957b2ff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.31) <A0445D02-A1C1-3D40-8219-D8EA6B28811C> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x957b3000 - 0x957b7ffc  libGIF.dylib (850) <45CD8B8F-7324-3187-B01C-8E16C04F33FA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9585e000 - 0x9591cff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9591d000 - 0x95967ff7  com.apple.framework.CoreWLAN (3.3 - 330.15) <74C4B50F-7016-341F-8261-D379B8F0CC97> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x95968000 - 0x95999fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9599a000 - 0x95ab2ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x95ab3000 - 0x95ed0fff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x95ed1000 - 0x95edafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95edb000 - 0x95f10fff  libTrueTypeScaler.dylib (84.6) <B7DB746B-7A61-38EF-8CA7-408ED9C14A02> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x95f11000 - 0x95f1fff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x95f20000 - 0x95f65ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x95f66000 - 0x95f74ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x95f75000 - 0x95fa2ffb  com.apple.CoreServicesInternal (154.3 - 154.3) <A452602B-67CB-39C4-95EB-E59433C65774> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x95fa3000 - 0x9615fffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x96160000 - 0x96251ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x96252000 - 0x968deff3  com.apple.CoreAUC (6.16.13 - 6.16.13) <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x968df000 - 0x96971ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x96972000 - 0x96988fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x96989000 - 0x96993fff  libCSync.A.dylib (332) <86C5C84F-11EC-39C0-9FAC-A93FDEEC3117> /System/Library/Frameworks/ApplicationServic

    nealeh, 
    The story is a bit complicated.  Here is the whole tale in sequence.  I bought a new camera.  Images from the new camera would not import into my copy of PSE 10.  I contacted adobe to see if there was a patch and was informed that I needed to upgrade to PSE 12.  I got PSE 12 and installed it only to find out that the Organizer would not display anything on my computer.  I contacted adobe and learned that I needed to upgrade my operating system to Mavericks.  Since my computer was a 2007 model and 7 years old, it could not be upgraded to Mavericks.  I bought a new computer.  When the new computer arrived, I transferred all of the files, photos and applications from the old computer to the new computer.  My photos were all then in a catalog in PSE 10 on the new computer. 
    I uninstalled PSE 12 from the new computer and re-installed it from the disc onto my new computer.  Then I imported the catalog from PSE 10 to PSE 12.  So I had the opportunity to “upgrade to Mavericks and try to use PSE 12” but I decided to reinstall.  My answer is that I bought a new computer with Mavericks and added PSE 12 fresh by reinstallation. 
    I noted that none of the videos are in any stack.  I reviewed my videos and if there was no thumbnail, I played the video to create a thumbnail.  There were maybe eight videos without a thumbnail.  The system had produced thumbnails for most of the videos.  All of the videos now have thumbnails.  I will try to operate normally for a few days before I try deleting the thumbnails from the catalog.  Let me see if things will work with the thumbnails complete.

  • There was a problem sending the command to the program when opening Microsoft Project 2010 files

    When opening MS Project 2010 files from the file and print server, I receive "There was a problem sending the command to the program."  Copy the same file to my local drive and the file opens fine.  This can be repeated by several other
    users.  Created a simple project file and once the size hit 1 MB, the error appeared.  The error appears on all files over 1 MB.
    I am a domain admin, so it is not a rights issue.  This does not seem to be a network latency issue, the file copies extremely fast.
    Any ideas?

    This message appears to be caused by Windows Explorer trying to send old-fashioned DDE messages to the Application.
    Since MS Project has no "Ignore DDE messages" setting you might want to go change the compatibility settings for WinProj.EXE (and any shortcut to it) to Windows 7 or greater.  Hopefully then Windows Explorer will stop trying to send DDE messages.
    Another possible culprit is older versions of the WinZip explorer extensions - I would disable them as well.
    Good luck,
       James.
    James Boman - http://www.boman.biz Software Consultant for IPMO - http://www.ipmo.com.au

  • An error occurred [CANF] when opening Illustrator

    Adobe creative cloud recently updated now getting error on opening of illustrator... Any ideas folks?
    An error occurred [CANF] when opening Illustrator

    luminite design,
    You may roll back here,
    http://prodesigntools.com/adobe-cc-version-control.html
    but unless this is a new general strangeness, you may try the list.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Reader 9.0, 9.1, 9.1.2 blue screening when opening multiple PW protected files

    I have a user, using MSOffice 2k3, who get a blue screen when opening multiple password protected files thru Outlook. The error suggests to update the BIOS, which has been done. This occurrs in all 3 versions of Reader 9. It specifically occurrs AFTER he inputs the password in the PW box. It does not matter which file he opens 1st. Any assistance would be appreciated.
    mburdikoff

    No, you are wrong (Gene & Mike). First, the forms, at least my forms, have NOT been edited since being created in designer. They were created and saved directly to flash. Second, this issue has been posted on the acrobat forum as well as the life cycle designer forum and both thread were ended with adobe expert posts saying it was an adobe reader issue and to post here.
    I have experimented more with this issue and it seems to be a 'trusted identity' issue within reader, but I have not wholely figured it out yet. My forms work on Reader, 7, 8, and 9. They work on all versions of 7 and 8 regardless of what the form was optimized for (my forms were optimized for 9 and higher). The only trouble is on 9.0. I have found that when updating on client machines, reader gives a prompt (sometimes) that says reader has found a set of trusted identities from a previous version, would you like to use these identies or create a new set of identities. If you choose to keep the existing trusted identies set, the form works, even when upgraded to reader 9.0
    Not trying to be argumentative (Mike and Gene) but the 'experts' bail on this issue by telling people it's a reader problem and to post here.

  • I am getting "a network error occurred while attempting to read from the file c:\windows\installer\itunes.msi" when I attempt to download itunes, can someone help me with this?

    I am getting "a network error occurred while attempting to read from the file c:\windows\installer\itunes.msi" when I attempt to install itunes.  Can anybody help me to resolve this issue?

    You can try disabling the computer's antivirus and firewall during the download the iTunes installation
    Also try posting in the iTunes forum since it is not an iPod touch problem.

  • I have Dreamweaver CS3 on a PC with Windows Vista SP2. The program recently began to hang when opening previously created HTML files. How do I fix this?

    I have Dreamweaver CS3 on a PC with Windows Vista SP2. The program recently began to hang when opening previously created HTML files. How do I fix this?

    Hi rmarchione,
    Can you try restoring preferences and let us know if it helps?
    Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6
    Thanks,
    Preran

  • TS3212 Still unable to download itunes to my pc. Tried with IE, Mozilla and Google Chrome. Keep getting an error message :"Windows cannot open itunes.exe the file is corrupt contact support."previous itunes files were wipped out by "disk cleaner." Any hel

    Still unable to download itunes to my pc. Tried with IE, Mozilla and Google Chrome. Keep getting an error message :"Windows cannot open itunes.exe the file is corrupt contact support."previous itunes files were wipped out by "disk cleaner." Any help??
    Please!
    Thanks!

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • I'm a new Mac user. I imported photos from my PC they ended up in iphoto library on the hard drive, but when I open iphoto from my dock its empty. How do I import those photos to the dock file?

    I'm a new Mac user. I imported photos from my PC through a jump drive and they ended up in my iphoto library on the hard drive but when I open iphoto from the dock its empty. How do I import those photos to the dock file from the iphoto library?

    Paragon Software has the most reliable NTFS driver for Mac
    tips on importing and organizing, transferring from Windows etc
    http://www.apple.com/support/itunes
    http://www.ilounge.com

Maybe you are looking for

  • Calling Servlet from Java Class in eclipse

    Hi , I am calling a Servlet from JAVA Class as I am using IDE: Eclipse. The Problem is below URL url = new URL(ServletPath); URLConnection connet = url.openConnection(); I am using the above code in JAVA to Connect to Servlet I have given Print state

  • Email Problems: WiFi Fine EDGE Doesn't Work

    I can send and receive email with wi-fi no problem. I can receive when on Edge but I can't send when on Edge. Anyone have any advice? Have I missed some setting that I don't know about?

  • Permit Classification Problem

    Dear All While creating classification in IPMD for a permit; the system gives a dump. Shown to ABAP progemammer but still no solution has been found. Is there any problem in assigning the values to the class or characteristics for the IPMD classifica

  • I want to remove my dead podcast from iTunes directory

    I used Podpress, a plug in for my Wordpress blog page and not really knowing what I was doing, posted 2 podcasts to the iTunes podcast directory. They are both dead now, but they are still there, with nothing to download. How do I go about removing t

  • Mobile Site and System Pages

    I know you can create a separate mobile website for tablets and phone. I will be doing this for a site I am building that has content specifically targeted for iPad devices. The question I have though is how are system generated pages handled? For in