Check for null or empty in the functoid

I want to check for null and empty values on input source node. If there exists a null or empty in the input source node, I should not pass that to output destination node. Does the
following attachment work? I want to check for null or empty in the date and time and then concatenate them to send to output. If any of them is null or empty, the other should not fail. In the Not Equal Functoid I am checking for blank, but how to check for
null?

A null check might not be you best option.  If your requirement is you must have both the date and time component supplied in order to populate EventDate, then I would use a Script Functoid that takes data and time as parameters.
In the C# method, first check if either is an empty string, if so return an empty string.
If not, TryParse the data, if successful, return a valid data string for EventDate.  If not, error or return empty string, whichever satsifies the requirement.

Similar Messages

  • Check for null and empty - Arraylist

    Hello all,
    Can anyone tell me the best procedure to check for null and empty for an arraylist in a jsp using JSTL. I'm trying something like this;
    <c:if test="${!empty sampleList}">
    </c:if>
    Help is greatly appreciated.
    Thanks,
    Greeshma...

    A null check might not be you best option.  If your requirement is you must have both the date and time component supplied in order to populate EventDate, then I would use a Script Functoid that takes data and time as parameters.
    In the C# method, first check if either is an empty string, if so return an empty string.
    If not, TryParse the data, if successful, return a valid data string for EventDate.  If not, error or return empty string, whichever satsifies the requirement.

  • Checking for nulls

    I have a string variable and I need to check for null.
    What is the best way to do this?
    Thanks.

    You can also do it like this:
    } catch (NullPointerException e) {or like this:
    s==null ? <...> : <...>

  • How does APEX check for null values in Text Fields on the forms?

    Hello all,
    How does APEX check for null values in Text Fields on the forms? This might sound trivial but I have a problem with a PL/SQL Validation that I have written.
    I have one select list (P108_CLUSTER_ID) and one Text field (P108_PRIVATE_IP). I made P108_CLUSTER_ID to return null value when nothing is selected and assumed P108_PRIVATE_IP to return null value too when nothign is entered in the text field.
    All that I need is to validate if P108_PRIVATE_IP is entered when a P108_CLUSTER_ID is selected. i.e it is mandatory to enter Private IP when a cluster is seelcted and following is my Pl/SQL code
    Declare
    v_valid boolean;
    Begin
    IF :P108_CLUSTER_ID is NULL and :P108_PRIVATE_IP is NULL THEN
    v_valid := TRUE;
    ELSIF :P108_CLUSTER_ID is NOT NULL and :P108_PRIVATE_IP is NOT NULL THEN
    v_valid := TRUE;
    ELSIF :P108_CLUSTER_ID is NOT NULL and :P108_PRIVATE_IP is NULL THEN
    v_valid := FALSE;
    ELSIF :P108_CLUSTER_ID is NULL and :P108_PRIVATE_IP is NOT NULL THEN
    v_valid := FALSE;
    END IF;
    return v_valid;
    END;
    My problem is it is returning FALSE for all the cases.It works fine in SQL Command though..When I tried to Debug and use Firebug, I found that Text fields are not stored a null by default but as empty strings "" . Now I tried modifying my PL/SQL to check Private_IP against an empty string. But doesn't help. Can someone please tell me how I need to proceed.
    Thanks

    See SQL report for LIKE SEARCH I have just explained how Select list return value works..
    Cheers,
    Hari

  • Checking for null value in arraylist

    Hi
    i have an excel file which i i am reading into an arraylist row by row but not necesarrily that all columns in the row mite be filled. So how do i check for null values in the array list.
    try
                        int cellCount = 0;
                        int emptyRow = 0;
                        HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(file));
                        HSSFSheet sheet = workbook.getSheetAt(0);
                        Iterator rows = sheet.rowIterator(); 
                        myRow = new ArrayList();
                        int r = 1;
                             while (rows.hasNext())
                                  System.out.println("Row # " + r);
                                  HSSFRow row = (HSSFRow) rows.next();
                                  Iterator cells = row.cellIterator();          
                                  cellCount = 0;
                                  boolean isValid = false;
                                  while (cells.hasNext())
                                       HSSFCell cell = (HSSFCell) cells.next();
                                       switch (cell.getCellType())
                                            case HSSFCell.CELL_TYPE_NUMERIC:
                                                 double num = cell.getNumericCellValue();     
                                                 DecimalFormat pattern = new DecimalFormat("###,###,###,###");     
                                                 NumberFormat testNumberFormat = NumberFormat.getNumberInstance();
                                                 String mob = testNumberFormat.format(num);               
                                                 Number n = null;
                                                 try
                                                      n = pattern.parse(mob);
                                                 catch ( ParseException e )
                                                      e.printStackTrace();
                                                 System.out.println(n);
                                                 myRow.add(n);                                             
                                                 //myRow.add(String.valueOf(cell.getNumericCellValue()).trim());
                                                 //System.out.println("numeric: " +cell.getNumericCellValue());
                                                 break;
                                            case HSSFCell.CELL_TYPE_STRING:
                                                 myRow.add(cell.getStringCellValue().trim());
                                                 System.out.println("string: " + cell.getStringCellValue().trim());
                                                 break;
                                            case HSSFCell.CELL_TYPE_BLANK:
                                                 myRow.add(" ");
                                                 System.out.println("add empty:");
                                                 break;
                                       } // end switch
                                       cellCount++;
                                  } // end while                    
                                  r++;
                             }// end while
                   } myRow is the arrayList i am adding the cells of the excel file to. I have checked for blank spaces in my coding so please help with how to check for the black spaces that has been added to my arraylist.
    I have tried checking by looping through the ArrayList and then checking for null values like this
    if(myRow.get(i)!=null)
      // do something
    // i have tried this also
    if(myRow.get(i)!="")
    //do something
    }Edited by: nb123 on Feb 3, 2008 11:23 PM

    From your post I see you are using a 3rd party package to access the Excel SpreadSheets, you will have to look in your API for you 3rd party package and see if there is a method that will identify a blank row, if there is and it does not work, then you have to take that problem up with them. I know this is a pain, but it is the price we pay for 3rd party object use.
    In the mean time, you can make a workaround by checking every column in your row and seeing if it is null, or perhaps even better: check and see if the trimmed value of each cell has a lenth of 0.

  • Check for null in IF statement

    Hi,
    I have a variable of type char(8).
    I want to check if this field is empty. This is the logic I use right now:
    condense lv_date no-gaps.
    if lv_date eq ''.
    *then some default value
    endif.
    Is this the correct approach or there is a way to directly check for null values in a variable.
    Thanks,
    CD

    Hello,
    You have to check IS INITIAL.
    condense lv_date no-gaps.
    if lv_date IS INITIAL.
    *then some default value
    endif.
    BR,
    Suhas

  • Page Validation - Function Returning Boolean - Check for NULL

    I have 3 Page Validations which all fire on "When Button Pressed" = "Submit".
    <br><br>
    Number 1 is of type "Item specified is NOT NULL" for "P199_BUSINESS_UNIT1".
    <br>
    Number 2 is of type "Item specified is NOT NULL" for "P199_BUSINESS_UNIT2".
    <br>
    Number 3 is of type "Function Returning Boolean" and has the following code:
    <br><br>
    IF :P199_BUSINESS_UNIT1 IS NULL   AND
       :P199_BUSINESS_UNIT2 IS NULL  THEN
        RETURN FALSE ;
    ELSE
        RETURN TRUE  ;
    END IF ;<br>
    When P199_BUSINESS_UNIT1 is NULL and P199_BUSINESS_UNIT2 is NOT NULL, I get the Error from Validation 1. Perfect.
    <br>
    When P199_BUSINESS_UNIT1 is NOT NULL and P199_BUSINESS_UNIT2 is NULL, I get the Error from Validation 2. Perfect.
    <br>
    When P199_BUSINESS_UNIT1 is NOT NULL and P199_BUSINESS_UNIT2 is NOT NULL, I don't get an Error Message. Perfect.
    <br><br>
    When P199_BUSINESS_UNIT1 is NULL and P199_BUSINESS_UNIT2 is NULL, I get Error Message 1 & 2, <strong>but nothing from 3.</strong>
    <br><br>
    If I change the code to:
    <br><br>
    IF :P199_BUSINESS_UNIT1 = '01'   AND
       :P199_BUSINESS_UNIT2 = '01'  THEN
        RETURN FALSE ;
    ELSE
        RETURN TRUE  ;
    END IF ;<br>
    and change both values to '01', I get the appropriate Error Message.
    <br><br>
    What is going on? Is there some reason I can't check for NULL in a Function Returning Boolean?

    Scott,
    <br><br>
    Instead of adding the Validations, I changed my code from:
    <br><br>
    IF :P199_BUSINESS_UNIT1 IS NULL   AND
       :P199_BUSINESS_UNIT2 IS NULL  THEN
        RETURN FALSE ;
    ELSE
        RETURN TRUE  ;
    END IF ;
    <br>to the following and got the desired results:
    <br><br>
    IF  REPLACE(:P199_BUSINESS_UNIT1,<strong>'%null'</strong> || '%',NULL) IS NULL   AND
        REPLACE(:P199_BUSINESS_UNIT2,<strong>'%null'</strong> || '%',NULL) IS NULL  THEN
        RETURN FALSE ;
    ELSE
        RETURN TRUE  ;
    END IF ;<br>
    Note that I changed the word REPLACE to upper case and the second occurrence of the word NULL to upper case to accentuate the fact that the '%null' is case sensitive, using "%NULL' does not work, it has to be "%null' in lower case.
    <br><br>
    <strong>Thanks for your help.</strong>

  • How do I check for null date entires using custom JScript on a SharePoint NewForm.aspx?

    Hi,
    I have the below JScript:
    /*Function to convert the US Date format to UK date format */
    function parseDate(input) {
    var parts = input.split('/');
    // new Date(year, month [, date [, hours[, minutes[, seconds[, ms]]]]])
    return new Date(parts[2], parts[1]-1, parts[0]); // months are 0-based
    /*Function to check if end date is before the start date */
    function checkDates(){
    var sd = parseDate($("input[title='From']").val());
    var ed = parseDate($("input[title='Until']").val());
    if(sd > ed) {
    alert("Please check From and Until Date");
    $("input[value$='Save']").attr('disabled', true); //hide save button
    else
    $("input[value$='Save']").attr('disabled', false); //show save button
    The above works fine for checking sd > ed but I can't seem to check for null's, I have attempted the below which doesn't work:
    /*Function to convert the US Date format to UK date format */
    function parseDate(input) {
    var parts = input.split('/');
    // new Date(year, month [, date [, hours[, minutes[, seconds[, ms]]]]])
    return new Date(parts[2], parts[1]-1, parts[0]); // months are 0-based
    /*Function to check if end date is before the start date */
    function checkDates(){
    var sd = parseDate($("input[title='From']").val());
    var ed = parseDate($("input[title='Until']").val());
    if( (sd > ed) || (sd == null) || (ed == Null) ) {
    alert("Please check From and Until Date");
    $("input[value$='Save']").attr('disabled', true); //hide save button
    else
    $("input[value$='Save']").attr('disabled', false); //show save button
    Any help appreciated.

    Hi aspnet-scotland,
    Please post ASP.NET related questions in
    ASP.NET forums where you could receive better responses.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to check for null values in bpel?? Please Help! very urgent!!!

    Hello Guys,
    I have a problem. I have an external webservice to which I have to post my request. My task is to create an Webservice and Service Assembly to which others would post request and get response. I have to create SA to deploy onto the bus.
    The problem is that there are optional elements in the request and response xsd's. In the Response sometimes certain feilds may come or they may not. for Example:- my response could contain a tag like this <firstName></firstName>
    I have to copy these feilds in my bpel process from one variable to another.(like in the mapper).
    My Question is , Is there any way in BPEL process or BPEL mapper where I could Check for null values in the request or response???
    Your inputs would be very helpful.
    Thanks
    Rajesh

    Thanks for replying man :)
    Ok I will be more clear.
    Here is a snippet of one of the xsd's that I am using.
    <xs:element name="returnUrl" nillable="false" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation>Partner specifies the return URL to which responses need to be sent to, in case of
    Async message model.
    </xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                             <xs:restriction base="xs:anyURI">
                                  <xs:maxLength value="300"/>
                                  <xs:whiteSpace value="collapse"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:element>
    This means that the return URL field can be there or it may not be there. But if it is there it cant be null because nillable=false. But the whole <returnURL> </returnURL> can be there or it may not be there because minOccurs=0.
    My requirement is , if returnURL is there in the response with a value, then in my BPEL mapper I should map it else I should not map it.
    Thats the issue.
    and Yes kiran, the node be non-existant.
    So can you please help me with this.
    Thanks
    Rajesh

  • Choice format for null or empty string vs non-empty

    How can I provide a choice format string for null or empty substitution strings?
    I know one would not nomally do this, but the substitution strings are being passed in by an independant legacy code. I need something equivalent to
    Some message with a choice {0,choice,null#nothing|not-null#something}
    Unfortunately, programatic implementation is not currently an option

    Ya, I will try that. That seems to be a good idea. Thanks for the response.
    I have one more query. Whenever we add a new column to any table in Oracle, the column name is stored in Upper case. So when we generate XML File from the database, all the tags are either in upper case (or we can use qry.useLowerCaseTagNames() to retrieve the tag names in lower case). But the XSD contains tag names in mixed case. So when validating the XML Document against an XSD, it throws a validation error.
    Is there any way I can avoid this?

  • Can't check for nulls in a conditional?

    Hey everyone. Trying my hand at a text based game but I'm encountering many problems:
    I have this method in one class that (as you can see) has a conditional that checks to see if 'check' is null, this throws a null pointer exception whenever it is called.
    private void placeChars()
            String check = currentItem.getItemString();
            if(check.equals(null) && currentRoom.getShortDescription().equals("in the cafeteria"))
                josh.getSentence(0);
        }Here is the method that it is calling from:
    public String getItemString()
            String returnString = null;
            if(haveItems != 0 ){
            returnString = "Items:";
            Set<String> keys = items.keySet();
            for(String item : keys) {
                returnString += " " + item;
        return returnString;
        }I'm not sure what I am doing wrong here :/ and yes I know the code is extremely ugly :)

    if check is null, you can't invoke any methods on it, including equals.
    To check for null:
    if (check == null)

  • ViewCriteriaRow attribute to check for null or not null

    I Want to apply a view criteria to check for null or not null on a column , i see examples on how to set for value like
    vcRow.setAttribute("Sal", "> 2500")but i need to check for Sal is null or not null ,
    tried vcRow.setAttribute("Sal", null) and it is not working
    and vcRow.setAttribute("Sal", "is null") gives me error .
    can somebody help with correct syntax for this
    Thanks for your time

    looks like vcRow.setAttribute("Sal", "null") works

  • Installed the Mac update, checked for faulty fonts, and ran the Font Test Script. PS still crashes

    Hi guys,
    Ive done everything suggested and my PS is still crashing. I will attatch my crash report to see if it helps with anything. I used Font Doctor and Font Book to check for bad fonts and removed the two that came up. Tried again and still nothing. What should I do now? I really need to use the type tool for a project Im working on. I can edit pictures and use the program just fine up until the point I hit the type tool. I try to run the font test script I found here on the website and the program crashes before the scrip starts running. Its getting a little frustrating.
    Here's the crash report:
    Process:         Adobe Photoshop CS5 [10566]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0.1 (12.0.1)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2010-07-02 13:21:42.534 -0400
    OS Version:      Mac OS X 10.6.4 (10F569)
    Report Version:  6
    Interval Since Last Report:          131251 sec
    Crashes Since Last Report:           58
    Per-App Interval Since Last Report:  22425 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      F5622891-F7B9-4617-818C-E916FBC834FB
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x127111400: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff83fa83d6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff84048972 abort + 83
    2   libSystem.B.dylib                 0x00007fff84037625 szone_error + 519
    3   libSystem.B.dylib                 0x00007fff83f64b4b small_free_list_remove_ptr + 246
    4   libSystem.B.dylib                 0x00007fff83f615ef szone_free_definite_size + 3254
    5   libFontParser.dylib               0x00007fff86220314 FPFontCreateFontsWithPath + 1358
    6   libCGXType.A.dylib                0x00007fff81349e52 create_private_data_with_path + 22
    7   com.apple.CoreGraphics            0x00007fff84b56da3 CGFontCreateFontsWithPath + 51
    8   com.apple.CoreGraphics            0x00007fff84b56a04 CGFontCreateFontsWithURL + 433
    9   com.apple.CoreText                0x00007fff856b3073 TCGFont::TCGFont(__CFURL const*, bool) + 73
    10  com.apple.CoreText                0x00007fff856b2e00 TCGFontCache::CopyFont(__CFURL const*) const + 92
    11  com.apple.CoreText                0x00007fff856b2c5a TBaseFont::CopyNativeFont() const + 50
    12  com.apple.CoreText                0x00007fff856b4517 TBaseFont::CopyAvailableTables(unsigned int) const + 25
    13  AdobeCoolType                     0x000000010430360e CTCleanup + 1011924
    14  AdobeCoolType                     0x00000001043065a4 CTCleanup + 1024106
    15  AdobeCoolType                     0x00000001043079a4 CTCleanup + 1029226
    16  AdobeCoolType                     0x000000010430a1d3 CTCleanup + 1039513
    17  AdobeCoolType                     0x000000010425bc45 CTCleanup + 325387
    18  AdobeCoolType                     0x00000001041be85d 0x1041b7000 + 30813
    19  AdobeCoolType                     0x00000001042b9cf1 CTCleanup + 710583
    20  AdobeCoolType                     0x000000010426748c CTCleanup + 372562
    21  AdobeCoolType                     0x00000001042660e6 CTCleanup + 367532
    22  AdobeCoolType                     0x00000001042b84e8 CTCleanup + 704430
    23  AdobeCoolType                     0x0000000104206353 0x1041b7000 + 324435
    24  com.adobe.Photoshop               0x000000010090a119 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6476937
    25  com.adobe.Photoshop               0x000000010090a145 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6476981
    26  com.adobe.Photoshop               0x0000000100904cef AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6455391
    27  com.adobe.Photoshop               0x0000000100905d08 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6459512
    28  com.adobe.Photoshop               0x0000000100905e78 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6459880
    29  com.adobe.Photoshop               0x0000000100905f57 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6460103
    30  com.adobe.Photoshop               0x0000000100908e5c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6472140
    31  com.adobe.Photoshop               0x00000001002cfd7e 0x100000000 + 2948478
    32  com.adobe.Photoshop               0x00000001002d0934 0x100000000 + 2951476
    33  com.adobe.Photoshop               0x0000000100267557 0x100000000 + 2520407
    34  com.adobe.Photoshop               0x00000001002683df 0x100000000 + 2524127
    35  com.adobe.Photoshop               0x000000010007b4eb 0x100000000 + 505067
    36  com.adobe.Photoshop               0x000000010024f209 0x100000000 + 2421257
    37  com.adobe.Photoshop               0x0000000100278c95 0x100000000 + 2591893
    38  com.adobe.PSAutomate              0x000000011e08659f CPsTextFonts::GetFontDescriptor(bool) + 145
    39  com.adobe.PSAutomate              0x000000011e086603 CPsTextFonts::GetPostScriptNamesList(CPsWActionList&) const + 51
    40  com.adobe.PSAutomate              0x000000011e086806 CPsTextFonts::HostGetLength() const + 36
    41  com.adobe.PSAutomate              0x000000011e0a5f64 MultiScript::LiveCollectionBase::get(int, ScCore::Variant&, ScCore::Error*) const + 66
    42  com.adobe.AdobeExtendScript       0x000000011e4c4a6d ScScript::LiveObjectProperty::get(ScScript::Object&, int) + 941
    43  com.adobe.AdobeExtendScript       0x000000011e485bd4 jsOpVariable::get(jsRunner&, ScScript::PropRef&, ScScript::ESVariant&, bool) + 68
    44  com.adobe.AdobeExtendScript       0x000000011e480470 jsOpProperty::run(jsRunner&, ScScript::ESVariant&) const + 176
    45  com.adobe.AdobeExtendScript       0x000000011e47e918 jsOpLocalAssign::run(jsRunner&, ScScript::ESVariant&) const + 312
    46  com.adobe.AdobeExtendScript       0x000000011e482390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    47  com.adobe.AdobeExtendScript       0x000000011e484474 jsOpTry::run(jsRunner&, ScScript::ESVariant&) const + 276
    48  com.adobe.AdobeExtendScript       0x000000011e482390 jsOpStatements::run(jsRunner&, ScScript::ESVariant&) const + 208
    49  com.adobe.AdobeExtendScript       0x000000011e47be27 jsOpFunction::run(jsRunner&, ScScript::ESVariant&) const + 215
    50  com.adobe.AdobeExtendScript       0x000000011e4a5741 jsRunner::run(ScScript::ESVariant&) + 113
    51  com.adobe.AdobeExtendScript       0x000000011e492cb8 jsFunction::propCall(ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&) + 152
    52  com.adobe.AdobeExtendScript       0x000000011e4c9504 ScScript::RealEngine::exec(int, ScScript::Object&, ScScript::Object&, ScCore::BasicArray const&, ScScript::ESVariant&, int) + 1652
    53  com.adobe.AdobeExtendScript       0x000000011e4cd40d ScScript::RealEngine::eval(ScScript::Script&, ScCore::Variant*, int, int, ScCore::Variant const*) + 685
    54  com.adobe.AdobeExtendScript       0x000000011e4c8dc1 ScScript::RealEngine::eval(ScCore::String const&, ScCore::Variant*, int, int, ScCore::Variant const*, ScCore::String const*, int) + 225
    55  com.adobe.PSAutomate              0x000000011e0a30be MultiScript::ExtendScript::RunScript(ScScript::Engine*, ScCore::String const&, ScCore::Array const&, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) const + 538
    56  com.adobe.PSAutomate              0x000000011e0045c3 CScriptPs::ExecuteGlobalJavaScript(ScCore::String const&, ScCore::String const&, ScCore::Array const*, MultiScript::ExtendScript::ExecutionModeType, ScCore::String const*, ScCore::String&) + 335
    57  com.adobe.PSAutomate              0x000000011e004a40 CScriptPs::DoExecute(PIActionParameters*) + 338
    58  com.adobe.PSAutomate              0x000000011e005042 PluginMain + 110
    59  com.adobe.Photoshop               0x00000001006fe083 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4330483
    60  com.adobe.Photoshop               0x00000001002778ec 0x100000000 + 2586860
    61  com.adobe.Photoshop               0x0000000100277a69 0x100000000 + 2587241
    62  com.adobe.Photoshop               0x0000000100071796 0x100000000 + 464790
    63  com.adobe.Photoshop               0x0000000100066baf 0x100000000 + 420783
    64  com.adobe.Photoshop               0x0000000100066c72 0x100000000 + 420978
    65  com.adobe.Photoshop               0x00000001012dd6cd AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779837
    66  com.apple.Foundation              0x00007fff87aa3a2d __NSFireTimer + 114
    67  com.apple.CoreFoundation          0x00007fff88336678 __CFRunLoopRun + 6488
    68  com.apple.CoreFoundation          0x00007fff8833484f CFRunLoopRunSpecific + 575
    69  com.apple.HIToolbox               0x00007fff8891591a RunCurrentEventLoopInMode + 333
    70  com.apple.HIToolbox               0x00007fff8891567d ReceiveNextEventCommon + 148
    71  com.apple.HIToolbox               0x00007fff889155d8 BlockUntilNextEventMatchingListInMode + 59
    72  com.apple.AppKit                  0x00007fff8415e29e _DPSNextEvent + 708
    73  com.apple.AppKit                  0x00007fff8415dbed -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    74  com.apple.AppKit                  0x00007fff841238d3 -[NSApplication run] + 395
    75  com.adobe.Photoshop               0x00000001012dd5ee AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16779614
    76  com.adobe.Photoshop               0x00000001012de819 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16784265
    77  com.adobe.Photoshop               0x00000001000688c2 0x100000000 + 428226
    78  com.adobe.Photoshop               0x0000000100237c01 0x100000000 + 2325505
    79  com.adobe.Photoshop               0x0000000100237c91 0x100000000 + 2325649
    80  com.adobe.Photoshop               0x00000001000028e4 0x100000000 + 10468
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff83f7308a kevent + 10
    1   libSystem.B.dylib                 0x00007fff83f74f5d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff83f74c34 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff83f7475e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff83f74088 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff83f73f25 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108423c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010841ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108423cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff83f5a34e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff85bb388e MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011b655bd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b1eea1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff85bdd4c3 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b4ccc4 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff85b46bcf MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010591eccd 0x1058e4000 + 240845
    6   AdobeACE                          0x000000010591e67a 0x1058e4000 + 239226
    7   ...ple.CoreServices.CarbonCore    0x00007fff85b1eea1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f94d45 nanosleep + 148
    2   com.adobe.PSAutomate              0x000000011e18209b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x000000011e163fd3 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x000000011e182196 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000011f67f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x000000011f440a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f98cd1 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl               0x000000011f67f04d APXGetHostAPI + 2430509
    3   com.adobe.adobeswfl               0x000000011f440a39 APXGetHostAPI + 77849
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff83f5a2fa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f5a96d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff883353c2 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff8833484f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices     0x00007fff8322363f MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices     0x00007fff8322520a CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000011f67f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x000000011f814943 APXGetHostAPI + 4091683
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl               0x000000011f67f019 APXGetHostAPI + 2430457
    3   com.adobe.adobeswfl               0x000000011f69b95c APXGetHostAPI + 2547516
    4   com.adobe.adobeswfl               0x000000011f67f161 APXGetHostAPI + 2430785
    5   com.adobe.adobeswfl               0x000000011f67f2ba APXGetHostAPI + 2431130
    6   com.adobe.adobeswfl               0x000000011f67f3b0 APXGetHostAPI + 2431376
    7   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    8   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff83f9ddf2 recvfrom + 10
    1   ServiceManager-Launcher.dylib     0x000000012230f982 Invoke + 54020
    2   ServiceManager-Launcher.dylib     0x000000012230eadf Invoke + 50273
    3   ServiceManager-Launcher.dylib     0x000000012230db26 Invoke + 46248
    4   ServiceManager-Launcher.dylib     0x000000012230db81 Invoke + 46339
    5   ServiceManager-Launcher.dylib     0x000000012230dc02 Invoke + 46468
    6   ServiceManager-Launcher.dylib     0x000000012230830d Invoke + 23695
    7   ServiceManager-Launcher.dylib     0x00000001223084a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib     0x0000000122308f2f Invoke + 26801
    9   ServiceManager-Launcher.dylib     0x000000012230901d Invoke + 27039
    10  ServiceManager-Launcher.dylib     0x000000012230c31f Invoke + 40097
    11  ServiceManager-Launcher.dylib     0x000000012230c5c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib     0x000000012230cb84 Invoke + 42246
    13  ServiceManager-Launcher.dylib     0x000000012230cd71 Invoke + 42739
    14  ServiceManager-Launcher.dylib     0x00000001222fedaf Login + 1773
    15  ServiceManager-Launcher.dylib     0x0000000122300295 Login + 7123
    16  ServiceManager-Launcher.dylib     0x000000012230d2a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib     0x000000012230f6c1 Invoke + 53315
    18  libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    19  libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff83f9ddce select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff88356e92 __CFSocketManager + 818
    2   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff83f5a35a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x00007fff83f98bc2 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore    0x00007fff85b4cce4 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore    0x00007fff85b4ca92 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore    0x00007fff85b4c790 AsyncFileThread(void*) + 61
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff83f94eb6 __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff83f94d45 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff83f94caf usleep + 57
    3   com.apple.AppKit                  0x00007fff842a9619 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff87a4de8d __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff83f93456 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff83f93309 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001279f8000  rcx: 0x00007fff5fbf9978  rdx: 0x0000000000000000
      rdi: 0x0000000000002946  rsi: 0x0000000000000006  rbp: 0x00007fff5fbf9990  rsp: 0x00007fff5fbf9978
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00007fff83fa4412  r11: 0x0000000000000202
      r12: 0x0000000000000000  r13: 0x0000000127111400  r14: 0x0000000106bd1000  r15: 0x00000001279f80c0
      rip: 0x00007fff83fa83d6  rfl: 0x0000000000000202  cr2: 0x0000000127a2c000
    Binary Images:
           0x100000000 -        0x1026a7fff +com.adobe.Photoshop 12.0.1 (12.0.1) <CFDED939-0A8A-EBC4-215B-94A4A224A1D1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103287000 -        0x1032fffef +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
           0x103315000 -        0x10331cfff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103324000 -        0x103334ff8 +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
           0x10333f000 -        0x103345ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <1AB34F57-2E8D-42FB-A484-5CCB928CA456> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10334c000 -        0x103552fef +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
           0x1035e5000 -        0x103793fef +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
           0x103835000 -        0x103c65fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dbf000 -        0x1040eaff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041b7000 -        0x1044dffe7 +AdobeCoolType ??? (???) <7EF54CD5-3426-A1E5-7961-FA34CCC2018D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104577000 -        0x104598ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045a5000 -        0x1045d0ff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045e2000 -        0x104726fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10476d000 -        0x1047d2fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047ee000 -        0x104804fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10481c000 -        0x1048b2fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104929000 -        0x104947fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104964000 -        0x104b93fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c72000 -        0x104d05fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d25000 -        0x10506efef +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
           0x1051fe000 -        0x105380fe7 +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
           0x105422000 -        0x10579afff +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
           0x1058e4000 -        0x1059f9fff +AdobeACE ??? (???) <5BFBC4A1-1704-06A7-B656-D28BF592307A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a1e000 -        0x105a3afff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a44000 -        0x105aaeff7 +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
           0x105ae1000 -        0x105bb4ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105bd4000 -        0x105bd8ff8 +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
           0x105bdc000 -        0x105c53fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c74000 -        0x105cd2ffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ce0000 -        0x10617bfff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x106701000 -        0x106757feb +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
           0x10679c000 -        0x1067c1ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x1067fb000 -        0x106800ffd +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
           0x106805000 -        0x1069a1fff +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
           0x106a49000 -        0x106a62feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a73000 -        0x106a79feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a80000 -        0x106a80ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a83000 -        0x106a8bff3 +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
           0x106a92000 -        0x106b78fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
           0x106fc4000 -        0x106fc6fef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x108100000 -        0x10811cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x108147000 -        0x108167ffb +com.adobe.ape adbeapecore version 3.1.65.7508 (3.1.65.7508) <284C86BE-ACD8-31DD-E58D-544F581BC93B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/adbeapecore
           0x1081e7000 -        0x1081f6fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <0628B99F-F193-89BF-6332-B8C50D301F29> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1081fa000 -        0x1081fbfff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <5EB939D1-53CF-EDD2-36DF-3E8A3FB13179> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108400000 -        0x108470ff6 +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
           0x1199e2000 -        0x1199f9fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1B9D1076-CC7C-521A-676C-F7BE51F65271> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1199fd000 -        0x119a1efef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <FA6280BD-A73C-3A3D-6494-81EB80FE1C24> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x119a22000 -        0x119a34fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <A77665EF-B6FB-00B4-2F3D-90D7845814C9> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x119a3a000 -        0x119a42fff +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
           0x119ad5000 -        0x119adcfff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x119ae5000 -        0x119aeefff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11b231000 -        0x11b235fff  com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <F6E20DCA-3C00-8990-1F60-E5517F7D0C77> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
           0x11b23a000 -        0x11b240fff  com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <97D7045E-CFD7-AD5C-6954-3B7C3F367C63> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
           0x11b537000 -        0x11b59aff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11b620000 -        0x11b68bff0 +MultiProcessor Support ??? (???) <8A0A7B32-67A5-4CD5-80DC-F9BEDA271F2C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11e000000 -        0x11e25cfef +com.adobe.PSAutomate 12.0.1 (12.0.1) <6A522366-AB0A-E14E-D695-CDC7F5211991> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x11e472000 -        0x11e516ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.25 (4.1.25.8769) <144F37AB-BE20-D159-C326-A34154FE04B3> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x11e578000 -        0x11e618fef +com.adobe.AdobeScCore ScCore 4.1.25 (4.1.25.8769) <28F9410F-A5B5-BB59-FB7E-F5DB8FA70A0C> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x11eb00000 -        0x11eb3eff7  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
           0x11eb4a000 -        0x11eb74fef  com.apple.mio.DAL.VDC_4 130.0 (1035) <605498BB-69D1-09C2-2720-FC7FBE9C289E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
           0x11f400000 -        0x120247fcf +com.adobe.adobeswfl ??? (2.0.0.7489) <DBD38111-48D6-C031-EF50-D034C94ED38B> /Library/Application Support/Adobe/APE/3.1/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/Ado beSWFL
           0x122279000 -        0x1222b6feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 1.0.0.64 (1.0.0.64) <CD8BD7C7-0F66-29B6-C158-A6EF8DF69996> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotification s
           0x1222fc000 -        0x122324fef +ServiceManager-Launcher.dylib ??? (???) <4608E5E7-7F22-A4FF-527C-E97EA339FCCC> /Library/Application Support/Adobe/CS5ServiceManager/lib/ServiceManager-Launcher.dylib
           0x1224a8000 -        0x1224cefff  GLRendererFloat ??? (???) <10AFC7E0-A5CE-8F0E-7084-439BE59F7E95> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x122900000 -        0x122a8dfe7  GLEngine ??? (???) <57D733C2-F7CB-2B8F-CD34-C85A193145DE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x122abe000 -        0x122ee1fef  libclh.dylib 3.1.1 C  (3.1.1) <83F3C7DB-D2E2-07B0-E433-386C9428AD72> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x200000000 -        0x2006fbff7  com.apple.GeForceGLDriver 1.6.16 (6.1.6) <4F3D3917-641B-AA12-04DE-D3A1995C3B18> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800b2fff  edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff800d9000 -     0x7fff80156fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff80268000 -     0x7fff8028dfe7  com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8028e000 -     0x7fff8029bfe7  libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <7B891D4C-1F19-4DB0-FD12-7A7D5E8F47AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8029c000 -     0x7fff803a6ff7  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
        0x7fff803f7000 -     0x7fff80430ff7  com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff80431000 -     0x7fff804c1fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff804c2000 -     0x7fff804c6ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80644000 -     0x7fff8067cfef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
        0x7fff806b3000 -     0x7fff808eefef  com.apple.imageKit 2.0.3 (1.0) <8DA80BC9-C671-BD89-EA2E-3C632D6ECE30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff808f1000 -     0x7fff808f1ff7  com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff808f2000 -     0x7fff80adcfe7  com.apple.JavaScriptCore 6533 (6533.13) <C2D33B72-06F1-B789-6FD3-FB09EEB6C907> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff80add000 -     0x7fff80b2cff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff80b57000 -     0x7fff80b5cfff  libGFXShared.dylib ??? (???) <1265FAEF-1C97-B339-28A4-4510589B067B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff80b5d000 -     0x7fff80bc5fff  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
        0x7fff80bc6000 -     0x7fff80bc7ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff80bc8000 -     0x7fff80c7dfe7  com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff80c7e000 -     0x7fff80ceaff7  com.apple.CorePDF 1.3 (1.3) <6770FFB0-DEA0-61E0-3520-4B95CCF5D1CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff80ceb000 -     0x7fff80cfdfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff80cfe000 -     0x7fff80ebcfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
        0x7fff80ebd000 -     0x7fff80ec2ff7  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
        0x7fff80ec3000 -     0x7fff80ec5fff  libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff80ec6000 -     0x7fff80f1bfef  com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff80f1c000 -     0x7fff80fabfff  com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff80fac000 -     0x7fff80facff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff80fad000 -     0x7fff80fadff7  com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff80fae000 -     0x7fff81033fff  com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff81034000 -     0x7fff81037ff7  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
        0x7fff81038000 -     0x7fff812a1ff7  com.apple.QuartzComposer 4.1 (156.16) <0BAE3C90-CF60-C0C7-C29E-BF9922074095> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff812a2000 -     0x7fff812c0fff  libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff812fd000 -     0x7fff812feff7  com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff812ff000 -     0x7fff81348ff7  com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
        0x7fff81349000 -     0x7fff8134dff7  libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <E666EBC7-2D87-A3C6-9461-A596B4E53593> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8134e000 -     0x7fff8134eff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8135b000 -     0x7fff81410fe7  com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff81411000 -     0x7fff81420ff7  com.apple.opengl 1.6.8 (1.6.8) <0CDC4F98-7981-A114-1778-AF171075138E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff81421000 -     0x7fff814bbfff  com.apple.ApplicationServices.ATS 4.3 (???) <A7CD9E1F-C563-E940-130D-AA7E08C5A29F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff815d8000 -     0x7fff81a1bfef  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
        0x7fff81a1c000 -     0x7fff81a1cff7  com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff826e2000 -     0x7fff82968ff7  com.apple.security 6.1.1 (37594) <5EDDC08C-C95B-2D24-E1D2-D30D233AB065> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82969000 -     0x7fff82a82fef  libGLProgrammability.dylib ??? (???) <B057FC52-6A97-F450-48D8-325A70423A53> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82cc6000 -     0x7fff82d91fe7  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
        0x7fff82d92000 -     0x7fff82dbafff  com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff82dbb000 -     0x7fff82df8ff7  libFontRegistry.dylib ??? (???) <B63FCC3A-F49E-B42E-6D57-5F59E3A8D8B9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff82df9000 -     0x7fff82e3cff7  libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <DF457CB3-CE61-0FD4-1403-BB68BC2CC998> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff82f9e000 -     0x7fff830c6ff7  com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff830c7000 -     0x7fff83113fff  libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
        0x7fff831b9000 -     0x7fff831fafff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff831fb000 -     0x7fff83214fff  com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff83215000 -     0x7fff8325afff  com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
        0x7fff832f6000 -     0x7fff833c6ff7  com.apple.CFNetwork 454.9.7 (454.9.7) <AA6EB690-6CCF-603D-AAC2-35B9E05D1593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff833c7000 -     0x7fff83418fe7  com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff8341e000 -     0x7fff8344ffff  libGLImage.dylib ??? (???) <2F18DB77-CF77-1311-9E20-FE460090C166> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff83450000 -     0x7fff83452fff  com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff83453000 -     0x7fff83496fff  libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
        0x7fff83497000 -     0x7fff834f5ff7  com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff834f6000 -     0x7fff8350cff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <BFFEC259-F103-B25A-BB52-1AA79116DDBA> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff83529000 -     0x7fff83529ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8352a000 -     0x7fff8356efe7  com.apple.ImageCaptureCore 1.0.2 (1.0.2) <075198A5-4C6B-D945-D3EF-D13960C9F738> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff83593000 -     0x7fff835a9fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff835aa000 -     0x7fff835bbff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
        0x7fff835bc000 -     0x7fff835bfff7  libCoreVMClient.dylib ??? (???) <DBB2C09F-4BF4-326C-B775-B7A128C501E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff835c0000 -     0x7fff835f1fef  libTrueTypeScaler.dylib ??? (???) <0A30CA68-46AF-3E74-AE9E-693DB5A680CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff83739000 -     0x7fff83744ff7  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
        0x7fff83790000 -     0x7fff83b05fe7  com.apple.RawCamera.bundle 3.0.3 (529) <2E6B251A-C5A5-A3F9-832B-BB1958F938E9> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff83b06000 -     0x7fff83b4dff7  com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff83bca000 -     0x7fff83d08fff  com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff83d09000 -     0x7fff83d38ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff83df7000 -     0x7fff83eefff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <7E4ADB5A-CC77-DCFD-3E54-2F35A2C8D95A> /usr/lib/libiconv.2.dylib
        0x7fff83ef0000 -     0x7fff83f31fef  com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff83f32000 -     0x7fff83f58fe7  libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff83f59000 -     0x7fff84119fef  libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
        0x7fff8411a000 -     0x7fff84b10fff  com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84b41000 -     0x7fff8523e067  com.apple.CoreGraphics 1.543.50 (???) <46A7D60C-0500-B96C-ECAD-1D658487D213> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8523f000 -     0x7fff85319ff7  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
        0x7fff8531a000 -     0x7fff8531bfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
        0x7fff854bc000 -     0x7fff85506ff7  com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff85507000 -     0x7fff8550dff7  IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8559b000 -     0x7fff856aafe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff856ab000 -     0x7fff85729fff  com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff8572a000 -     0x7fff8584ffef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85932000 -     0x7fff85937fff  libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff85938000 -     0x7fff8593ffff  com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85940000 -     0x7fff8597bfff  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
        0x7fff8597c000 -     0x7fff859bdff7  com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff859be000 -     0x7fff85a4afef  SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff85a4b000 -     0x7fff85a51ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85a52000 -     0x7fff85ad4fff  com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff85ad5000 -     0x7fff85b00ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff85b01000 -     0x7fff85b17fff  com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff85b18000 -     0x7fff85e4bfe7  com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff85e4c000 -     0x7fff85e6cff7  com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff86120000 -     0x7fff8613bff7  com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff8617d000 -     0x7fff8617dff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8617e000 -     0x7fff8621efff  com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8621f000 -     0x7fff862dffff  libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff866b4000 -     0x7fff866c3fff  com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff866c4000 -     0x7fff866ccfff  com.apple.DisplayServicesFW 2.2.2 (251) <A8AA237B-26DA-455D-4133-69B1D1E45DF4> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff866d5000 -     0x7fff86737fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff86738000 -     0x7fff868a7fe7  com.apple.QTKit 7.6.6 (174

    Try them again.  The bug you are seeing should crash on bad fonts in FontBook, or at least the fonts should fail to validate.
    Also, sometimes you need to restart the machine after removing bad fonts because apps can hang onto the fonts while they are open.
    There is nothing more we can do on the Photoshop side - this is an aknowledged Apple bug, that we cannot avoid (it even happens sometimes when we aren't touching type code directly, because other OS code touches the type code).

  • My MacKeeper says iPhoto is out of date.  When I try to update the App Store says I need IOS 10.9 or later.  I have 10.7.5 and when I check for updates my Mac says the software is up to date.  How do I solve this problem??

    My MacKeeper says iPhoto is out of date.  When I try to update it, the App Store says I need IOS 10.9 or later.  I have 10.7.5 and when I check for updates my Mac says the OS software is up to date.  How do I solve this problem??

    1. First step to solving the Problem: Trash MacKeeper. It's a pile of trash that does far more harm to your computer than good.
    https://discussions.apple.com/docs/DOC-3691
    2. What version of iPhoto do you have? (iPhoto Menu -> About iPhoto)

  • TS3276 can anyone help on the following please. When I have been away from the office for a few days and check for emails it only supplies the most recent 100 emails and the ones before that are never received. thanks

    can anyone help on the following please. When I have been away from the office for a few days and check for emails it only supplies the most recent 100 emails and the ones before that are never received. thanks

    Does your server have a limit?

Maybe you are looking for

  • A series of minor inconsistencies

    Hi , My finder and sound preferences appear to segregate reponsiveness to events regardless of the selctions I make . The Application , "Before You Know It" , a language flash card assistant opens on the M- Audio PCI card and then continues inaudibly

  • Using tomcat with Oracle database?

    I am having some difficulty setting up Tomcat 6.0.16 with JDeveloper 10 and Oracle - I have with the kind help of people here found this: ADF-BC4J + MySQL 5 + Tomcat 6 Which helps me some of the way, but it is for MySQL, not Oracle, and I don't know

  • Time Capsule as Wireless HD with TIGER

    I have TIGER, and just got the Time Capsule. I understand that if I want to use Time Machine, I have to have Mac OS 10.5. 2 or higher. Now, I simply want to use TC as an external wireless hardrive, and put all my iTunes, movies, etc., onto it. But ho

  • How to Identify Physical External Hard Drives that Show in Finder?

    I have a number of firewire hard drives hooked up to my Mac Pro. The 800s are daisy chained together, as are the 400s. I have gone into System Profiler to see if their serial numbers show, but they don't. Is there a simple way of selecting one of the

  • I updated my iPad to 5.0 but not my iPhone 4 so how can u send iMessages to other people?

    So how can u send iMessages to people if my iPad is already updated which I really only wanted to update my iPad since I don't want to really mess up my iPhone 4? Or can u still send iMessages from the iPad to my iPhone possibly?