Batch Crash

Hi all,
Just bought PS CS5 (used to run CS2) and was disappointed to find that when I go to File > Automate > Batch, it always crashes with the message  "Photoshop CS5.1 has encountered a problem and needs to close ...."
I am running an Intel Core Duo  E6750 2.66GHz 2.98 GB RAM. with Windows XP Pro. The CS5 is version 12.1 x32, I saw an upgrade patch on the Adobe site (AdobePhotoshop12-4-mul-AdobeUpdate) but it would not install, said  it was "not applicable"
I don't have any 3rd party plugins etc except for something I downloaded (from Adobe) to run my scanner.
I have seen this problem discussed elsewhere on the web but not with any clear solution.
Anyone help?
Cheers,
Grant

Any chance that you have the TWAIN plugin installed, and a buggy TWAIN scanner driver?
Either update your TWAIN driver, or disable the Photoshop TWAIN plugin so it'll stop calling that driver.
And yes, the problem was discussed here on this forum, with the clear conslusion that the buggy scanner drivers were the cause.
Disabling the TWAIN plugin for Photoshop just stops Photoshop from calling the scanner driver that contains the bugs.

Similar Messages

  • [CS2][AS] Make XML import map is calling a refresh on styles?

    If this can be of use to someone else... it's probably not CS2,AS specific.. but this is what i use.
    It's the second time i have a bug like this, where changing the order of my calls is fixing the problem. With this one, i was getting random missing font error (times(1)) while batching documents(wich make the batch script batch crash as there is a modal dialog open). Not always on the same document, it was really fustrating as i was not able to get my finger on the problem!
    I actually knew the source of the problem as i had added a fix (maybe not the best solution, but it was working well) that actually was removing the style from all the text frame (i noticed that using map style to tag was not always working well(when text frame had overriden?), so that's why i added code to reset the style before doing a map. But i was not understanding why it was happening so randomly...
    I tought at first it was happening during save (as it reopen the document) but after a few experimentation it looked like it was occuring during the import map redefinition (See code below: make XML import map with properties {markup tag:tStyle, mapped style:tStyle}).
    Looks like the make XML import is calling some sort of document refresh wich then pop the font missing dialog (even with never interact as script preferences!)! (missing font is actually a bug i had also in other circumstances.. exemple when you have a extra return at the end of a tagged text (outside the tag)). A bit unexpected, i really tought that creating a xml import map was just creating data structure in document model to be used later on by the auto style call...
    The problematic script:
    tell application "Adobe InDesign CS2"
    set myDocument to document 1
    tell myDocument
    --Reset styles.
    set applied character style of every text of every text frame of every spread to character style 1
    set applied paragraph style of every text of every text frame of every spread to paragraph style 1
    --Create a tag to style mapping.
    set tList to name of every XML tag
    set tNumItems to count of tList
    repeat with i from 1 to tNumItems
    set tStyle to item i of tList
    make XML import map with properties {markup tag:tStyle, mapped style:tStyle}
    end repeat
    --Map the XML tags to the defined styles.
    auto style
    end tell
    end tell
    And the working solution (just moved the reset of style after the import map creation loop):
    tell application "Adobe InDesign CS2"
    set myDocument to document 1
    tell myDocument
    --Create a tag to style mapping.
    set tList to name of every XML tag
    set tNumItems to count of tList
    repeat with i from 1 to tNumItems
    set tStyle to item i of tList
    make XML import map with properties {markup tag:tStyle, mapped style:tStyle}
    end repeat
    --Reset styles.
    set applied character style of every text of every text frame of every spread to character style 1
    set applied paragraph style of every text of every text frame of every spread to paragraph style 1
    --Map the XML tags to the defined styles.
    auto style
    end tell
    end tell

    it doesnt print any server control message. in my "page_404.jsp" I am printing current date and time (to check if the server visited that page) everytime when i refresh "index.jsp" the server goes to "page_404.jsp" and prints the current date and time.
    so basically the only message which the console shows is the current date/time which i am printing in the "page_404.jsp"
    Thanks.

  • PL/SQL w/ Java to run OS batch file crashes Oracle

    I followed instructions from "Ask Tom" on using PL/SQL with Java to execute an OS batch file. For testing purposes, my batch file does nothing more than display the date and time from the OS.
    However, when I run the PL/SQL that executes this simple batch file repeatedly - anywhere from two to four times, the Oracle instance crashes abruptly. Nothing is written to the alert log. No trace files are created.
    Here is a sample session:
    SQL*Plus: Release 9.0.1.3.0 - Production on Wed Mar 24 10:04:26 2004
    (c) Copyright 2001 Oracle Corporation. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    SQL> set serveroutput on size 1000000
    SQL> exec dbms_java.set_output(1000000) ;
    PL/SQL procedure successfully completed.
    SQL> begin
    2 rc('c:\dba_tools\jobs\test.cmd') ;
    3 end ;
    4 /
    C:\Ora9ir2\DATABASE>date /t
    Wed 03/24/2004
    C:\Ora9ir2\DATABASE>time /t
    10:05 AM
    PL/SQL procedure successfully completed.
    SQL> begin
    2 rc('c:\dba_tools\jobs\test.cmd') ;
    3 end ;
    4 /
    C:\Ora9ir2\DATABASE>date /t
    Wed 03/24/2004
    C:\Ora9ir2\DATABASE>time /t
    10:06 AM
    PL/SQL procedure successfully completed.
    SQL>
    Shortly after the second "run", Oracle crashed. All I received was the following error message:
    Unhandled exception in oracle.exe (ORAJOX9.DLL): 0xC0000005: Access Violation
    Here is the Java procedure at the heart of my PL/SQL:
    create or replace and compile
    java source named "Util"
    as
    import java.io.*;
    import java.lang.*;
    public class Util extends Object
    public static int RunThis(String args)
    Runtime rt = Runtime.getRuntime();
    int rc = -1;
    try
    Process p = rt.exec(args);
    int bufSize = 4096;
    BufferedInputStream bis =
    new BufferedInputStream(p.getInputStream(), bufSize);
    int len;
    byte buffer[] = new byte[bufSize];
    // Echo back what the program spit out
    while ((len = bis.read(buffer, 0, bufSize)) != -1)
    System.out.write(buffer, 0, len);
    rc = p.waitFor();
    catch (Exception e)
    e.printStackTrace();
    rc = -1;
    finally
    return rc;
    I am running Oracle 9i rel. 2 installed on my PC under Windows XP Professional (Service Pack 2). My knowledge of Java is next to nothing.
    Can anyone give me an idea(s) as to what might be causing Oracle to crash?
    Thanks.

    Using 9.2.0.4 I made the following adjustments and it seems to run as often as I care to do it:
    Java changes:
    create or replace and compile
    java source named "Util"
    as
    import java.io.*;
    import java.lang.*;
    public class Util extends Object
    public static void RunThis(java.lang.String args)
    Runtime rt = Runtime.getRuntime();
    int rc = -1;
    try
    Process p = rt.exec(args);
    int bufSize = 4096;
    BufferedInputStream bis =
    new BufferedInputStream(p.getInputStream(), bufSize)
    int len;
    byte buffer[] = new byte[bufSize];
    // Echo back what the program spit out
    while ((len = bis.read(buffer, 0, bufSize)) != -1)
    System.out.write(buffer, 0, len);
    rc = p.waitFor();
    catch (Exception e)
    e.printStackTrace();
    finally
    PL/SQL Wrapper :
    create or replace procedure rc (cmd VARCHAR2) as
    language java name 'Util.RunThis(java.lang.String)';
    Execution:
    begin
    rc('c:\dba_tools\jobs\test.cmd');
    end ;
    D:\oracle\ora92\DATABASE>date /t
    Fri 03/26/2004
    D:\oracle\ora92\DATABASE>time /t
    10:48 AM
    PL/SQL procedure successfully completed.
    SQL> /
    D:\oracle\ora92\DATABASE>date /t
    Fri 03/26/2004
    D:\oracle\ora92\DATABASE>time /t
    10:48 AM
    PL/SQL procedure successfully completed.
    SQL> /
    D:\oracle\ora92\DATABASE>date /t
    Fri 03/26/2004
    D:\oracle\ora92\DATABASE>time /t
    10:49 AM
    PL/SQL procedure successfully completed.
    SQL> /
    D:\oracle\ora92\DATABASE>date /t
    Fri 03/26/2004
    D:\oracle\ora92\DATABASE>time /t
    10:50 AM
    PL/SQL procedure successfully completed.
    SQL>
    The only thing I really changed was the reurn value from the java procedure. If it has a return value then it should be declared as a function, not a procedure. Since you probably (apparently) weren't using the return value I dropped it and made it a procedure.

  • HT204053 How do you get your last batch of down loads to the new computer if the old one crashed before i was able to get it on my ipod

    How do you get your last batch of down loads to the new computer if the old one crashed before i was able to get it on my ipod

    See Here  >  Download Past Purchases
    http://support.apple.com/kb/HT2519

  • Adobe Media Encoder CC constantly crashing during batch encodes

    Hello!
    We just made the big switch to Premiere Pro CC for our TV shows and now that it's time to finalize our first few episodes we are having some major problems batch exporting segments of the show. Sometimes it works, sometimes it works half way through the batch list then crashes, sometimes it crashes right away. There is no consistency, other than crashes are happening all the time. Here's what is happening:
    • AME 7.2.0.43 (64-bit)
    • Mac OS X 10.9.1 on 2x2.66 GHx 6-Core Intel Xeon, 40 GB 1333MHz DDR3 RAM
    • Startup disk is SSD w/ 4GB free space (all footage is on external storage)
    • Using Premiere Pro CC to export via AME.
    • All recent updates insatlled as of 3/10/14.
    The source footage is ProRes 422 720p 59.94 footage from AJA KiPros. Each project has 16 segments - these are individual sequences. There are 7 tracks of audio and 4-5 tracks of video in each. In addition to the video there are targa files that include the score bug, full screen graphics, etc (this is sports). There are also some Adoby Dynamic Link After Effects elements throughout.
    Editing has been fairly crashless - however when I File > Export > Media and queue it up in AME, that's when the fun starts.
    I can rarely get through an entire batch list - generally within a few files the preview window at the bottom shows that it has halted and nothing further will encode. There is no way to stop or close the program without force quitting. When I have tried to encode from Premiere Pro CC directly, it works, although it is much slower and will only do the one sequence at a time.
    I have been trying to encode to two different formats from within AME:
    1.) ProRes 422 720 59.94 (just like the source footage) with 4 channels of audio.
    2.) ProRes 422 1080i29.97 with 4 channels of audio.
    We have different broadcast partners so we need to deliver in these two difference specs. I get crashes regularly on both outputs.
    Possibly unrelated but also weird - I've noticed that when AME starts this crashing cycle sometimes Premiere CC won't let me save anyome. The status bar comes up like it's going to save the project but it goes nowhere. I have to quit without saving. Weird.
    Can anyone help me further troubleshoot? This is bordering near deal breaker to continue using this software if I have this much trouble when trying to get my project outputted. Thank you!

    Agreed, I now have a project to GET OUT, and AME crashes consistently 1/3 into the render. It appears to halt all processing after (real time) 00:02:30
    Am seriously considering uninstalling CC as I am beginning to find other issues in some apps, and going back to CS6/MC just so I can get work out. Durn it Adobe this is AWFUL!!
    Alright, let's try to be constructive instead of throwing rocks... but the frustration level is high, and I have material on deadline. Let's get with this, guys...
    What OS Win7, 64-bit
    What version of AME/PPro (Please be specific by getting the full version number in the About Adobe Media Encoder screen) 8.2.0.54 Ppro: 8.2.0 (65)
    When is it crashing (Again, the more detail here about where it was in the encoding process the better) roughly 1/3 into the sequence, always on exactly the same frame - tried replacing the clip with something different to see if it was a timeline error, and NO EFFECT.
    What is your source (PPro project or media file (what kind?)) PPro
    If the source if a PPro project, does it work when exporting directly from PPro? NO
    What format are you exporting to? H.264, QT, WM, tried everything my client can play.
    Do other formats work? MPEG2, QuickTime, etc? NO
    Have you tried with GPU rendering on? How about turning it off by switching to Software-only mode? Mine doesn't have any choice, it's software-only.
    Have you tried disabling Native Sequence Loading? (AME Preferences: General > Enable Native Sequence Loading) No effect
    Other things I tried: uninstalling/reinstalling AME, setting cache to a fast local disk.

  • Media Encoder crashes on batch sequence export

    I edited an online video dictionary (about 7,500 five second clips) and have them all in sequences in Premiere pro CC waiting to be exported. I hae been battling for two weeks now day in and day out to try and export... I am limited to batch exporting this project and have never had problems with adobe softwares in five years ( a great track record). I have tried many ways of importing or exporting the sequences to Media Encoder CC, and have experienced crashes every single export attempt. As soon as I add more than 5-10 clips the program crashes when I start the que. I have tried 5 different computers, and still have not been able to solve this problem. I badly need to deliver this product, does anyone have a patch that will keep ME from crashing when you add more than a couple clips?

    Hi rdobbins,
    Please mention the operating system, the version of Premiere Pro CC and Media Encoder CC and he type of the files used in the project. Is there any third party plug-ins used in the project. If possible, please mention the crash logs as well.
    Regards,
    Vinay

  • Batch insert filename in textpath script crashes Illustrator

    Hi everyone!
    First off: I am not a programmer. Just playing around with code and trying to get it to work for a specific task:
    Here is a script made for the purpose of inserting a text with the file name in over 600 pdf files. This is suppose to work on all files in a selected folder.
    The problem: Illustrator crashes.
    A first test code worked but after a few edited files Illustrator crashed, so I tried to introduce a delay after each save in order to slow down the batch process.
    $.setTimeout(function () {sourceDoc.close(SaveOptions.SAVECHANGES)}, 1000);
    Unfortunately I did not save the working (almost working ) first test code.
    No idea what to do next. The code works if I delete this line: sourceDoc.close(SaveOptions.SAVECHANGES);
    Here is the complete script:
    var destFolder, sourceFolder, files, fileType, sourceDoc, layers, writeText, finLabel;
    // Select the source folder.
    sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator files you want to convert to PNG', '~' );
    // If a valid folder is selected
    if ( sourceFolder != null )
    files = new Array();
    fileType = prompt( 'Select type of Illustrator files to you want to process. Eg: *.ai', '*.pdf' );
    // Get all files matching the pattern
    files = sourceFolder.getFiles( fileType );
    if ( files.length > 0 )
    for ( i = 0; i < files.length; i++ )
        sourceDoc = app.open(files[i]); // returns the document object
        layers = unlock();
        writeText = getFilename();
        finLabel = remText();
        sourceDoc.close(SaveOptions.SAVECHANGES);   //if save command line is deleted the code works   WTF???
        $.setTimeout(function () {sourceDoc.close(SaveOptions.SAVECHANGES)}, 1000); // still crashes using delay ...
    //alert( 'Files are saved as PNG in ' + destFolder );
    else
    alert( 'No matching files found' );
    function unlock()
       //get the total number of layers in the active document
    doc = app.activeDocument;
    var totalLayers = doc.layers.length;
    //looping on layers to create one artboard per layer
    for ( var i = 0 ; i < totalLayers ; i++){
        var currentLayer = doc.layers[i];
        //We don't want to deal with hidden layers
        if(currentLayer.visible == false) continue;
        //Unlock the layer if needed
        currentLayer.locked = false;
    function getFilename()
    // Write text
    var pointTextRef = app.activeDocument.textFrames.add();
    pointTextRef.contents = app.activeDocument.name + "\n" + "YBS";
    pointTextRef.top = 0;
    pointTextRef.left = 0;
    app.activeDocument.textFrames[0].textRange.characterAttributes.textFont=app.textFonts[31];
    function remText()
    // This works for search and replace :))))))
        var active_doc = app.activeDocument; 
        var search_string = /_Template.pdf/gi; // g for global search, remove i to make a case sensitive search 
        var replace_string = ''; 
        var text_frames = active_doc.textFrames; 
        if (text_frames.length > 0) 
            for (var i = 0 ; i < text_frames.length; i++) 
                  var this_text_frame = text_frames[i]; 
                   var new_string = this_text_frame.contents.replace(search_string, replace_string); 
                   if (new_string != this_text_frame.contents) 
                            this_text_frame.contents = new_string; 
    Any ideas about what makes Illustrator crash?
    Note: The application crashes after opening the first file.
    Thanks for helping out!

    Thanks a lot Carlos!
    After deleting line 23: 
    $.setTimeout(function () {sourceDoc.close(SaveOptions.SAVECHANGES)}, 1000);
    the code worked on 499 files in one batch
    Also Turns out Illustrator kept crashing because of a corrupted pdf file.

  • Issue with Adobe Bridge batch rename crashing

    Hi, I have been trying to rename photo files in Adobe Bridge CC using the batch rename tool. I have just started using CC apps. All the updates are done. It crashes after doing just a few files. Started with 40 files at a time, crashed. Empty folder cache. Tried with 20 files, worked for a few times then crashed again. Tried 10 files and it crashed immediately. I found directions online (unfortunately it was for CS5, but I assume it's similar to CC). Any ideas on what to do differently? I really need to get these photos renamed and to a client tomorrow. Thanks in advance for any help.
    Cheryl

    Video card is updated, though I've been getting an error message on it.
    I'm not sure what this should have to do with your batch rename problem. Your specs seem more then sufficient and batch renaming does only save the files you already have cached.
    First check if you have enough free space left on your disk (at least 10 - 15 % free space is needed for good operation of your system and apps) and also try to reset preferences for Bridge by holding down contrl key while restarting Bridge. Check reset preferences from the pop up window and try again.

  • CS5 Crash when trying batch or creating droplet

    I am on a MacBook Pro 3.06 Ghz intel core 2 duo with 4gb ram.
    Each time I try to do a batch process photoshop crashes.
    This is the error. Any help would be greatly appreciated.
    Process:         Adobe Photoshop CS5 [342]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.2 (12.0.2x20101122.r.1204) (12.0.2)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [251]
    Date/Time:       2010-12-22 11:49:13.668 -0800
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Interval Since Last Report:          208173 sec
    Crashes Since Last Report:           56
    Per-App Interval Since Last Report:  5429 sec
    Per-App Crashes Since Last Report:   23
    Anonymous UUID:                      53F7582F-987B-4376-A561-29C189D6ADB9
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread:  19
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x00007fff8376a2da mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8376a94d mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff86979932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff86978dbf CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox           0x00007fff8006891a RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox           0x00007fff8006871f ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox           0x00007fff800685d8 BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit              0x00007fff82757e64 _DPSNextEvent + 718
    8   com.apple.AppKit              0x00007fff827577a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.AppKit              0x00007fff82992c47 -[NSApplication _realDoModalLoop:peek:] + 442
    10  com.apple.AppKit              0x00007fff829907d5 -[NSApplication runModalForWindow:] + 129
    11  com.apple.AppKit              0x00007fff82bf4682 -[NSSavePanel runModal] + 318
    12  com.adobe.Photoshop           0x00000001012f0b18 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16857400
    13  com.adobe.Photoshop           0x0000000100428944 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1357668
    14  com.adobe.Photoshop           0x00000001002e5d9f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 35775
    15  com.adobe.Photoshop           0x00000001002ec9ba AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 63450
    16  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    17  com.adobe.Photoshop           0x000000010007b852 0x100000000 + 505938
    18  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    19  com.adobe.Photoshop           0x000000010007b852 0x100000000 + 505938
    20  com.adobe.Photoshop           0x00000001000723ef 0x100000000 + 467951
    21  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    22  com.adobe.Photoshop           0x000000010007b852 0x100000000 + 505938
    23  com.adobe.Photoshop           0x00000001000723ef 0x100000000 + 467951
    24  com.adobe.Photoshop           0x00000001012c90f0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16695056
    25  com.adobe.Photoshop           0x000000010078e726 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4920646
    26  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    27  com.adobe.Photoshop           0x000000010007b852 0x100000000 + 505938
    28  com.adobe.Photoshop           0x00000001000723ef 0x100000000 + 467951
    29  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    30  com.adobe.Photoshop           0x000000010007b852 0x100000000 + 505938
    31  com.adobe.Photoshop           0x00000001000723ef 0x100000000 + 467951
    32  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    33  com.adobe.Photoshop           0x000000010007b852 0x100000000 + 505938
    34  com.adobe.Photoshop           0x00000001000723ef 0x100000000 + 467951
    35  com.adobe.Photoshop           0x00000001012c6248 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16683112
    36  com.adobe.Photoshop           0x000000010007b93a 0x100000000 + 506170
    37  com.adobe.Photoshop           0x00000001012df67b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16786587
    38  com.apple.AppKit              0x00007fff828ace9a -[NSApplication sendAction:to:from:] + 95
    39  com.adobe.Photoshop           0x00000001012e0174 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16789396
    40  com.apple.AppKit              0x00007fff828acdf9 -[NSControl sendAction:to:] + 94
    41  com.apple.AppKit              0x00007fff8293876b -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1715
    42  com.apple.AppKit              0x00007fff829692aa -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 555
    43  com.apple.AppKit              0x00007fff82937215 -[NSControl mouseDown:] + 624
    44  com.apple.AppKit              0x00007fff8285134f -[NSWindow sendEvent:] + 5409
    45  com.adobe.Photoshop           0x00000001012d5b40 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16746848
    46  com.apple.AppKit              0x00007fff82786a86 -[NSApplication sendEvent:] + 4719
    47  com.adobe.Photoshop           0x00000001012e251e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16798526
    48  com.adobe.Photoshop           0x00000001012e2267 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16797831
    49  com.adobe.Photoshop           0x00000001000791f0 0x100000000 + 496112
    50  com.adobe.Photoshop           0x00000001000670bf 0x100000000 + 422079
    51  com.adobe.Photoshop           0x0000000100067182 0x100000000 + 422274
    52  com.adobe.Photoshop           0x0000000100075174 0x100000000 + 479604
    53  com.adobe.Photoshop           0x0000000100790023 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4927043
    54  com.adobe.Photoshop           0x000000010079165c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4932732
    55  com.adobe.Photoshop           0x0000000100791d5f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4934527
    56  com.adobe.Photoshop           0x00000001002f241c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 86588
    57  com.adobe.Photoshop           0x0000000100071ca6 0x100000000 + 466086
    58  com.adobe.Photoshop           0x00000001000670bf 0x100000000 + 422079
    59  com.adobe.Photoshop           0x0000000100067182 0x100000000 + 422274
    60  com.adobe.Photoshop           0x000000010024f957 0x100000000 + 2423127
    61  com.adobe.Photoshop           0x0000000100278f47 0x100000000 + 2592583
    62  com.adobe.PSAutomate          0x000000011e740427 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    63  com.adobe.Photoshop           0x000000010024ae93 0x100000000 + 2403987
    64  com.adobe.Photoshop           0x0000000100071ca6 0x100000000 + 466086
    65  com.adobe.Photoshop           0x00000001000670bf 0x100000000 + 422079
    66  com.adobe.Photoshop           0x0000000100067182 0x100000000 + 422274
    67  com.adobe.Photoshop           0x00000001012e0673 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16790675
    68  com.apple.Foundation          0x00007fff818de8f5 __NSFireTimer + 114
    69  com.apple.CoreFoundation      0x00007fff8697abe8 __CFRunLoopRun + 6488
    70  com.apple.CoreFoundation      0x00007fff86978dbf CFRunLoopRunSpecific + 575
    71  com.apple.HIToolbox           0x00007fff8006891a RunCurrentEventLoopInMode + 333
    72  com.apple.HIToolbox           0x00007fff8006871f ReceiveNextEventCommon + 310
    73  com.apple.HIToolbox           0x00007fff800685d8 BlockUntilNextEventMatchingListInMode + 59
    74  com.apple.AppKit              0x00007fff82757e64 _DPSNextEvent + 718
    75  com.apple.AppKit              0x00007fff827577a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    76  com.apple.AppKit              0x00007fff8271d48b -[NSApplication run] + 395
    77  com.adobe.Photoshop           0x00000001012e0594 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16790452
    78  com.adobe.Photoshop           0x00000001012e0ff1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793105
    79  com.adobe.Photoshop           0x0000000100068dd2 0x100000000 + 429522
    80  com.adobe.Photoshop           0x0000000100238151 0x100000000 + 2326865
    81  com.adobe.Photoshop           0x00000001002381e1 0x100000000 + 2327009
    82  com.adobe.Photoshop           0x0000000100002df4 0x100000000 + 11764
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff8378316a kevent + 10
    1   libSystem.B.dylib             0x00007fff8378503d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff83784d14 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff8378483e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff83784168 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff83784005 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff83783f8a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8378439c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff83784005 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff837a4fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff837a8de1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services        0x0000000108263c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services        0x000000010825ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services        0x0000000108263cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00007fff8376a32e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore 0x00007fff803d51f2 MPWaitOnSemaphore + 96
    2   MultiProcessor Support        0x000000011ba59b9b ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore 0x00007fff80340411 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    5   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00007fff837a4fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff837a8de1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00007fff803fee27 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x00007fff8036e310 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00007fff8036821b MPWaitOnQueue + 215
    5   AdobeACE                      0x000000010597718d 0x10593d000 + 237965
    6   AdobeACE                      0x0000000105976b3a 0x10593d000 + 236346
    7   ...ple.CoreServices.CarbonCore 0x00007fff80340411 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    9   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00007fff837a4fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff837a4e59 nanosleep + 148
    2   com.adobe.PSAutomate          0x000000011e8be09b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate          0x000000011e89ffd3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate          0x000000011e8be196 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00007fff837a4fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff837a8de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000011f88789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x000000011f6405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x000000011f8879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x000000011f887d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x000000011f887e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00007fff837a4fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff837a8de1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl           0x000000011f88789d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl           0x000000011f6405e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl           0x000000011f8879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x000000011f887d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x000000011f887e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff8376a2da mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8376a94d mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff86979932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff86978dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices 0x00007fff80bc361b MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices 0x00007fff80bc51e6 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    7   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff8376a33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff837a8cd2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl           0x000000011f887869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x000000011f8a40ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl           0x000000011f8879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x000000011f887d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x000000011f887e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff8376a33a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff837a8cd2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl           0x000000011f887869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl           0x000000011fa21e6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl           0x000000011f8879b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl           0x000000011f887d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl           0x000000011f887e49 APXGetHostAPI + 2467257
    7   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff83783f8a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8378439c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff83784005 start_wqthread + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff837a4fca __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff837a4e59 nanosleep + 148
    2   libSystem.B.dylib             0x00007fff837a4dc3 usleep + 57
    3   com.apple.AppKit              0x00007fff828a3361 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation          0x00007fff818890a5 __NSThread__main__ + 1429
    5   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib             0x00007fff83783f8a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8378439c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff83784005 start_wqthread + 13
    Thread 15:
    0   libSystem.B.dylib             0x00007fff8376a2da mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff8376a94d mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff86979932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff86978dbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation      0x00007fff86978b46 CFRunLoopRun + 70
    5   com.apple.DesktopServices     0x00007fff8750c646 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6   ...ple.CoreServices.CarbonCore 0x00007fff80340411 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib             0x00007fff83783f8a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8378439c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff83784005 start_wqthread + 13
    Thread 17:
    0   libSystem.B.dylib             0x00007fff83783f8a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8378439c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff83784005 start_wqthread + 13
    Thread 18:  com.apple.CFSocket.private
    0   libSystem.B.dylib             0x00007fff837ade92 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x00007fff8699b498 __CFSocketManager + 824
    2   libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    3   libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 19 Crashed:
    0   com.apple.CoreGraphics        0x00007fff8440a741 add_triangle + 24
    1   com.apple.CoreGraphics        0x00007fff8440aa54 CGTriangleMeshAddTriangle + 61
    2   com.apple.CoreGraphics        0x00007fff843ce6c7 type4_read_triangle + 246
    3   com.apple.CoreGraphics        0x00007fff843ce8f2 cg_shading_type4_draw + 397
    4   com.apple.CoreGraphics        0x00007fff84408429 CGShadingDelegateDrawShading + 298
    5   libRIP.A.dylib                0x00007fff852092b3 ripc_DrawShading + 7747
    6   com.apple.CoreGraphics        0x00007fff842424c9 CGContextDrawShading + 84
    7   com.apple.CoreGraphics        0x00007fff843da94e CGPatternDelegateDrawPattern + 160
    8   libRIP.A.dylib                0x00007fff8520638e ripc_TilePattern + 5213
    9   libRIP.A.dylib                0x00007fff851ec4a0 ripc_GetColor + 3141
    10  libRIP.A.dylib                0x00007fff851eace1 ripc_Render + 210
    11  libRIP.A.dylib                0x00007fff85206e46 ripc_DrawPath + 678
    12  com.apple.CoreGraphics        0x00007fff8426d6ff CGContextDrawPath + 160
    13  com.apple.CoreGraphics        0x00007fff84288bbb CGPDFDrawingContextDrawPath + 162
    14  com.apple.CoreGraphics        0x00007fff84288566 pdf_scanner_handle_xname + 105
    15  com.apple.CoreGraphics        0x00007fff84287927 CGPDFScannerScan + 472
    16  com.apple.CoreGraphics        0x00007fff843c0b72 CGPDFDrawingContextDraw + 85
    17  com.apple.CoreGraphics        0x00007fff843c0f82 CGPDFDrawingContextDrawStream + 83
    18  com.apple.CoreGraphics        0x00007fff843c5ed3 CGPDFDrawingContextDrawForm + 316
    19  com.apple.CoreGraphics        0x00007fff843c1b26 op_Do + 122
    20  com.apple.CoreGraphics        0x00007fff84288566 pdf_scanner_handle_xname + 105
    21  com.apple.CoreGraphics        0x00007fff84287927 CGPDFScannerScan + 472
    22  com.apple.CoreGraphics        0x00007fff842859dc CGPDFDrawingContextDrawPage + 787
    23  com.apple.CoreGraphics        0x00007fff8428567a CGContextDrawPDFPageWithProgressCallback + 100
    24  com.apple.ImageIO.framework   0x00007fff889111cb getBandProcPDF + 2275
    25  com.apple.ImageIO.framework   0x00007fff888cde46 glueCopyImageBlockSet + 2292
    26  com.apple.ImageIO.framework   0x00007fff888bab58 ImageProviderCopyImageBlockSetCallback + 189
    27  com.apple.CoreGraphics        0x00007fff8425f2b2 img_blocks_create + 356
    28  com.apple.CoreGraphics        0x00007fff8422867c img_data_lock + 2726
    29  com.apple.CoreGraphics        0x00007fff84226edf CGSImageDataLock + 212
    30  libRIP.A.dylib                0x00007fff851f3227 ripc_AcquireImage + 2431
    31  libRIP.A.dylib                0x00007fff851f1aa9 ripc_DrawImage + 1208
    32  com.apple.CoreGraphics        0x00007fff84241d0a CGContextDrawImage + 446
    33  com.apple.ImageIO.framework   0x00007fff88914627 CGImageCreateCopyWithParametersNew + 1757
    34  com.apple.ImageIO.framework   0x00007fff889133ac CGImageSourceCreateThumbnailAtIndex + 3236
    35  com.apple.AppKit              0x00007fff82b741a8 -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 865
    36  com.apple.AppKit              0x00007fff82b7e731 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 380
    37  com.apple.Foundation          0x00007fff818890a5 __NSThread__main__ + 1429
    38  libSystem.B.dylib             0x00007fff837a3536 _pthread_start + 331
    39  libSystem.B.dylib             0x00007fff837a33e9 thread_start + 13
    Thread 19 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x3ff0000000000000  rcx: 0x000000012387c180  rdx: 0x000000012387c1d0
      rdi: 0x3ff0000000000000  rsi: 0x000000012387c350  rbp: 0x000000012387c120  rsp: 0x000000012387c110
       r8: 0x0000000000000001   r9: 0x000000012387c380  r10: 0x00000000000000ff  r11: 0x0000000000000008
      r12: 0x000000012387c180  r13: 0x3ff0000000000000  r14: 0x0000000122be0bf8  r15: 0x000000012387c180
      rip: 0x00007fff8440a741  rfl: 0x0000000000010206  cr2: 0x0000000123872cb4
    Binary Images:
           0x100000000 -        0x1026ebfff +com.adobe.Photoshop 12.0.2 (12.0.2x20101122.r.1204) (12.0.2) <A7C6FF45-FF8B-5ECA-247C-D09BA0BBF589> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x1032e0000 -        0x103358fef +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
           0x10336e000 -        0x103375fff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x10337d000 -        0x10338dff8 +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
           0x103398000 -        0x10339eff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1033a5000 -        0x1035abfef +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
           0x10363e000 -        0x1037ecfef +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
           0x10388e000 -        0x103cbefef +AdobeMPS ??? (???) <0F44873E-F5B1-D538-0BEB-8FDFD09102D6> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103e18000 -        0x104143ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104210000 -        0x104538fe7 +AdobeCoolType ??? (???) <9979447D-9477-BC48-A84E-8A6A6AF380B5> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1045d0000 -        0x1045f1ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045fe000 -        0x104629ff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x10463b000 -        0x10477ffef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1047c6000 -        0x10482bfff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104847000 -        0x10485dfff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104875000 -        0x10490bfff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104982000 -        0x1049a0fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x1049bd000 -        0x104becfff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104ccb000 -        0x104d5efff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d7e000 -        0x1050c7fef +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
           0x105257000 -        0x1053d9fe7 +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
           0x10547b000 -        0x1057f3fff +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
           0x10593d000 -        0x105a52fff +AdobeACE ??? (???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a77000 -        0x105a93fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a9d000 -        0x105b07ff7 +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
           0x105b3a000 -        0x105c0dffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105c2d000 -        0x105c31ff8 +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
           0x105c35000 -        0x105cacfff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105ccd000 -        0x105d2bffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105d39000 -        0x1061d4fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10675a000 -        0x1067b0feb +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
           0x1067f5000 -        0x10681affe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106854000 -        0x106859ffd +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
           0x10685e000 -        0x1069fafff +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
           0x106aa2000 -        0x106abbfeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106acc000 -        0x106ad2feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106ad9000 -        0x106ad9ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106adc000 -        0x106ae4ff3 +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
           0x106aeb000 -        0x106bd1fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x106ced000 -        0x106ceffef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108240000 -        0x1082b0ff6 +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
           0x1082f6000 -        0x1082f7fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <0739FD38-CF46-0ECC-517C-E187C5A3B8D6> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x119950000 -        0x119967fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <5C25B45F-7A9E-3259-0532-E13B34B5398A> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11996b000 -        0x11998cfef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <1CC25A05-9E4C-ACBE-546E-34063A4CEB09> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x119990000 -        0x11999ffe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <50541300-118F-BE28-86DB-0F42738A9338> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1199a3000 -        0x1199b5fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <CC30A563-5E4C-7ACE-3B73-90E8F582171A> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1199b9000 -        0x1199c1fff +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
           0x11b25b000 -        0x11b262fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11b26b000 -        0x11b274fff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11b281000 -        0x11b2e4ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11ba24000 -        0x11ba8fff0 +MultiProcessor Support ??? (???) <9C6E0C9E-50AC-B0CD-D705-C9760289C298> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11e700000 -        0x11e71cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x11e73c000 -        0x11e998fef +com.adobe.PSAutomate 12.0.2 (12.0.2) <3A8E6CC2-B410-EBEE-32FD-509FC674AE28> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11ebae000 -        0x11ec52ffb +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
           0x11ecb4000 -        0x11ed54fef +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
           0x11ef00000 -        0x11ef20ffb +com.adobe.ape adbeapecore version 3.1.70.10055 (3.1.70.10055) <66373ADB-0865-ECDB-D3D0-B3373FC43919> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x11ef4d000 -        0x11ef51fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F99C2FBC-103D-DB2D-8D53-CFB8CEFA90F8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11ef56000 -        0x11ef5cfff  com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <933CA4C6-F428-0E2E-DCBE-FA0284914092> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11f089000 -        0x11f0c7ff7  com.apple.DP.ScreenInputDevice 13.0 (13.0) <22174597-D163-7A20-C82A-C00C2CA19640> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x11f600000 -        0x120468ff3 +com.adobe.adobeswfl ??? (2.0.0.10053) <ADE7E8AA-80B6-7BAC-8205-13D7A0E89DF8> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x121966000 -        0x121990ff7  com.apple.mio.DAL.VDC_4 133.0 (1158) <75A32DC1-B6D9-A21B-7CDF-110B6C6ABDC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x122d83000 -        0x122d86fef  libLatinSuppConverter.dylib 49.0.0 (compatibility 1.0.0) <227677D0-9CF3-E007-E4C0-8DCECDA1AE9B> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
           0x124130000 -        0x1242e5fff  libCMaps.A.dylib 545.0.0 (compatibility 64.0.0) <9E274213-9420-2FC0-F3C8-1CA3AB9FA5A1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCMaps.A.dylib
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80007ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80008000 -     0x7fff80038fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff80039000 -     0x7fff80039ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8003a000 -     0x7fff80338fe7  com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff80339000 -     0x7fff8066dfff  com.apple.CoreServices.CarbonCore 861.23 (861.23) <08F360FA-1771-4F0B-F356-BEF68BB9D421> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff80689000 -     0x7fff8069afff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
        0x7fff806dd000 -     0x7fff806faff7  libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff806fb000 -     0x7fff80742ff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff80768000 -     0x7fff807b9fef  com.apple.HIServices 1.8.1 (???) <BE479ABF-3D27-A5C7-800E-3FFC1731767A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff807ba000 -     0x7fff807d3fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff807d4000 -     0x7fff807d5fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff80ad8000 -     0x7fff80b72fff  com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff80b73000 -     0x7fff80bb4fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff80bb5000 -     0x7fff80bfafff  com.apple.CoreMediaIOServices 133.0 (1158) <53F7A2A6-78CA-6C34-0BB6-471388019799> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff80c17000 -     0x7fff80d55fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff80d56000 -     0x7fff8125afe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8125b000 -     0x7fff8129ffe7  com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff812a0000 -     0x7fff812a3fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff812b2000 -     0x7fff8137dfe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <3C223A94-EF14-28C5-844B-C25DFC87FB42> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8137e000 -     0x7fff8138bfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff813c9000 -     0x7fff813cefff  libGFXShared.dylib ??? (???) <A94DE483-A586-A172-104F-1CFC5F0BFD57> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff813cf000 -     0x7fff8141efef  libTIFF.dylib ??? (???) <AE9DC484-1382-F7AD-FE25-C28082FCB5D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff814f8000 -     0x7fff815b5ff7  com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff815b6000 -     0x7fff815c1ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff815c2000 -     0x7fff816e3fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff816e4000 -     0x7fff8174cfff  com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
        0x7fff8174d000 -     0x7fff81763fff  com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff81764000 -     0x7fff817a7fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff817f5000 -     0x7fff81877fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff81878000 -     0x7fff81afbff7  com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff81bc8000 -     0x7fff81cf0ff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff81cf1000 -     0x7fff81d17fe7  libJPEG.dylib ??? (???) <6690F15D-E970-2678-430E-590A94F5C8E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff81d18000 -     0x7fff81d27fff  com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81d28000 -     0x7fff81d48ff7  com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff81d4b000 -     0x7fff81d93ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff81d94000 -     0x7fff82131fe7  com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff82132000 -     0x7fff82315fff  libType1Scaler.dylib ??? (???) <3A1AFBA4-958E-DD07-297E-DF1FB2C96D7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
        0x7fff8231e000 -     0x7fff8248dfe7  com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8248e000 -     0x7fff824cfff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff824d0000 -     0x7fff82517fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff82682000 -     0x7fff82711fff  com.apple.iLifeMediaBrowser 2.5.3 (468.0.1) <42D50AE0-2A1E-E22B-2E5C-5EF265885075> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowse r
        0x7fff82712000 -     0x7fff82713ff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff82714000 -     0x7fff8310afff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff83156000 -     0x7fff83159ff7  com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff8315a000 -     0x7fff83195fff  com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff83196000 -     0x7fff8319bff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff831cc000 -     0x7fff83258fef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff8349c000 -     0x7fff834b2fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff834b3000 -     0x7fff83569fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
        0x7fff83769000 -     0x7fff8392afff  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
        0x7fff8392b000 -     0x7fff83ae9fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
        0x7fff83b0b000 -     0x7fff83d46fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff83d47000 -     0x7fff83e21ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff83e22000 -     0x7fff83e5bff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff83e5c000 -     0x7fff83f66ff7  com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
        0x7fff83fa7000 -     0x7fff840cdfff  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff840ce000 -     0x7fff840cfff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff840d0000 -     0x7fff840dbff7  com.apple.HelpData 2.0.4 (34) <B44D2E2A-BC1E-CD63-F8A1-C9465491693A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff840dc000 -     0x7fff841d4ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
        0x7fff841e7000 -     0x7fff848e406f  com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff84923000 -     0x7fff84a3cfef  libGLProgrammability.dylib ??? (???) <13E8114C-6E07-A66E-35E6-C185E54840AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff84a3d000 -     0x7fff84a3efff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff84a3f000 -     0x7fff84ac4ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff84ac5000 -     0x7fff84ac5ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84ad2000 -     0x7fff84b93fe7  libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff84b94000 -     0x7fff84c66fe7  com.apple.CFNetwork 454.11.5 (454.11.5) <B3E2BE12-D7AA-5940-632A-1E5E7BF8E6E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff84d01000 -     0x7fff85144fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff85180000 -     0x7fff851c1fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff851c2000 -     0x7fff851ddff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff851de000 -     0x7fff851e5fff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff851e6000 -     0x7fff85229ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framewo

    The crash is deep in MacOS code as it tries to create thumbnail for a PDF file.
    We've seen several similar crashes in the ImageIO and PDF rendering code.
    And we still can't get Apple to tell us why their code is running in our process (and causing US to crash).
    We have forwarded the reports to Apple, but have not heard anything back yet about a fix.

  • Photoshop crashes when selecting File / Automate / Batch

    Photoshop users still need a fix for Photoshop crashing whenever they select Batch.
    I understand that Adobe staff has chosen to blame scanner drivers for the problem. And, I've read the discussions thru last year (very long and boring when all you want is a fix). But, I'm not settled on several things which do not add-up.
    First, I'll review the symptoms for the sake of all interested readers. Photoshop users have reported Photoshop crashing whenever they select File / Automate / Batch from the menu for years. This problem got much worse (widespread) since the release of version 12.0.4. The problem apparently affects only those with Train compatible scanners and who installed Adobe's optional Twain plugin. I never read how anyone came to this conclusion, but scanner drivers are being blamed. The accepted work-around is to disable or remove Adobe's Twain plugin.
    Second, I want to point out that Photoshop works normally when using the Twain plugin. I can scan images and they are imported directly into Photoshop without any problems. This was the case before the 12.0.4 update and is still the case now.
    Third, I want to pose my most pressing question. What does selecting "Batch..." have to do with scanner drivers? In other words, what possibly could Photoshop be doing with scanner drivers when selecting "Batch..." that it does not do when actually does use the drivers?
    Lastly, I'll point out that I am a software developer of over 30 years. So, I understand how it might somehow work out in the details that the source of the problem really is buggy scanner drivers. However, as a programmer with a lot of experience dealing with problems common in device driver API's, I know that good practice is to expect anything. If Photoshop begins a process that calls out to someone else's software API, it should cushion that call with proper exception error handling. All processes should execute with an "if all else fails" contention.

    >> What does selecting "Batch..." have to do with scanner drivers?
    When running the actions for the Batch command, Photoshop updates it's menu/command state to check which commands are enabled or disabled based on the document state being changed by the actions.  Part of that update is calling the scanner interface to see what is available or not, and at that point some drivers crash.  Since the crash occurs in third party code executed within Photoshop's context - there was not much Photoshop could do to recover (there was exception handling, but it couldn't work across OS and DLL boundaries).
    In Photoshop CS6, we spent quite a bit of time figuring out why they were crashing (apparently there was some assumption about the application GUI state), and how we could avoid them crashing in those circumstances - and now CS6 avoids the crashes in the Batch command even with the TWAIN plugin and drivers are loaded.

  • Encoder keeps crashing with camera MTS files during batch operation

    I am trying to convert MTS files to WMV and I am constantly getting crashes.
    "Microsoft WIndows: Close programs to prevent information loss... Your computer is low on memory...Adobe Media Encoder.exe"
    and
    "Adobe Media Encoder Debug Event: Adobe Media Encoder has encountered an error. [..\..\Src\Win\WinFile.cpp-785]"
    I do have 8gb of memory with no other programs running and this is 1080/60 converted to 720/30 video and TaskManager shows I have memory to spare.
    I have a lot of these and it's neccessary that I do a batch encode. The thing is that I can usualy encode the first item in the list but as the second one begins it crashes.
    So it is possible for these files to be encoded successfully (the file plays fine) but the batch process is failing. It is not dependant on the specific file but just any file that isn't the first one in the list it seems.

    Physical Memory (MB)
    Total: 8173
    Cached: 3601
    Available: 3693
    Free: 1708
    Kernel Memory: 297 paged 84 nonpaged
    Commit (MB) 6865/9195
    (these values fluctuate as i was recording them so they are off a little bit in relation to each other)
    I have also set my page file to go from 256mb MIN to 1024mb MAX because I have a SSD for Windows and i wanted to save space. I heard it was not neccessary if you have a lot of ram... I will have 16gb of ram again soon (as i just sent the other 8gb in for replacement). So maybe this could be an issue..?

  • Acrobat 9.4.4 crashes when running batch process to remove metadata

    I am attempting to run a batch process to remove metadata from all documents within a folder. Only one or two documents will process before Acrobat crashes. Any suggestions?
    Thank you.

    There may be a corrupted video or image file on your iPad.
    Try to download from the iPad using Image Capture instead and save the photos to a folder. If that succeeds, you can check the files for corruption before importing them to iPhoto.

  • Photoshop crashes whenever I try to batch edit.

    Photoshop crashes whenever I try to batch edit.  It's getting old to keep losing all my work... does anyone know how to resolve or avoid this?  Thank you!

    Which version of photoshop and operating system are you using?

  • Photoshop CS5 crashes during batch process

    Hi,
    I got about 100 pictures. Trying to: resize+save for web...
    Photoshop converts few files and...crashes.
    I presume that's a configuration problem - neither scratch disk nor memory should not be the cause although here are some parameters:
    My mac:
    Mac OS X (10.6.4)
    2.53 GHz Intel Core 2 Duo
    4GB 1067 MHz DDR3
    HDD 320 GB (289 free space)
    Pictures res: 5616x3744px
    Picture format: .jpg
    Has anyone solved problem like this (or similar)?

    I have the same problem, cs5 crashes when I start batching files (raw to jpg save in my case). Sometimes after 10 sometime after 200... it's really weird. And yes it does close the files with the action I use... The crashes are really bad as it does something like a shut down which closes all programms, this also prevents crash report to open! It crashes also when I do a batching on opened files. I installed all updates and everthing, even reinstalled the programm, still the same problem :(. I still have cs4 on my mac and there batching works perfectly fine without any problems! Also for anything else cs5 works perfectly well, only batching causes me headaches.

  • Batch process crashes

    Batch process crashes in 32 bit CS5 but works fine in 64 bit.
    Deleted preferences file, ran SFC and CHKDSK.  Performed all computer maintenance.
    Widows 7 64 bit Quad core Q9300 processor 6 gigs of ram.  Ran MEMTest and reinstalled Photoshop over top of old installation.
    Really don't want to start from scratch.
    Please help.
    Rich

    Tried setting everything the same.  I put RAM usage at 70% for both versions
    but of course the actual amount is different for 32 and 64 bit versions.  No
    luck.
    This started at about the same time as the 12.0.4 update.  Read some people
    had other types of problems with this update.  I would just use the 64 bit
    version but some of my plugins only work with 32 bit version.
    Thanks

Maybe you are looking for

  • Can't change filetype association back to CS5

    [FYI - similar post in the Acrobat and InDesign forums.] We  installed the CS5.5 upgrade  today, and for the time being I would  prefer to open my existing Illustrator docs with CS5.0, using 5.1 only when  we receive v5.1 files. I  highlight an AI fi

  • Installing from an external usb cdrom drive

    I am able to boot an external usb cdrom drive but I cannot figure out how to mount that usb cdrom drive to complete the install. My boot command is: arch-scsi NEEDUSB=auto I cannot run loaddisk, as it does not find the usb cdrom, so I cannot load the

  • What's the difference between boxing and unboxing?

    What's the difference between boxing and unboxing, I'm a bit confused? Is autoboxing the same as boxing? This is what I know so far: -This is boxing, i think: int  []arrayset = {1,2,3};but I don't understand what unboxing is, can someone explain it t

  • How to edit & organize pdf's in iBooks?

    How does one edit title and authors in list view of pdf's in iBooks, and then organize them into catagories, and name catagories?

  • Identifying business content based on requirements from Functional Doc

    Hi everyone, I have a requirement to create technical documents from functional documents that I have received. The funct. docs describe the report to be created however, the fields that the user is looking for are basically in plain English (or atle