Contexts and queues problem

Hello Sdn
I am stuck with an issue.
I have a queue udf ,it takes in value and while placing in target ,it is placing the values in target segment.
eg :
Current output:
PO1
  MSG
   10
  MSG
  20
MSG
  30
MSG
  40
Required output
PO1
MSG
   10
MSG
  20
PO1
MSG
  30
MSG
  40
The mapping is : Source-> QUEUE UDF-> Target
IS this a context issue or something needs to be changed in the udf.
Thanks

HI
Change the context of PO1 and MSG to PO1 parent node. and try again.
Right click on each node and use display queue this will show you after changing the context what's changing. Check like this
Thanks
Gaurav

Similar Messages

  • What is Context and queue?

    Q.1What is context and queue in graphical mapping?
    Q.2What is the difference between context and queue in graphical mapping and how these concepts are useful in mapping?

    Hi,
    Context Change
    Message mapping works internally by using queues
    If no further elements are imported at a particular hierarchy level, a Context Change is inserted in the queue
    Use node functions to handle changes in the message hierarchy.
    Context changes have impact on:
    User-Defined Functions
    Breaking and inserting of hierarchy levels Manipulation of queues ant contexts
    Explicit context selection on source elements and nodes
    Using node functions
    removeContexts: deletes all context changes of a queue
    SplitByValue: insert additional context changes in a queue
    Check this link for all details.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/be05e290-0201-0010-e997-b6e55f9548dd
    A tool to display queues:
    -Upload or create source xmldocument in test mode
    - Right-click on box representing element or function
    - Select “Show queue”
    Also check out this link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/be05e290-0201-0010-e997-b6e55f9548dd
    Hope this will help you.
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Difference between Context and Queue in UDF

    hi,
    i am trying to write udf but i have doubt when do i select Contect and when do i select Queue as my udf ? How do we decide which one i select ?
    Thanks & Regards
    Naveen

    when u go 4 advanced udf functionalites u need this. for simple udf not req to play with queue nor context. the input when using a context or queue will be an array of strings but in simple udf's it is just a single string that u will be accessing. u can also check here:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/40/7b8e40496f6f1de10000000a1550b0/content.htm

  • Stack and queue problem

    hi i am trying to change infix expression to postfix and also the opposite, like
    ((a+b)*(a-c*d)/(b+d*e)) to ab+acb*-bde+/
    using stack and queue
    I am so confuse

    Hello,
    See this URL :
    http://www24.brinkster.com/premshree/perl
    You will find the algorithms here.
    Here is a Perl version :
    #     Script:          infix-postfix.pl
    #     Author:          Premshree Pillai
    #     Description:     Using this script you can :
    #               - Convert an Infix expression to Postfix
    #               - Convert a Postfix expression to Infix
    #               - Evaluate a Postfix expression
    #               - Evaluate an Infix expression
    #     Web:          http://www.qiksearch.com
    #     Created:     23/09/02 (dd/mm/yy)
    #     � 2002 Premshree Pillai. All rights reserved.
    sub isOperand
         ($who)=@_;
         if((!isOperator($who)) && ($who ne "(") && ($who ne ")"))
              return 1;
         else
              return;
    sub isOperator
         ($who)=@_;
         if(($who eq "+") || ($who eq "-") || ($who eq "*") || ($who eq "/") || ($who eq "^"))
              return 1;
         else
              return;
    sub topStack
         (@arr)=@_;
         my $arr_len=@arr;
         return($arr[$arr_len-1]);
    sub isEmpty
         (@arr)=@_;
         my $arr_len=@arr;
         if(($arr_len)==0)
              return 1;
         else
              return;
    sub prcd
         ($who)=@_;
         my $retVal;
         if($who eq "^")
              $retVal="5";
         elsif(($who eq "*") || ($who eq "/"))
              $retVal="4";
         elsif(($who eq "+") || ($who eq "-"))
              $retVal="3";
         elsif($who eq "(")
              $retVal="2";
         else
              $retVal="1";
         return($retVal);
    sub genArr
         ($who)=@_;
         my @whoArr;
         for($i=0; $i<length($who); $i++)
              $whoArr[$i]=substr($who,$i,1);
         return(@whoArr);
    sub InfixToPostfix
         ($infixStr)=@_;
         my @infixArr=genArr($infixStr);
         my @postfixArr;
         my @stackArr;
         my $postfixPtr=0;
         for($i=0; $i<length($infixStr); $i++)
              if(isOperand($infixArr[$i]))
                   $postfixArr[$postfixPtr]=$infixArr[$i];
                   $postfixPtr++;
              if(isOperator($infixArr[$i]))
                   if($infixArr[$i] ne "^")
                        while((!isEmpty(@stackArr)) && (prcd($infixArr[$i])<=prcd(topStack(@stackArr))))
                             $postfixArr[$postfixPtr]=topStack(@stackArr);
                             pop(@stackArr);
                             $postfixPtr++;
                   else
                        while((!isEmpty(@stackArr)) && (prcd($infixArr[$i])<prcd(topStack(@stackArr))))
                             $postfixArr[$postfixPtr]=topStack(@stackArr);
                             pop(@stackArr);
                             $postfixPtr++;
                   push(@stackArr,$infixArr[$i]);
              if($infixArr[$i] eq "(")
                   push(@stackArr,$infixArr[$i])
              if($infixArr[$i] eq ")")
                   while(topStack(@stackArr) ne "(")
                        $postfixArr[$postfixPtr]=pop(@stackArr);
                        $postfixPtr++;
                   pop(@stackArr);
         while(!isEmpty(@stackArr))
              if(topStack(@stackArr) eq "(")
                   pop(@stackArr)
              else
                   $temp=@postfixArr;
                   $postfixArr[$temp]=pop(@stackArr);
         return(@postfixArr);
    sub PostfixToInfix
         ($postfixStr)=@_;
         my @stackArr;
         my @postfixArr=genArr($postfixStr);
         for($i=0; $i<length($postfixStr); $i++)
              if(isOperand($postfixArr[$i]))
                   push(@stackArr,$postfixArr[$i]);
              else
                   $temp=topStack(@stackArr);
                   pop(@stackArr);
                   $pushVal=topStack(@stackArr).$postfixArr[$i].$temp;
                   pop(@stackArr);
                   push(@stackArr,$pushVal);
         return((@stackArr));
    sub PostfixEval
         ($postfixStr)=@_;
         my @stackArr;
         my @postfixArr=genArr($postfixStr);
         for($i=0; $i<length($postfixStr); $i++)
              if(isOperand($postfixArr[$i]))
                   push(@stackArr,$postfixArr[$i]);
              else
                   $temp=topStack(@stackArr);
                   pop(@stackArr);
                   $pushVal=PostfixSubEval(topStack(@stackArr),$temp,$postfixArr[$i]);
                   pop(@stackArr);
                   push(@stackArr,$pushVal);
         return(topStack(@stackArr));
    sub PostfixSubEval
         ($num1,$num2,$sym)=@_;
         my $returnVal;
         if($sym eq "+")
              $returnVal=$num1+$num2;
         if($sym eq "-")
              $returnVal=$num1-$num2;
         if($sym eq "*")
              $returnVal=$num1*$num2;
         if($sym eq "/")
              $returnVal=$num1/$num2;
         if($sym eq "^")
              $returnVal=$num1**$num2;
         return($returnVal);
    sub joinArr
         (@who)=@_;
         my $who_len=@who;
         my $retVal;
         for($i=0; $i<$who_len; $i++)
              $retVal.=$who[$i];
         return $retVal;
    sub evalInfix
         ($exp)=@_;
         return PostfixEval(joinArr(InfixToPostfix($exp)));
    sub init
         my $def_exit="\n\tThank you for using this Program!\n\tFor more scripts visit http://www.qiksearch.com\n";
         printf "\n\tInfix - Postfix\n";
         printf "\n\tMenu";
         printf "\n\t(0) Convert an Infix Expression to Postfix Expression";
         printf "\n\t(1) Convert a Postfix Expression to Infix Expression";
         printf "\n\t(2) Evaluate a Postifx Expression";
         printf "\n\t(3) Evaluate an Infix Expression";
         printf "\n\t(4) Exit this Program";
         printf "\n\t(5) About this Program\n";
         printf "\n\tWhat do you want to do? (0/1/2/3/4/5) ";
         $get=<STDIN>;
         chomp $get;
         if(!(($get eq "0") || ($get eq "1") || ($get eq "2") || ($get eq "3") || ($get eq "4") || ($get eq "5")))
              printf "\n\t'$get' is an illegal character.\n\tYou must enter 0/1/2/3/4/5.";
         if(($get ne "4") && ($get ne "5") && (($get eq "0") || ($get eq "1") || ($get eq "2") || ($get eq "3")))
              printf "\n\tEnter String : ";
              $getStr=<STDIN>;
              chomp $getStr;
         if($get eq "0")
              printf "\tPostfix String : ";
              print InfixToPostfix($getStr);
         if($get eq "1")
              printf "\tInfix String : ";
              print PostfixToInfix($getStr);
         if($get eq "2")
              printf "\tPostfix Eval : ";
              print PostfixEval($getStr);
         if($get eq "3")
              printf "\tExpression Eval : ";
              print evalInfix($getStr);
         if($get eq "4")
              printf $def_exit;
              exit 0;
         if($get eq "5")
              printf "\n\t======================================================";
              printf "\n\t\tInfix-Postfix Script (written in Perl)";
              printf "\n\t\t(C) 2002 Premshree Pillai";
              printf "\n\t\tWeb : http://www.qiksearch.com";
              printf "\n\t======================================================\n";
              printf "\n\tUsing this program, you can : ";
              printf "\n\t- Convert an Infix Expression to Postfix Expression.";
              printf "\n\t Eg : 1+(2*3)^2 converts to 123*2^+";
              printf "\n\t- Convert a Postfix Expression to Infix Expression.";
              printf "\n\t Eg : 123*+ converts to 1+2*3";
              printf "\n\t- Evaluate a Postfix Expression";
              printf "\n\t Eg : 37+53-2^/ evaluates to 2.5";
              printf "\n\t- Evaluate an Infix Expression";
              printf "\n\t Eg : (5+(4*3-1))/4 evaluates to 4";
              printf "\n\n\tYou can find the algorithms used in this Program at : ";
              printf "\n\t-http://www.qiksearch.com/articles/cs/infix-postfix/index.htm";
              printf "\n\t-http://www.qiksearch.com/articles/cs/postfix-evaluation/index.htm";
              printf "\n\n\tYou can find a JavaScript implementation of 'Infix-Postfix' at : ";
              printf "\n\t-http://www.qiksearch.com/javascripts/infix-postfix.htm";
         printf "\n\n\tDo you want to continue? (y/n) ";
         my $cont=<STDIN>;
         chomp $cont;
         if($cont eq "y")
              init();
         else
              printf $def_exit;
              exit 0;
    init;

  • Value and context and queue diff

    Hi people
              In UDF editor cache, what is the use and diff between value and context queue radio buttons
    Thanks
    Shekar

    Refer
    http://help.sap.com/saphelp_nw04/helpdata/en/22/e127f28b572243b4324879c6bf05a0/content.htm
    Value - returns string..
    Context/Queue  - returns array of values

  • Diff btw queue,context and xpath

    plzzz provide me the links for diff btw queue,context and xpath....i have searched the sdn but didnt find find any information...!!!
    and also please provide me u r usefull ideas
    thnx SDNers

    Hi ,
    Have a look at these links for queue and context  -
    1. /people/riyaz.sayyad/blog/2006/04/23/introduction-to-context-handling-in-message-mapping
    2. http://wiki.sdn.sap.com/wiki/display/XI/Detailedlookintothesuppressed+nodes
    3. /people/venkat.donela/blog/2005/06/09/introduction-to-queues-in-message-mapping
    XPath is used to navigate through elements and attributes in an XML document. It can be used in content based Receiver determination. For details refer to these links -
    1. http://www.w3schools.com/xpath/default.asp
    2. http://en.wikipedia.org/wiki/XPath
    3. /people/prasadbabu.nemalikanti3/blog/2006/09/20/receiver-determination-based-on-the-payload-of-input-dataextended-xpathcontext-object
    Regards,
    Sunil Chandra

  • When do VI and queue references become invalid?

    Hi all,
    I have a fairly complicated problem, so please bear with me.
    1)  I have a reentrant SubVI (let's call it VI "Assign") that has an input cluster of (VI ref, queue ref) (let's call the cluster type "Refs").  If the VI ref is invalid (first execution), the VI ref and queue ref are assigned values and are passed on as an output cluster of same type.  (The VI does other things too, but for simplicity only this is important.)
    2)  The VI that calls VI "Assign" (let's call it VI "Store") is not reentrant and has a local variable of type "Refs" that is wired to the input and output of VI "Assign".  This VI effectively stores the references.  The references returned by VI "Assign" are always valid right after the call, but after the problem condition described below, they are invalid at the start of all calls before they are passed to VI "Assign".
    3)  VI "Store" is called by multiple non-reentrant VIs, so the local variables of VI "Assign" retain their values (Has been tested and verified to retain their values).  The VI causing the problem in this case is a template VI of which multiple copies are launched (let's call it VI "Template").
    The problem is that the moment an instance of VI "Template" is closed, the queue reference becomes invalid, although the actual variant value of the reference remains the same.  The VI ref can become invalid or not, depending on small changes, but is always reproducible.  I assume there must be some similarity between VI and queue refs.  After spending some time researching, the Labview help states for the Open VI Ref component "If you do not close this reference, it closes automatically after the top-level VI associated with this function executes."  In this case I assumed it means that the moment the reentrant VI "Assign" finishes, the references will get cleared ??  So I made a non-reentrant VI (let's call it VI "NR Assign") that only assigns values to the references and VI "Assign" now calls this VI (It effectively does what I described VI "Assign" does).  I keep this VI alive by using it in a VI which never terminates and since it never terminates, the references should never become invalid.  Anyone still following?  This didn't solve the problem though.  If I reproduce the same scenario using only one instance of the template VI, it works just fine.  Furthermore, the VI and queue references are never closed, to aid analysis of the problem.  Can anyone shine some light on what happens when a template VI terminates?  Could this be the problem?
    Unfortunately I cannot include the code.
    Thank you whoever is able to make sense of this.
    Christie

    Christie wrote:
    Hi all,
    I have a fairly complicated problem, so please bear with me.
    1)  I have a reentrant SubVI (let's call it VI "Assign") that has an input cluster of (VI ref, queue ref) (let's call the cluster type "Refs").  If the VI ref is invalid (first execution), the VI ref and queue ref are assigned values and are passed on as an output cluster of same type.  (The VI does other things too, but for simplicity only this is important.)
    2)  The VI that calls VI "Assign" (let's call it VI "Store") is not reentrant and has a local variable of type "Refs" that is wired to the input and output of VI "Assign".  This VI effectively stores the references.  The references returned by VI "Assign" are always valid right after the call, but after the problem condition described below, they are invalid at the start of all calls before they are passed to VI "Assign".
    3)  VI "Store" is called by multiple non-reentrant VIs, so the local variables of VI "Assign" retain their values (Has been tested and verified to retain their values).  The VI causing the problem in this case is a template VI of which multiple copies are launched (let's call it VI "Template").
    The problem is that the moment an instance of VI "Template" is closed, the queue reference becomes invalid, although the actual variant value of the reference remains the same.  The VI ref can become invalid or not, depending on small changes, but is always reproducible.  I assume there must be some similarity between VI and queue refs.  After spending some time researching, the Labview help states for the Open VI Ref component "If you do not close this reference, it closes automatically after the top-level VI associated with this function executes."  In this case I assumed it means that the moment the reentrant VI "Assign" finishes, the references will get cleared ??  So I made a non-reentrant VI (let's call it VI "NR Assign") that only assigns values to the references and VI "Assign" now calls this VI (It effectively does what I described VI "Assign" does).  I keep this VI alive by using it in a VI which never terminates and since it never terminates, the references should never become invalid.  Anyone still following?  This didn't solve the problem though.  If I reproduce the same scenario using only one instance of the template VI, it works just fine.  Furthermore, the VI and queue references are never closed, to aid analysis of the problem.  Can anyone shine some light on what happens when a template VI terminates?  Could this be the problem?
    Unfortunately I cannot include the code.
    Thank you whoever is able to make sense of this.
    Christie
    All LabVIEW refnums do get deallocated automatically when the top-level VI in whose hierarchy the refnum was created goes idle (stops executing). You will have to make sure that the creation of a refnum is done inside a VI hierarchy that stays running for the entire time you want to use that refnum.
    Rolf Kalbermatter
    Message Edited by rolfk on 06-27-2007 11:52 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Spry Menu Bar 2.0 (1.0) - Handling of widget generated CSS, placement and rendering problems in CSS

    Hello:
    I wanted to repost my question to re-frame the issue based on what I have learned thus far.
    I am working on a website that has been developed using the Spry Menu Bar Framework UI (2.0) I.0, that has some peculiar rendering problems that affect IE 6 in particular.  The CSS is reprinted below.
    In particular, when I post the widget generated CSS in the head as it is orginally situated by the framework, the menu bar works fine.  However, it seemed to me that I should be able to reduce page weight (an important consideration considering my target population) by placing it in the general style sheet governing the entire site.
    When I place the styles at the beginning of the style sheet the menu doesn't render at all in any of the browsers (IE 6+, Firefox, Opera, Safari, Netscape, etc.) as it conflicts with the general rules governing links that appear later in the style sheet.  When I place the styles specific to the Menu bar at the end of the style sheet, then the menu bar renders properly in all browsers except IE 6.
    The odd thing is that the only way to ensure that the menu bar works in IE 6 is to keep the menu related styles in the head of each page.  This raises problems related to page weight (not an insurmountable consideration if no other solution can be found) but still an issue.  Likewise I need to support IE 6, again given the target audience/population.  The issue obviously has something to do with specificity, but I am not certain that is the only consideration at work here.  I have not tried the !important selector in regard to the menu, as IE 6 seems to only partially support this.
    Thanks in advance for any advice or insight that can be provided.  Thanks in particular to Martin for his contributions to my earlier question related to this issue.
    Steve Webster.
    The CSS governing the horizontal menu bar is as follows:  (currently the following CSS is embedded in the head of the web page)
    <style type="text/css">
    /*  -- Begins Spry Menu Widget 2.0 (1.0) Horizontal menu bar Custom styles --  */
    /* BeginOAWidget_Instance_2141544: #MenuBar */
    /* Settable values for skinning a Basic menu via presets. If presets are not sufficient, most skinning should be done in
       these rules, with the exception of the images used for down or rightpointing arrows, which are in the file SpryMenuBasic.css
         These assume the following widget classes for menu layout (set in a preset)
       .MenuBar - Applies to all menubars - default is horizontal bar, allsubmenus are vertical - 2nd level subs and beyond are pull-right.
        .MenuBarVertical - vertical main bar; all submenus are pull-right.
       You can also pass in extra classnames to set your desired top levelmenu bar layout. Normally, these are set by using a preset.
        They only apply to horizontal menu bars:
            MenuBarLeftShrink - The menu bar will be horizontally 'shrinkwrapped' to be just large enough to hold its items, and left aligned
            MenuBarRightShrink - Just like MenuBarLeftShrink, but right aligned
            MenuBarFixedLeft - Fixed at a specified width set in the rule '.MenuBarFixedLeft', and left aligned. 
            MenuBarFixedCentered -  - Fixed at a specified width set in the rule '.MenuBarFixedCentered',
                            and centered in its parent container.
            MenuBarFullwidth - Grows to fill its parent container width.
        In general, all rules specified in this file are prefixed by #MenuBar so they only apply to instances of the widget inserted along
       with the rules. This permits use of multiple MenuBarBasic widgets onthe same page with different layouts. Because of IE6 limitations,
        there are a few rules where this was not possible. Those rules are so noted in comments.
    #MenuBar  {
        background-color:transparent;
       font-family: Arial, Helvetica, sans-serif; /* Specify fonts on onMenuBar and subMenu MenuItemContainer, so MenuItemContainer,
                                                    MenuItem, and MenuItemLabel
                                                    at a given level all use same definition for ems.
                                                    Note that this means the size is also inherited to child submenus,
                                                    so use caution in using relative sizes other than
                                                    100% on submenu fonts. */
        font-weight: normal;
        font-size: 17px;
        font-style: normal;
        padding:0;
    /* Caution: because ID+class selectors do not work properly in IE6, but we want to restrict these rules to just this
    widget instance, we have used string-concatenated classnames for our selectors for the layout type of the menubar
    in this section. These have very low specificity, so be careful not to accidentally override them. */
    .MenuBar br { /* using just a class so it has same specificity as the ".MenuBarFixedCentered br" rule bleow */
        display:none;
    .MenuBarLeftShrink {
        float: left; /* shrink to content, as well as float the MenuBar */
        width: auto;
    .MenuBarRightShrink {
        float: right; /* shrink to content, as well as float the MenuBar */
        width: auto;
    .MenuBarFixedLeft {
        float: left;
        width: 80em;
    .MenuBarFixedCentered {
        float: none;
        width: 80em;
        margin-left:auto;
        margin-right:auto;
    .MenuBarFixedCentered br {
        clear:both;
        display:block;
    .MenuBarFixedCentered .SubMenu br {
        display:none;
    .MenuBarFullwidth {
        float: left;
        width: 100%;
    /* Top level menubar items - these actually apply to all items, and get overridden for 1st or successive level submenus */
    #MenuBar  .MenuItemContainer {
        padding: 0px 0px 0px 0px;
        margin: 0;     /* Zero out margin  on the item containers. The MenuItem is the active hover area.
                    For most items, we have to do top or bottom padding or borders only on the MenuItem
                    or a child so we keep the entire submenu tiled with items.
                    Setting this to 0 avoids "dead spots" for hovering. */
    #MenuBar  .MenuItem {
        padding: 10px 10px 10px 4px;
        background-color:#000088;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Nav igation%20Bar%20Segment-Dark.png);
        background-repeat:repeat-x;       
    #MenuBar  .MenuItemFirst {
        border-style: none none none none;
    #MenuBar .MenuItemLast {
        border-style: none none none none;
    #MenuBar  .MenuItem  .MenuItemLabel{
        text-align:center;
        line-height:1.4em;
        color:#ffffff;
        background-color:transparent;
        padding: 0px 18px 0px 5px;
        width: 10em;
        width:auto;
    .SpryIsIE6 #MenuBar  .MenuItem  .MenuItemLabel{
        width:1em; /* Equivalent to min-width in modern browsers */
    /* First level submenu items */
    #MenuBar .SubMenu  .MenuItem {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 15px;
        font-style: normal;
        background-color:#000088;
        padding:0px 2px 0px 0px;
        border-width:0px;
        border-color: #cccccc #cccccc #cccccc #cccccc;
        /* Border styles are overriden by first and last items */
        border-style: solid solid none solid;
    #MenuBar  .SubMenu .MenuItemFirst {
        border-style: none;
        padding: 0px;
    #MenuBar  .SubMenu .MenuItemFirst .MenuItemLabel{
        padding-top: 0px;
    #MenuBar .SubMenu .MenuItemLast {
        border-style: none none none none;
    #MenuBar .SubMenu .MenuItemLast .MenuItemLabel{
        padding-bottom: 10px;
    #MenuBar .SubMenu .MenuItem .MenuItemLabel{
        text-align:left;
        line-height:1em;   
        background-color:transparent;
        color:#ffffff;
        padding: 10px 10px 10px 10px;
        width: 240px;
    /* Hover states for containers, items and labels */
    #MenuBar .MenuItemHover {
        background-color: #2E35A3;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Nav igation%20Bar%20Segment%20Light2.png);
        background-repeat:repeat-x;
    #MenuBar .MenuItemWithSubMenu.MenuItemHover .MenuItemLabel{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    #MenuBar .MenuItemHover .MenuItemLabel{
        background-color: transparent;
        color: #ffffff;
    #MenuBar .SubMenu .MenuItemHover {
        background-color:#2E35A3;
    #MenuBar .SubMenu .MenuItemHover .MenuItemLabel{
        background-color: transparent;
        color: #ffffff;
    /* Submenu properties -- First level of submenus */
    #MenuBar .SubMenuVisible {
        background-color: transparent;
       min-width:0%;  /* This keeps the menu from being skinnier than theparent MenuItemContainer - nice to have but not available on ie6 */
        border-style: none none none none;
    #MenuBar.MenuBar .SubMenuVisible {/* For Horizontal menubar only */
        top: 100%;    /* 100% is at the bottom of parent menuItemContainer */
        left:0px; /* 'left' may need tuning depending upon borders or padding applied to menubar MenuItemContainer or MenuItem,
                        and your personal taste.
                       0px will left align the dropdown with the content area of theMenuItemContainer. Assuming you keep the margins 0
                        on MenuItemContainer and MenuItem on the parent
                        menubar, making this equal the sum of the MenuItemContainer & MenuItem padding-left will align
                        the dropdown with the left of the menu item label.*/
        z-index:10;
    #MenuBar.MenuBarVertical .SubMenuVisible {
        top: 0px;   
        left:100%;
        min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse */
    /* Submenu properties -- Second level submenu and beyond - these are visible descendents of .MenuLevel1 */
    #MenuBar .MenuLevel1 .SubMenuVisible {
        background-color: transparent;
        min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse*/
        top: 0px;    /* If desired, you can move this down a smidge to separate top item''s submenu from menubar -
                    that is really only needed for submenu on first item of MenuLevel1, or you can make it negative to make submenu more
                    vertically 'centered' on its invoking item */
        left:100%; /* If you want to shift the submenu left to partially cover its invoking item, you can add a margin-left with a
                    negative value to this rule. Alternatively, if you use fixed-width items, you can change this left value
                    to use px or ems to get the offset you want. */
    /* IE6 rules - you can delete these if you do not want to support IE6 */
    /* A note about multiple classes in IE6.
    * Some of the rules above use multiple class names on an element forselection, such as "hover" (MenuItemHover) and "has a subMenu"(MenuItemWithSubMenu),
    * giving the selector '.MenuItemWithSubMenu.MenuItemHover'.
    * Unfortunately IE6 does not support using mutiple classnames in aselector for an element. For a selector such as '.foo.bar.baz', IE6ignores
    * all but the final classname (here, '.baz'), and sets thespecificity accordingly, counting just one of those classs assignificant. To get around this
    * problem, we use the plugin in SpryMenuBarIEWorkaroundsPlugin.js to generate compound classnames for IE6, such as 'MenuItemWithSubMenuHover'.
    * Since there are a lotof these needed, the plugin does not generate the extra classes formodern browsers, and we use the CSS2 style mutltiple class
    * syntax for that. Since IE6 both applies rules where
    * it should not, and gets the specificity wrong too, we have to order rules carefully, so the rule misapplied in IE6 can be overridden.
    * So, we put the multiple class rule first. IE6 will mistakenly apply this rule.  We follow this with the single-class rule that it would
    * mistakenly override, making sure the  misinterpreted IE6 specificity is the same as the single-class selector, so the latter wins.
    * We then create a copy of the multiple class rule, adding a '.SpryIsIE6' class as context, and making sure the specificity for
    * the selector is high enough to beat the single-class rule in the "both classes match" case. We place the IE6 rule at the end of the
    * css style block to make it easy to delete if you want to drop IE6 support.
    * If you decide you do not need IE6 support, you can get rid of these,as well as the inclusion of the SpryMenuBarIEWorkaroundsPlugin.jsscript.
    * The 'SpryIsIE6' class is placed on the HTML element by the script in SpryMenuBarIEWorkaroundsPlugin.js if the browser isInternet Explorer 6. This avoids the necessity of IE conditionalcomments for these rules.
    .SpryIsIE6 #MenuBar .MenuBarView .MenuItemWithSubMenuHover .MenuItemLabel /* IE6 selector  */{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    .SpryIsIE6 #MenuBar .MenuBarView .SubMenu .MenuItemWithSubMenuHover .MenuItemLabel/* IE6 selector  */{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    .SpryIsIE6 #MenuBar .SubMenu .SubMenu  /* IE6 selector  */{
        margin-left: -0px; /* Compensates for at least part of an IE6 "double padding" version of the "double margin" bug */
    /* EndOAWidget_Instance_2141544 */
    /* Ends Spry Menu Bar Widget 2.0 (1.0) Horizontal Menu Custom styles */
    </style>
    The CSS governing the site generally is reproduced below:  (my belief is that it is the a:link, a:visited,  a:hover, a:active styles that may be in conflict).
    @charset "utf-8";
    body  {
        font: 100% Verdana, Arial, Helvetica, sans-serif;
       min-height: 0; /* This is necessary to overcome the "haslayout" bugthat is found in Windows 7 in conjuction with IE8.  For Moreinformation see: URL -- http://reference.sitepoint.com/css/haslayout.html */
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
        padding: 0;
        text-align:center; /* This allows for the centering of the container and overcomes a bug inherent in IE 5 */
        color: #000000;
        list-style-image: none;
        background-color: #FCFCFC;
    h1,h2,h3,h4,h5,h6 {
    color:#000066;
    a:link {
        color: #151A96;
        text-decoration: underline;
    a:visited {
        text-decoration: underline;
        color: #1B8DCD;
    a:hover {
        text-decoration: none;
        color: #F30A0A;
    a:active {
        text-decoration: underline;
        color: #151A96;
    #container {
        width: 960px;   
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
        text-align: left; /* this overrides the text-align: center on the body element. */
        background-image:
        url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Website%20Midsection %20_960.png);
        background-repeat: repeat-y;
    #header {
           padding: 0;  /* this padding matches the left alignment of the elementsin the divs that appear beneath it. If an image is used in the #headerinstead of text, you may want to remove the padding. */
            width:960px;
            height:332px;
            background-image:
            url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Website%20Header_960 .png);
            background-repeat:no-repeat;
    #header h1 {
        margin-right: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
        display:none;
    #header img {
        display: none;
    #Main_nav_contents {
        padding: 0;
        margin-top: 0px;
        height: 39px;
        width: 950px;       
        padding-top: 275px; 
        padding-left: 39px;
        z-index: 3; 
    #MenuBarVertical {
        margin-bottom: 50px;
        padding-top: 50px;
        padding-bottom:200px;
        padding-left: 15px;
        padding-right: 15px;
    .mainContent_left {
       margin: 0;/* the right margin on this div element creates the columndown the right side of the page - no matter how much content thesidebar1 div contains, the column space will remain. You can removethis margin if you want the #mainContent div's text to fill the#sidebar1 space when the content in #sidebar1 ends. */
        padding-left:30px;
        padding-right:20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
        width: 600px;
        float: left;
    .sidebar_right {
        float: right; /* since this element is floated, a width must be given */
        width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
        margin-top: 30px;
        margin-left:0;
        margin-right:10px;
        font-size:90%;
    .mainContent_right {
        margin-left: 10px;
        padding-left:30px;
        padding-right:20px;
        width: 600px;
        float: right;
    .sidebar_left {
        float: left; /* since this element is floated, a width must be given */
        width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
        margin-top: 30px;
        margin-left:30px;
        margin-right:0;
        overflow: hidden;
        font-size:90%;
    .main_content_centered {
        width: 650px;
        margin-left: 155px;
    .main_content_centered_header {
        margin-left: 75px;
    .sidebar_textbox {
        margin: 0px;   
        width: 260px;
        padding: 2px;
    .sidebar_textbox_header {
        width:255px;
        height:58px;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Por trait%20Textbox%20Header.png);
    .sidebar_textbox_background_middle {
         width: 255px;   
        padding-top: 12px;   
        padding-bottom: 10px;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Por trait%20Textbox%20Middle.png);
        background-repeat: repeat-y;
    .sidebar_textbox_content {
       /* The width and padding are set as follows to accomodate quirks inbrowser rendering and to ensure that text is contained within thebackground of the text box */
        width: 230px;
        padding-left: 20px;
        padding-right: 40px;
    .sidebar_textbox_footer {
        width:255px;
        height:64px;
    background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Port rait%20Textbox%20Footer.png);
    #issues_menu a:link {
        color: #151A96;
        text-decoration: none;
        font-weight:bold;
    #issues_menu a:visited {
        color: #151A96;
        font-weight:bold;
        text-decoration: none;
    #issues_menu a:hover {   
        color: #F30A0A;
        font-weight:bold;
        font-style: oblique;
        text-decoration: none;
    #issues_menu a:active {
        color: #151A96;
        font-weight:bold;
        text-decoration: none;
    #archives {
        padding-top: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        padding-left: 0px;
    .landscape_textbox {
        width: 500px;
        margin-right: 0px;
        margin-left: 30px;
        padding-top:35px;
        padding-bottom: 25px;
        font-style: normal;
        font-weight: normal;
    .landscape_textbox_hdr {
        width:500px;
        height:38px;
        margin:auto;
        padding:0;
        background-image:
    url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Landscape%20Textbox%2 0Header.png);
    .landscape_textbox_middle {
        width:auto;
        margin:auto;
        padding-top: 12px;
        padding-bottom: 12px;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/lan dscapte%20Textbox%20Middle.png);
        background-repeat:repeat-y;
    .landscape_textbox_content {
        width:450px;
        padding:25px;
    .landscape_textbox_ftr {
        width:500px;
        height:44px;
        margin:auto;
        padding:0;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Lan dscape%20Textbox%20Footer.png);
    #footer {
        padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
        width: 960px;
        height: 222px;
        background-image:
        url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Website%20Footer%20_ 960.png);
        background-repeat:no-repeat;
    #footer p {
       margin: 0px; /* zeroing the margins of the first element in the footerwill avoid the possibility of margin collapse - a space between divs */
        padding:0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
        text-align:center;
        margin-left: 50px;
        margin-right: 50px;
        padding: 10px;
        font-size: small;
    #footer h5 {
    text-align:center;
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    .dropcap {
        display: block;
        float: left;
        line-height: 80%;
        font-size: 250%;
        font-weight: bolder;
        color: #000066;   
        padding: .03em .1em 0 0;
    .red_arrows {
        list-style-position: outside;
        list-style-image: url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Arrow%20Large.png);    
    .blue_bullets {
        list-style-position: outside;
        list-style-image: url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Bullet%20Medium%20Fu ll.png);   
    .attention {
        color: #F30A0A;
        font-size:x-large;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-style: italic;
        font-weight:900;
    .attention_small {
        color: #F30A0A;
        font-size:large;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-style: italic;
        font-weight:900;
    .table {
        table-layout:fixed;
    .blue {
        color: #00F;
    #container .mainContent_left p .blue {
        color: #0303A0;

    Hi Nancy:
    The specific code that I am referring to is the CSS code governing the styling of the spry menu widget that only works in IE 6 if, and only if, it remains in the head of the web page.  If removed and placed in a stylesheet, the IE plugins fail to compensate for the IE 6 "gap" bug.  As I said, it doesn't make sense to me that, assuming specificity is addressed, that these can not be included in an external style sheet.  I am looking for a) an explanation why they must remain embedded in the web page; and 2) any means by which I might be able to export them.
    I will reproduce the specific css style (code) below:  it should also be visable through reveal source --
    Thanks again, Steve Webster.
    The CSS governing the horizontal menu bar is as follows:  (currently the following CSS is embedded in the head of the web page)
    <style type="text/css">
    /*  -- Begins Spry Menu Widget 2.0 (1.0) Horizontal menu bar Custom styles --  */
    /* BeginOAWidget_Instance_2141544: #MenuBar */
    /* Settable values for skinning a Basic menu via presets. If presets are not sufficient, most skinning should be done in
       these rules, with the exception of the images used for down or rightpointing arrows, which are in the file SpryMenuBasic.css
         These assume the following widget classes for menu layout (set in a preset)
       .MenuBar - Applies to all menubars - default is horizontal bar, allsubmenus are vertical - 2nd level subs and beyond are pull-right.
        .MenuBarVertical - vertical main bar; all submenus are pull-right.
       You can also pass in extra classnames to set your desired top levelmenu bar layout. Normally, these are set by using a preset.
        They only apply to horizontal menu bars:
            MenuBarLeftShrink - The menu bar will be horizontally 'shrinkwrapped' to be just large enough to hold its items, and left aligned
            MenuBarRightShrink - Just like MenuBarLeftShrink, but right aligned
            MenuBarFixedLeft - Fixed at a specified width set in the rule '.MenuBarFixedLeft', and left aligned. 
            MenuBarFixedCentered -  - Fixed at a specified width set in the rule '.MenuBarFixedCentered',
                            and centered in its parent container.
            MenuBarFullwidth - Grows to fill its parent container width.
        In general, all rules specified in this file are prefixed by #MenuBar so they only apply to instances of the widget inserted along
       with the rules. This permits use of multiple MenuBarBasic widgets onthe same page with different layouts. Because of IE6 limitations,
        there are a few rules where this was not possible. Those rules are so noted in comments.
    #MenuBar  {
        background-color:transparent;
       font-family: Arial, Helvetica, sans-serif; /* Specify fonts on onMenuBar and subMenu MenuItemContainer, so MenuItemContainer,
                                                    MenuItem, and MenuItemLabel
                                                    at a given level all use same definition for ems.
                                                    Note that this means the size is also inherited to child submenus,
                                                    so use caution in using relative sizes other than
                                                    100% on submenu fonts. */
        font-weight: normal;
        font-size: 17px;
        font-style: normal;
        padding:0;
    /* Caution: because ID+class selectors do not work properly in IE6, but we want to restrict these rules to just this
    widget instance, we have used string-concatenated classnames for our selectors for the layout type of the menubar
    in this section. These have very low specificity, so be careful not to accidentally override them. */
    .MenuBar br { /* using just a class so it has same specificity as the ".MenuBarFixedCentered br" rule bleow */
        display:none;
    .MenuBarLeftShrink {
        float: left; /* shrink to content, as well as float the MenuBar */
        width: auto;
    .MenuBarRightShrink {
        float: right; /* shrink to content, as well as float the MenuBar */
        width: auto;
    .MenuBarFixedLeft {
        float: left;
        width: 80em;
    .MenuBarFixedCentered {
        float: none;
        width: 80em;
        margin-left:auto;
        margin-right:auto;
    .MenuBarFixedCentered br {
        clear:both;
        display:block;
    .MenuBarFixedCentered .SubMenu br {
        display:none;
    .MenuBarFullwidth {
        float: left;
        width: 100%;
    /* Top level menubar items - these actually apply to all items, and get overridden for 1st or successive level submenus */
    #MenuBar  .MenuItemContainer {
        padding: 0px 0px 0px 0px;
        margin: 0;     /* Zero out margin  on the item containers. The MenuItem is the active hover area.
                    For most items, we have to do top or bottom padding or borders only on the MenuItem
                    or a child so we keep the entire submenu tiled with items.
                    Setting this to 0 avoids "dead spots" for hovering. */
    #MenuBar  .MenuItem {
        padding: 10px 10px 10px 4px;
        background-color:#000088;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Nav igation%20Bar%20Segment-Dark.png);
        background-repeat:repeat-x;       
    #MenuBar  .MenuItemFirst {
        border-style: none none none none;
    #MenuBar .MenuItemLast {
        border-style: none none none none;
    #MenuBar  .MenuItem  .MenuItemLabel{
        text-align:center;
        line-height:1.4em;
        color:#ffffff;
        background-color:transparent;
        padding: 0px 18px 0px 5px;
        width: 10em;
        width:auto;
    .SpryIsIE6 #MenuBar  .MenuItem  .MenuItemLabel{
        width:1em; /* Equivalent to min-width in modern browsers */
    /* First level submenu items */
    #MenuBar .SubMenu  .MenuItem {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 15px;
        font-style: normal;
        background-color:#000088;
        padding:0px 2px 0px 0px;
        border-width:0px;
        border-color: #cccccc #cccccc #cccccc #cccccc;
        /* Border styles are overriden by first and last items */
        border-style: solid solid none solid;
    #MenuBar  .SubMenu .MenuItemFirst {
        border-style: none;
        padding: 0px;
    #MenuBar  .SubMenu .MenuItemFirst .MenuItemLabel{
        padding-top: 0px;
    #MenuBar .SubMenu .MenuItemLast {
        border-style: none none none none;
    #MenuBar .SubMenu .MenuItemLast .MenuItemLabel{
        padding-bottom: 10px;
    #MenuBar .SubMenu .MenuItem .MenuItemLabel{
        text-align:left;
        line-height:1em;   
        background-color:transparent;
        color:#ffffff;
        padding: 10px 10px 10px 10px;
        width: 240px;
    /* Hover states for containers, items and labels */
    #MenuBar .MenuItemHover {
        background-color: #2E35A3;
        background-image:url(../ACLCO%20Graphics%20-%20Web%20site%20Parts/Nav igation%20Bar%20Segment%20Light2.png);
        background-repeat:repeat-x;
    #MenuBar .MenuItemWithSubMenu.MenuItemHover .MenuItemLabel{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    #MenuBar .MenuItemHover .MenuItemLabel{
        background-color: transparent;
        color: #ffffff;
    #MenuBar .SubMenu .MenuItemHover {
        background-color:#2E35A3;
    #MenuBar .SubMenu .MenuItemHover .MenuItemLabel{
        background-color: transparent;
        color: #ffffff;
    /* Submenu properties -- First level of submenus */
    #MenuBar .SubMenuVisible {
        background-color: transparent;
       min-width:0%;  /* This keeps the menu from being skinnier than theparent MenuItemContainer - nice to have but not available on ie6 */
        border-style: none none none none;
    #MenuBar.MenuBar .SubMenuVisible {/* For Horizontal menubar only */
        top: 100%;    /* 100% is at the bottom of parent menuItemContainer */
        left:0px; /* 'left' may need tuning depending upon borders or padding applied to menubar MenuItemContainer or MenuItem,
                        and your personal taste.
                       0px will left align the dropdown with the content area of theMenuItemContainer. Assuming you keep the margins 0
                        on MenuItemContainer and MenuItem on the parent
                        menubar, making this equal the sum of the MenuItemContainer & MenuItem padding-left will align
                        the dropdown with the left of the menu item label.*/
        z-index:10;
    #MenuBar.MenuBarVertical .SubMenuVisible {
        top: 0px;   
        left:100%;
        min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse */
    /* Submenu properties -- Second level submenu and beyond - these are visible descendents of .MenuLevel1 */
    #MenuBar .MenuLevel1 .SubMenuVisible {
        background-color: transparent;
        min-width:0px; /* Do not neeed to match width to parent MenuItemContainer - items will prevent total collapse*/
        top: 0px;    /* If desired, you can move this down a smidge to separate top item''s submenu from menubar -
                    that is really only needed for submenu on first item of MenuLevel1, or you can make it negative to make submenu more
                    vertically 'centered' on its invoking item */
        left:100%; /* If you want to shift the submenu left to partially cover its invoking item, you can add a margin-left with a
                    negative value to this rule. Alternatively, if you use fixed-width items, you can change this left value
                    to use px or ems to get the offset you want. */
    /* IE6 rules - you can delete these if you do not want to support IE6 */
    /* A note about multiple classes in IE6.
    * Some of the rules above use multiple class names on an element forselection, such as "hover" (MenuItemHover) and "has a subMenu"(MenuItemWithSubMenu),
    * giving the selector '.MenuItemWithSubMenu.MenuItemHover'.
    * Unfortunately IE6 does not support using mutiple classnames in aselector for an element. For a selector such as '.foo.bar.baz', IE6ignores
    * all but the final classname (here, '.baz'), and sets thespecificity accordingly, counting just one of those classs assignificant. To get around this
    * problem, we use the plugin in SpryMenuBarIEWorkaroundsPlugin.js to generate compound classnames for IE6, such as 'MenuItemWithSubMenuHover'.
    * Since there are a lotof these needed, the plugin does not generate the extra classes formodern browsers, and we use the CSS2 style mutltiple class
    * syntax for that. Since IE6 both applies rules where
    * it should not, and gets the specificity wrong too, we have to order rules carefully, so the rule misapplied in IE6 can be overridden.
    * So, we put the multiple class rule first. IE6 will mistakenly apply this rule.  We follow this with the single-class rule that it would
    * mistakenly override, making sure the  misinterpreted IE6 specificity is the same as the single-class selector, so the latter wins.
    * We then create a copy of the multiple class rule, adding a '.SpryIsIE6' class as context, and making sure the specificity for
    * the selector is high enough to beat the single-class rule in the "both classes match" case. We place the IE6 rule at the end of the
    * css style block to make it easy to delete if you want to drop IE6 support.
    * If you decide you do not need IE6 support, you can get rid of these,as well as the inclusion of the SpryMenuBarIEWorkaroundsPlugin.jsscript.
    * The 'SpryIsIE6' class is placed on the HTML element by the script in SpryMenuBarIEWorkaroundsPlugin.js if the browser isInternet Explorer 6. This avoids the necessity of IE conditionalcomments for these rules.
    .SpryIsIE6 #MenuBar .MenuBarView .MenuItemWithSubMenuHover .MenuItemLabel /* IE6 selector  */{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    .SpryIsIE6 #MenuBar .MenuBarView .SubMenu .MenuItemWithSubMenuHover .MenuItemLabel/* IE6 selector  */{
        background-color: transparent; /* consider exposing this prop separately*/
        color: #ffffff;
    .SpryIsIE6 #MenuBar .SubMenu .SubMenu  /* IE6 selector  */{
        margin-left: -0px; /* Compensates for at least part of an IE6 "double padding" version of the "double margin" bug */
    /* EndOAWidget_Instance_2141544 */
    /* Ends Spry Menu Bar Widget 2.0 (1.0) Horizontal Menu Custom styles */
    </style>

  • On trying to launch CS5 Photoshop: An unexpected and unrecoverable problem has occurred. Photoshop w

    I have an iMac 27" with 2.8 GHz Intel Core 17. 4 GB RAM. It's running OS X 10.6.8 Snow Leopard.
    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive.
    Since then my CS5 Photoshop comes up with this error message at each launch attempt:
    "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    I took the computer back to the repair shop. They said they got CS5 Photoshop working on my computer so I brought it home and -- this is totally inexplicable -- I STILL get the error message.
    Subsequently I've trashed CS5 Photoshop and reinstalled from the original Adobe Design Premium CS5 suite .dmg but I continue to get the same message. I've also trashed the preferences several times and the message still occurs. Creating a new user account for my computer and trying to open CS5 Photoshop there didn't help. I had no problems with fonts and Photoshop CS5 before the hard drive was changed.
    I have no idea what else to do. Any help will be greatly appreciated. Thanks!
    Here is the Photoshop Problem Report:
    Process:         Adobe Photoshop CS5 [426]
    Path:            /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier:      com.adobe.Photoshop
    Version:         12.0 (12.0x20100407.r.1103) (12.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [96]
    Date/Time:       2013-01-20 10:08:41.018 -0600
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          28237 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  2014 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      399C19BD-C233-4F20-9385-CBEADC8E2EA4
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x00007fff878340b6 __kill + 10
    1   libSystem.B.dylib                 0x00007fff878d49f6 abort + 83
    2   com.adobe.Photoshop               0x0000000100237b1b 0x100000000 + 2325275
    3   libstdc++.6.dylib                 0x00007fff810d6ae1 __cxxabiv1::__terminate(void (*)()) + 11
    4   libstdc++.6.dylib                 0x00007fff810d5e9c __cxa_call_terminate + 46
    5   libstdc++.6.dylib                 0x00007fff810d69fc __gxx_personality_v0 + 1011
    6   libSystem.B.dylib                 0x00007fff8784aeb1 unwind_phase2 + 145
    7   libSystem.B.dylib                 0x00007fff878547eb _Unwind_Resume + 91
    8   com.adobe.ape                     0x00000001222d2a61 APEStreamWrite + 10193
    9   com.adobe.ape                     0x00000001222d56bf APEStreamWrite + 21551
    10  com.adobe.ape                     0x00000001222d75dc APEStreamWrite + 29516
    11  com.adobe.PSAutomate              0x0000000121dab869 -[ScriptUIAPEStage initWithFrame:stageArgs:] + 121
    12  com.adobe.PSAutomate              0x0000000121daa8ed ScriptUI::APE_Player::apOSCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 189
    13  com.adobe.PSAutomate              0x0000000121da8a32 ScriptUI::APE_Player::apCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 66
    14  com.adobe.PSAutomate              0x0000000121da833c ScriptUI::APE_Player::apInitialize(NSView*, NSWindow*, long, bool, bool) + 172
    15  com.adobe.PSAutomate              0x0000000121d9e8f6 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 198
    16  com.adobe.PSAutomate              0x0000000121d9458e ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 3806
    17  com.adobe.PSAutomate              0x0000000121c6ab2e JavaScriptUI::IJavaScriptUI() + 544
    18  com.adobe.PSAutomate              0x0000000121c6bbb0 InitJavaScriptUI() + 106
    19  com.adobe.PSAutomate              0x0000000121c6be7c CScriptPs::DoLateInitialize() + 622
    20  com.adobe.PSAutomate              0x0000000121c6cc20 CScriptPs::DoExecute(PIActionParameters*) + 630
    21  com.adobe.PSAutomate              0x0000000121c6d0fe PluginMain + 110
    22  com.adobe.Photoshop               0x00000001006fe2c3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4331399
    23  com.adobe.Photoshop               0x0000000100278000 0x100000000 + 2588672
    24  com.adobe.Photoshop               0x000000010027817d 0x100000000 + 2589053
    25  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    26  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    27  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    28  com.adobe.Photoshop               0x000000010024fb1b 0x100000000 + 2423579
    29  com.adobe.Photoshop               0x000000010027910b 0x100000000 + 2593035
    30  com.adobe.PSAutomate              0x0000000121c6c4e3 PSEventIdle(unsigned int, _ADsc*, int, void*) + 107
    31  com.adobe.Photoshop               0x000000010024b057 0x100000000 + 2404439
    32  com.adobe.Photoshop               0x0000000100071d74 0x100000000 + 466292
    33  com.adobe.Photoshop               0x000000010006716f 0x100000000 + 422255
    34  com.adobe.Photoshop               0x0000000100067232 0x100000000 + 422450
    35  com.adobe.Photoshop               0x00000001012f0007 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16856267
    36  com.apple.AppKit                  0x00007fff841f06de -[NSApplication run] + 474
    37  com.adobe.Photoshop               0x00000001012ee19c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16848480
    38  com.adobe.Photoshop               0x00000001012ef3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16853131
    39  com.adobe.Photoshop               0x0000000100068e82 0x100000000 + 429698
    40  com.adobe.Photoshop               0x0000000100238308 0x100000000 + 2327304
    41  com.adobe.Photoshop               0x00000001002383a7 0x100000000 + 2327463
    42  com.adobe.Photoshop               0x0000000100002ea4 0x100000000 + 11940
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff877fec0a kevent + 10
    1   libSystem.B.dylib                 0x00007fff87800add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff878007b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff878002de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff877ffc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 3:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services            0x0000000108523c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services            0x000000010851ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services            0x0000000108523cbe AMTThread::Worker(void*) + 28
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                 0x00007fff877e5dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x00007fff81f97186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support            0x000000011d21ebd3 ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff87824881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore    0x00007fff81fc0d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore    0x00007fff81f2fff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore    0x00007fff81f29efb MPWaitOnQueue + 215
    5   AdobeACE                          0x000000010592c23d 0x1058f2000 + 238141
    6   AdobeACE                          0x000000010592bbea 0x1058f2000 + 236522
    7   ...ple.CoreServices.CarbonCore    0x00007fff81f020d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    9   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   com.adobe.PSAutomate              0x0000000121dea0fb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate              0x0000000121dcc033 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate              0x0000000121dea1f6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                 0x00007fff877ffa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff877ffe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff877ffaa5 start_wqthread + 13
    Thread 21:
    0   libSystem.B.dylib                 0x00007fff87820a6a __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff878208f9 nanosleep + 148
    2   libSystem.B.dylib                 0x00007fff87820863 usleep + 57
    3   com.apple.AppKit                  0x00007fff843763a1 -[NSUIHeartBeat _heartBeatThread:] + 1540
    4   com.apple.Foundation              0x00007fff82401114 __NSThread__main__ + 1429
    5   libSystem.B.dylib                 0x00007fff8781efd6 _pthread_start + 331
    6   libSystem.B.dylib                 0x00007fff8781ee89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001233c9a20  rcx: 0x00007fff5fbfd808  rdx: 0x0000000000000000
      rdi: 0x00000000000001aa  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfd820  rsp: 0x00007fff5fbfd808
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x00007fff878300fa  r11: 0x0000000000000202
      r12: 0x00007fff5fbfd830  r13: 0x00007fff5fbfdde0  r14: 0x00007fff5fbfde28  r15: 0x000000012339e3f0
      rip: 0x00007fff878340b6  rfl: 0x0000000000000202  cr2: 0x000000011a1ce044
    Binary Images:
           0x100000000 -        0x1026b5fff +com.adobe.Photoshop 12.0 (12.0x20100407.r.1103) (12.0) <B69D89E5-01DD-C220-48B1-E129D0574536> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
           0x103295000 -        0x10330dfef +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
           0x103323000 -        0x10332afff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103332000 -        0x103342ff8 +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
           0x10334d000 -        0x103353ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10335a000 -        0x103560fef +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
           0x1035f3000 -        0x1037a1fef +com.adobe.owl AdobeOwl version 3.0.91 (3.0.91) <C36CA603-EFFB-2EED-6CEE-0B532CE052D2> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103843000 -        0x103c73fef +AdobeMPS ??? (???) <FA334142-5343-8808-7760-4318EB62AD51> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103dcd000 -        0x1040f8ff7 +AdobeAGM ??? (???) <52E17D56-6E7A-A635-82ED-5DE1F3E5045D> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1041c5000 -        0x1044edfe7 +AdobeCoolType ??? (???) <9E03F47A-06A3-F1F4-AC4C-76F12FACC294> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104585000 -        0x1045a6ff7 +AdobeBIBUtils ??? (???) <F7150688-2C15-0F0C-AF24-93ED82FC321A> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1045b3000 -        0x1045deff6 +AdobeAXE8SharedExpat ??? (???) <7E809606-BF97-DB3A-E465-156446E56D00> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x1045f0000 -        0x104734fef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10477b000 -        0x1047e0fff +aif_core ??? (???) <12FA670E-05A8-1FCB-A7A2-AAE68728EA30> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x1047fc000 -        0x104812fff +data_flow ??? (???) <9C5D39A6-D2A2-9B6A-8B64-D1B59396C112> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x10482a000 -        0x1048c0fff +image_flow ??? (???) <B72AA922-0D68-D57E-96B1-2E009B0AD4AE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104937000 -        0x104955fff +image_runtime ??? (???) <32786637-C9BF-4CB6-2DF9-5D99220E00BE> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104972000 -        0x104ba1fff +aif_ogl ??? (???) <615E7DF6-09B1-857A-74AC-E224A636BEE1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x104c80000 -        0x104d13fff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
           0x104d33000 -        0x10507cfef +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
           0x10520c000 -        0x10538efe7 +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
           0x105430000 -        0x1057a8fff +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
           0x1058f2000 -        0x105a06fff +AdobeACE ??? (???) <E359887D-1E7F-5E62-CB8D-37CE4DBFB4D8> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x105a2b000 -        0x105a47fff +AdobeBIB ??? (???) <7A792F27-42CC-2DCA-D5DF-88A2CE6C2626> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105a51000 -        0x105abbff7 +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
           0x105aee000 -        0x105bc1ffb +AdobeJP2K ??? (???) <465D1693-BE79-590E-E1AA-BAA8061B4746> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105be1000 -        0x105be5ff8 +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
           0x105be9000 -        0x105c60fff +FileInfo ??? (???) <6D5235B9-0EB6-17CA-6457-A2507A87EA8F> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105c81000 -        0x105cdfffd +AdobeXMP ??? (???) <561026BB-C6EA-29CE-4790-CABCB81E8884> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105ced000 -        0x106188fff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/Cg.framework/Cg
           0x10670e000 -        0x106764feb +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
           0x1067a9000 -        0x1067ceffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106808000 -        0x10680dffd +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
           0x106812000 -        0x1069adfff +com.adobe.PlugPlug 2.0.0.746 (2.0.0.746) <CB23C5AA-0E4B-182B-CB88-57DD32893F92> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106a55000 -        0x106a6efeb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbb.dylib
           0x106a7f000 -        0x106a85feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/libtbbmalloc.dylib
           0x106a8c000 -        0x106a8cff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106a8f000 -        0x106a97ff3 +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
           0x106a9e000 -        0x106b84fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x106f78000 -        0x106f7afef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106ff9000 -        0x106ffafff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x108500000 -        0x108570ff6 +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
           0x1086cd000 -        0x1086e4fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1086e8000 -        0x108709fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x10870d000 -        0x10871cfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x108720000 -        0x108732fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x108737000 -        0x10873ffff +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
           0x1087d2000 -        0x1087f8fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
           0x11a6de000 -        0x11a6e5fff +Enable Async IO ??? (???) <9C98DC9E-5974-FE5D-75C3-16BC4738DCC8> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x11aedb000 -        0x11aee4fff +FastCore ??? (???) <F1D1C94D-4FE1-F969-6FC2-8D81837CA5E1> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11c840000 -        0x11c9d3fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11ca04000 -        0x11ce20fff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
           0x11d100000 -        0x11d163ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11d1e9000 -        0x11d254ff0 +MultiProcessor Support ??? (???) <1334B570-C713-3767-225F-3C1CBA1BF37C> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x121c68000 -        0x121ec4fef +com.adobe.PSAutomate 12.0 (12.0) <35AEF3A8-2E64-71D1-39ED-A34760CAAC29> /Applications/Adobe Photoshop CS5/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x1220da000 -        0x12217effb +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7573) <332E7D8D-BF42-3177-9BC5-033942DE35E0> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x1221e0000 -        0x122280fef +com.adobe.AdobeScCore ScCore 4.1.23 (4.1.23.7573) <53DD7281-5B59-7FF5-DB57-C9FD60E524C7> /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1222c6000 -        0x1222e6ffb +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
           0x123500000 -        0x12351cff7 +MeasurementCore ??? (???) <0E3BE9B3-FF3D-78A6-38EC-5CB0828B80EB> /Applications/Adobe Photoshop CS5/Plug-ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800e0fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff800e1000 -     0x7fff80104fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff80105000 -     0x7fff8014dff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff8014e000 -     0x7fff801a1ff7  com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff801b5000 -     0x7fff801c9fff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff801f4000 -     0x7fff809fefe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff80b28000 -     0x7fff80ba7fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff80ba8000 -     0x7fff80bf4fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8108c000 -     0x7fff81109fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff81116000 -     0x7fff8112dfff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff814ad000 -     0x7fff8166bfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff8166c000 -     0x7fff81670ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff81671000 -     0x7fff81671ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff81a26000 -     0x7fff81a90fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff81ac1000 -     0x7fff81ad0fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff81ad1000 -     0x7fff81ad1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff81ad2000 -     0x7fff81e6ffe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff81e70000 -     0x7fff81eb9fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81eba000 -     0x7fff81ebffff  libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
        0x7fff81ec0000 -     0x7fff81efafff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <7982734A-B66B-44AA-DEEC-364D2C10009B> /usr/lib/libcups.2.dylib
        0x7fff81efb000 -     0x7fff8222ffef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff82230000 -     0x7fff823effff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
        0x7fff823f0000 -     0x7fff82672fff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff82673000 -     0x7fff8273efff  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <86982FBB-B224-CBDA-A9AD-8EE97BDB8681> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8273f000 -     0x7fff8275ffff  com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
        0x7fff82760000 -     0x7fff8276eff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8279f000 -     0x7fff827d0fff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff8283a000 -     0x7fff8283dfff  com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff82842000 -     0x7fff8285bfff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff82912000 -     0x7fff82a2cfff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
        0x7fff82a71000 -     0x7fff82a73fff  libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
        0x7fff82a74000 -     0x7fff82a7aff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff82a7b000 -     0x7fff82d04ff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82d59000 -     0x7fff831a0fef  com.apple.RawCamera.bundle 3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff831a1000 -     0x7fff831b7fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff831ef000 -     0x7fff83210fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff8361c000 -     0x7fff836a8fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff83733000 -     0x7fff83744ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff83745000 -     0x7fff8382afef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8382b000 -     0x7fff83923ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <44AADE50-15BC-BC6B-BEF0-5029A30766AC> /usr/lib/libiconv.2.dylib
        0x7fff83924000 -     0x7fff839e1fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff83a17000 -     0x7fff83a32ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff83e3e000 -     0x7fff83ef3fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff83ef4000 -     0x7fff83ef9fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff83efa000 -     0x7fff83f37ff7  libFontRegistry.dylib ??? (???) <4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff83faa000 -     0x7fff8404afff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff8404b000 -     0x7fff8404bff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8404c000 -     0x7fff84102ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff84186000 -     0x7fff841e6fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff841e7000 -     0x7fff84be1ff7  com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff84c9b000 -     0x7fff84cdeff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84f1a000 -     0x7fff84fd3fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff84fd4000 -     0x7fff85112fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8511f000 -     0x7fff85140fe7  libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
        0x7fff8530f000 -     0x7fff8542efe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff85498000 -     0x7fff854adff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff854be000 -     0x7fff8556efff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff855d8000 -     0x7fff855fdff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff85622000 -     0x7fff85622ff7  com.apple.Carbon 150 (152) <FA427C37-CF97-6773-775D-4F752ED68581> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8564b000 -     0x7fff8568cfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8571b000 -     0x7fff857a0ff7  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
        0x7fff857a1000 -     0x7fff857c9fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff85933000 -     0x7fff85a4afef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff85a7b000 -     0x7fff85a7eff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff85a7f000 -     0x7fff85b0ffff  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
        0x7fff86bcf000 -     0x7fff872cbff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff872cc000 -     0x7fff872cefff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff872cf000 -     0x7fff872faff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff87309000 -     0x7fff87344fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff87345000 -     0x7fff8735bfe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff8735c000 -     0x7fff8741dfff  libFontParser.dylib ??? (???) <A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8741e000 -     0x7fff874dffef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff874ea000 -     0x7fff874f0ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff8750d000 -     0x7fff8758bff7  com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
        0x7fff877df000 -     0x7fff877e4ff7  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
        0x7fff877e5000 -     0x7fff879a6fef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff87a8b000 -     0x7fff87a98fe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff87ad8000 -     0x7fff87c0dfff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87c0e000 -     0x7fff87c55ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87c68000 -     0x7fff87cb7ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
        0x7fff87cc4000 -     0x7fff87e3bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87e3c000 -     0x7fff87e4efe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff87e58000 -     0x7fff87e63ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff87ef4000 -     0x7fff87f8efe7  com.apple.ApplicationServices.ATS 275.16 (???) <4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff87fa8000 -     0x7fff87facff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87fad000 -     0x7fff87fadff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff880bf000 -     0x7fff88193fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
        0x7fff88419000 -     0x7fff88419ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8842e000 -     0x7fff88431ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff88455000 -     0x7fff88456ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff88463000 -     0x7fff88464fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff88477000 -     0x7fff88477ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88478000 -     0x7fff884c2ff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff884c3000 -     0x7fff884c4ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff884c5000 -     0x7fff884ecff7  libJPEG.dylib ??? (???) <472D4A31-C1F3-57FD-6453-6621C48B95BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
        0x7fff8856a000 -     0x7fff88868fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff88869000 -     0x7fff8886fff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88870000 -     0x7fff888c6fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
        0x7fff8973b000 -     0x7fff8976eff7  libTrueTypeScaler.dylib ??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8976f000 -     0x7fff897c4ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff897e1000 -     0x7fff897e8fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff897e9000 -     0x7fff897fdff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff897fe000 -     0x7fff8980dfef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff898aa000 -     0x7fff898ebfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff89902000 -     0x7fff89d45fef  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
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
    Model: iMac11,1, BootROM IM111.0034.B02, 4 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.54f36
    Graphics: ATI Radeon HD 4850, ATI Radeon HD 4850, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.6
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa140000 / 6
    USB Device: My Book 1140, 0x1058  (Western Digital Technologies, Inc.), 0x1140, 0xfa130000 / 5
    USB Device: Intern

    Last week I had the computer's hard drive replaced after the old one had gone bad. All the data was transferred fine to the new hard drive
    It depends on how the program was transfered.  If direct file copy it probably will not work, as all the files are not in one directory.  It is usually safest to reinstall from a disk or download.  You might want to unistall the programs and run Adobe Script Cleaner and then reinstall.

  • On save as: Unexpected and unrecoverable problem has occurred. Photoshop will now exit. (Mac 10.7.3)

    Hello,
    We are working on Macinthosh intel - Mac Pro Intel Xeon september 2007, with MacOs 10.7.3.
    After trying to install the beta version of Photoshop CS6, we got serious problems.
    - The CS5 Photoshop and Acrobat 9 is not working anymore.
    When we want to "save as…", both application will crash.
    When we do "save as weboptimized", un error says that the file already exists.
    We did not manage to install the CS6 Photoshop beta neither.
    I tried EVERYTHING supposed to do in other forums and in the adobe forums, like:
    - latest version of AdobeApplication Manager
    - Adobe cleaner tool
    - Adobe support advisor
    - cleaning manually everything on the disk which containes CS6
    - Reparing Autorisation
    - Trying to reinstall CS5 (but without issue
    - trash prefs
    - deactivate and reactivate PHotoshop
    and some others…
    When trying to "save as" or save as weboptimized…", the following errors appears:
    The operation could not be completed.
    An unexpected and unrecoverable problem has occurred. Photoshop will now exit.
    When trying to "save as weboptimized" the following error appears:
    A file or directory already exists with the same name.
    When exporting or "save as" in Acrobat:
    Acrobat is blocked, everything in the application menu is turned gray but there is not open window.
    I have to exit with "esc+Alt+Command"
    All this problems occured after installation of Photoshop Beta CS6, which could not be completed because of some more errors causing a licence conflict with CS5.
    We were also trying the Adobe support advisor, we got the following error massage:
    Exit Code: 16
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW039 ...
    -------------------------------------- Summary --------------------------------------
      - 0 fatal error(s), 1 error(s), 0 warning(s)
    ERROR: DW039: Failed to load deployment File
    AND
    Exit Code: 7
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW013 ... WARNING: DW017 ...
    -------------------------------------- Summary --------------------------------------
      - 0 fatal error(s), 1 error(s), 1 warning(s)
    WARNING: DW017: PayloadPolicyNode.SetAction: IN payload {463D65D7-CD43-4FAC-A6C7-7D24CB5DB93B} Adobe Media Player 1.8.0.0 is required by {7DFEBBA4-81E1-425B-BBAA-06E9E5BBD97E} Adobe Photoshop CS5 Core 12.0.0.0 but isn't free. Reason: Language not supported
    ERROR: DW013: Unable to locate volume for path. Please verify that path [UserDocuments] is a valid path. Please ensure that if any intermediate directories exist, they are valid directories and not files/symlinks
    Here is the content of the Crash Report:
    Process:    
    Adobe Photoshop CS5 [1403]
    Path:       
    /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [299]
    Date/Time:  
    2012-04-17 10:10:50.329 +0200
    OS Version: 
    Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[1403]: garbage collection is OFF
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff86d78ce2 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c7d2 pthread_kill + 95
    2   libsystem_c.dylib        
    0x00007fff909fda7a abort + 143
    3   com.adobe.Photoshop      
    0x00000001002369eb 0x100000000 + 2320875
    4   libc++abi.dylib          
    0x00007fff897d8001 safe_handler_caller(void (*)()) + 11
    5   libc++abi.dylib          
    0x00007fff897d7ff6 __cxxabiv1::__terminate(void (*)()) + 9
    6   libc++abi.dylib          
    0x00007fff897d8346 __cxa_call_terminate + 59
    7   libc++abi.dylib          
    0x00007fff897d87c3 __gxx_personality_v0 + 207
    8   libunwind.dylib          
    0x00007fff8a21f4c6 unwind_phase2 + 160
    9   libunwind.dylib          
    0x00007fff8a21e96e _Unwind_RaiseException + 218
    10  com.apple.FinderKit      
    0x00007fff8b3a2b64 -[FI_TColumnViewController closeTarget] + 243
    11  com.apple.FinderKit      
    0x00007fff8b3de1d0 -[FIFinderViewGutsController destroyBrowserView] + 238
    12  com.apple.FinderKit      
    0x00007fff8b3dbdcc -[FIFinderViewGutsController prepareToHide] + 369
    13  com.apple.FinderKit      
    0x00007fff8b3dbee4 -[FIFinderViewGutsController setExpanded:] + 44
    14  com.apple.FinderKit      
    0x00007fff8b3e40ab -[FIFinderView viewWillMoveToWindow:] + 265
    15  com.apple.AppKit         
    0x00007fff8c5b9e31 -[NSView _setWindow:] + 238
    16  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    17  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    18  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    19  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    20  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    21  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    22  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    23  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    24  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    25  com.apple.AppKit         
    0x00007fff8c4e6c08 __NSViewRecursionHelper + 25
    26  com.apple.CoreFoundation 
    0x00007fff8fbecea4 CFArrayApplyFunction + 68
    27  com.apple.AppKit         
    0x00007fff8c5ba766 -[NSView _setWindow:] + 2595
    28  com.apple.AppKit         
    0x00007fff8c6dfb57 -[NSWindow dealloc] + 1262
    29  com.apple.AppKit         
    0x00007fff8c9e34f4 -[NSSavePanel dealloc] + 612
    30  com.apple.AppKit         
    0x00007fff8c4e0145 -[NSWindow release] + 535
    31  libobjc.A.dylib          
    0x00007fff897ed03c (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 434
    32  com.apple.CoreFoundation 
    0x00007fff8fbecb05 _CFAutoreleasePoolPop + 37
    33  com.apple.Foundation     
    0x00007fff8423a51d -[NSAutoreleasePool release] + 154
    34  com.adobe.Photoshop      
    0x00000001012f2d2e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16869522
    35  com.adobe.Photoshop      
    0x00000001000824f8 0x100000000 + 533752
    36  com.adobe.Photoshop      
    0x0000000100c3243c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9789344
    37  com.adobe.Photoshop      
    0x0000000100080e25 0x100000000 + 527909
    38  com.adobe.Photoshop      
    0x0000000100c327e2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 9790278
    39  com.adobe.Photoshop      
    0x00000001004ca733 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2024087
    40  com.adobe.Photoshop      
    0x0000000100074b6f 0x100000000 + 478063
    41  com.adobe.Photoshop      
    0x00000001000711ba 0x100000000 + 463290
    42  com.adobe.Photoshop      
    0x00000001000665d3 0x100000000 + 419283
    43  com.adobe.Photoshop      
    0x0000000100066696 0x100000000 + 419478
    44  com.adobe.Photoshop      
    0x00000001012e1ef4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800344
    45  com.apple.AppKit         
    0x00007fff8c4a31f2 -[NSApplication run] + 555
    46  com.adobe.Photoshop      
    0x00000001012e04a4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16793608
    47  com.adobe.Photoshop      
    0x00000001012e0f01 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796261
    48  com.adobe.Photoshop      
    0x00000001000682e6 0x100000000 + 426726
    49  com.adobe.Photoshop      
    0x00000001002371f1 0x100000000 + 2322929
    50  com.adobe.Photoshop      
    0x0000000100237281 0x100000000 + 2323073
    51  com.adobe.Photoshop      
    0x00000001000022f4 0x100000000 + 8948
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff86d797e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff84b045be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff84b0314e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.amt.services   
    0x0000000108723c53 AMTConditionLock::LockWhenCondition(int) + 37
    3   com.adobe.amt.services   
    0x000000010871ccce _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 92
    4   com.adobe.amt.services   
    0x0000000108723cbe AMTThread::Worker(void*) + 28
    5   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff86d79192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff90a0c594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff90a0db85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff86d776ce semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore
    0x00007fff8761e3be MPWaitOnSemaphore + 77
    2   MultiProcessor Support   
    0x0000000110a00b93 ThreadFunction(void*) + 69
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   AdobeACE                 
    0x000000010598b18d 0x105951000 + 237965
    6   AdobeACE                 
    0x000000010598ab3a 0x105951000 + 236346
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib   
    0x00007fff86d78e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff909c0dea nanosleep + 164
    2   com.adobe.PSAutomate     
    0x00000001166dbe4b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x00000001166bdd83 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x00000001166dbf46 ScObjects::Thread::go(void*) + 166
    5   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.adobe.adobeswfl      
    0x000000012dbb289d APXGetHostAPI + 2465805
    3   com.adobe.adobeswfl      
    0x000000012d96b5e9 APXGetHostAPI + 77145
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib   
    0x00007fff86d7767a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff86d76d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff8fbeb6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff8fbf3e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff8fbf3676 CFRunLoopRunSpecific + 230
    5   com.apple.CoreMediaIO    
    0x00007fff90148541 CMIO::DAL::RunLoop::OwnThread(void*) + 159
    6   com.apple.CoreMediaIO    
    0x00007fff9013e6b2 CAPThread::Entry(CAPThread*) + 98
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dbcf0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dd4ce6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib   
    0x00007fff86d78d7a __recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x0000000119885982 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x0000000119884adf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x0000000119883b26 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x0000000119883b81 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x0000000119883c02 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x000000011987e30d Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x000000011987e4a6 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x000000011987ef2f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x000000011987f01d Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x000000011988231f Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x00000001198825c5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x0000000119882b84 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x0000000119882d71 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x0000000119874daf Login + 1773
    15  ServiceManager-Launcher.dylib
    0x0000000119876295 Login + 7123
    16  ServiceManager-Launcher.dylib
    0x00000001198832a8 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x00000001198856c1 Invoke + 53315
    18  libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    19  libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dbcf0ec APXGetHostAPI + 2582620
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e2a6 _pthread_cond_wait + 890
    2   com.adobe.adobeswfl      
    0x000000012dbb2869 APXGetHostAPI + 2465753
    3   com.adobe.adobeswfl      
    0x000000012dd4ce6f APXGetHostAPI + 4146655
    4   com.adobe.adobeswfl      
    0x000000012dbb29b1 APXGetHostAPI + 2466081
    5   com.adobe.adobeswfl      
    0x000000012dbb2d1a APXGetHostAPI + 2466954
    6   com.adobe.adobeswfl      
    0x000000012dbb2e49 APXGetHostAPI + 2467257
    7   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib   
    0x00007fff86d776b6 semaphore_wait_trap + 10
    1   com.adobe.CameraRaw      
    0x00000001279ec791 EntryFM + 2523937
    2   com.adobe.CameraRaw      
    0x0000000127a1eaa3 EntryFM + 2729523
    3   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    4   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 38:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib   
    0x00007fff86d78bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff90a0e274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff87646bae TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff875d928a TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8761dfd1 MPWaitOnQueue + 181
    5   com.adobe.CameraRaw      
    0x00000001276e86c9 0x12749b000 + 2414281
    6   com.adobe.CameraRaw      
    0x00000001276e7920 0x12749b000 + 2410784
    7   com.apple.CoreServices.CarbonCore
    0x00007fff8761ee36 PrivateMPEntryPoint + 58
    8   libsystem_c.dylib        
    0x00007fff90a0a8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff90a0db75 thread_start + 13

    Hi again,
    We found the solution. I trie to give some details, if some other folks have a similar problem, perhaps they can find their solution with everything discussed in this topic.
    All this was not working, after trying it several times:
         Disk Utility> Repair Disk & Repair Permissions
         Cocktail OSX (clear all caches)
         Reboot and test
         delete all printers
         then look for a CS6 cleaner like http://www.adobe.com/support/contact/cscleanertool.html
         rebuild diskstructure and filestructure with several utilities like Techtool, Onyx.
    We could not uninstall the complete Photoshop cs5 only, because in case of uninstalling the whole Mastercollection, this is much to much work to reinstall all of the extension from Dreamweaver which have to be activated and installed one by one.
    What has been working is:
          TRY a New User Account (to rule out User preference/settings) !!!
    So this gave us un idea:
    Compare the library of both USER-ACCOUNTS : "ALICE" and the new one we called "TEST".
    Then we RENAMED the following folders in the /USER/LIBRARY: "Caches", "Recent Servers", "Saved Application State" and crated a new folder with the same name (we deleted it after, in case there will be some problems to restore the old ones)
    We put all the INVISIBLE FILES and FOLDERS present in the USER folder which names are beginning with a .dot, like .filename (e.g.: ".adobe", ".bash_history", ".BridgeCache", etc.) into another folder which we are going to delete later on.
    Finally we deleted all files "suspected" not to be there in the ALICE user account, in comparision to the TEST USER ACCOUNT.
    And "miracle": Everything is working again, after 2 days of searching…
    Thanks to everyone of you.
    Best regards,
    Alice

  • Photoshop CS6 won't launch. Unexpected and unrecoverable problem.

    I am unable to launch Photoshop CS6 on my 2012 Macbook Pro running OSX Mavericks.
    Everytime I attempt to launch it I get a message saying "An unexpected and unrecoverable problem has occurred. Photoshop will now exit."
    I have already reset the application preferences using the keyboard shortcut on launch and manually by deleting it in my Library folder which has made no difference.
    I am able to launch it under a different user which suggests that it is something to do with some other software installed perhaps?
    Below is my crash report. Any ideas? Thanks in advance.
    Process:    
    Adobe Photoshop CS6 [15226]
    Path:       
    /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier: 
    com.adobe.Photoshop
    Version:    
    13.0.0 (20120315.r.428)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [170]
    Responsible:
    Adobe Photoshop CS6 [15226]
    User ID:    
    501
    Date/Time:  
    2014-03-18 10:17:49.496 +0000
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  D907E7DA-D1A4-E8AD-1082-F253AC25CFE1
    Sleep/Wake UUID: D31012F7-3820-4486-8A63-00A5637FECC0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000000000000c
    VM Regions Near 0xc:
    -->
    __TEXT            
    0000000100000000-000000010333d000 [ 51.2M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libdyld.dylib            
    0x00007fff84aaaaff NSVersionOfRunTimeLibrary + 127
    1   com.apple.AppKit         
    0x00007fff8135aeac NSUseActiveDisplayForMainScreenDefaultValueFunction + 78
    2   com.apple.AppKit         
    0x00007fff81320a88 _NSGetBoolAppConfig + 202
    3   com.apple.AppKit         
    0x00007fff8135abc8 +[NSScreen mainScreen] + 93
    4   com.apple.AppKit         
    0x00007fff8135d752 -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 350
    5   com.apple.AppKit         
    0x00007fff815e65d0 -[NSPanel _initContent:styleMask:backing:defer:contentView:] + 51
    6   com.apple.AppKit         
    0x00007fff8135d5e8 -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    7   com.apple.AppKit         
    0x00007fff815e6583 -[NSPanel initWithContentRect:styleMask:backing:defer:] + 78
    8   com.adobe.Photoshop      
    0x00000001003b811a 0x100000000 + 3899674
    9   com.adobe.Photoshop      
    0x00000001003b8677 0x100000000 + 3901047
    10  com.adobe.Photoshop      
    0x00000001005d6f62 boost::system::system_error::what() const + 59746
    11  com.adobe.Photoshop      
    0x000000010040bad0 0x100000000 + 4242128
    12  com.adobe.Photoshop      
    0x000000010040cab0 0x100000000 + 4246192
    13  com.adobe.Photoshop      
    0x0000000100035262 0x100000000 + 217698
    14  com.adobe.Photoshop      
    0x0000000100035582 0x100000000 + 218498
    15  com.adobe.Photoshop      
    0x0000000100035d44 0x100000000 + 220484
    16  com.adobe.Photoshop      
    0x0000000100d2061b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 5022907
    17  com.adobe.Photoshop      
    0x0000000101948c4e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17771246
    18  com.adobe.Photoshop      
    0x0000000100bba808 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3557032
    19  com.adobe.Photoshop      
    0x0000000100c51f73 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4177427
    20  com.adobe.Photoshop      
    0x00000001007b045b boost::system::system_error::what() const + 1998427
    21  com.adobe.Photoshop      
    0x00000001007b0999 boost::system::system_error::what() const + 1999769
    22  com.adobe.Photoshop      
    0x000000010054b24c 0x100000000 + 5550668
    Thread 1:
    0   libsystem_kernel.dylib   
    0x00007fff8e013e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff84887f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8488afb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8e014662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff8d98143d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff8d981152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff8e013e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff84887f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8488afb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff8e013e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff84887f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8488afb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x00007fff8e00fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8e00ed18 mach_msg + 64
    2   libsystem_kernel.dylib   
    0x00007fff8e004a8c _kernelrpc_mach_port_get_set_status + 101
    3   com.apple.CoreFoundation 
    0x00007fff80b2ccf5 __CFRunLoopModeDeallocate + 133
    4   com.apple.CoreFoundation 
    0x00007fff80a735d8 CFRelease + 424
    5   com.apple.CoreFoundation 
    0x00007fff80a826c8 __CFBasicHashDrain + 408
    6   com.apple.CoreFoundation 
    0x00007fff80a735d8 CFRelease + 424
    7   com.apple.CoreFoundation 
    0x00007fff80b2c6b2 __CFRunLoopDeallocate + 242
    8   com.apple.CoreFoundation 
    0x00007fff80a735d8 CFRelease + 424
    9   com.apple.CoreFoundation 
    0x00007fff80b2c104 __CFTSDFinalize + 100
    10  libsystem_pthread.dylib  
    0x00007fff8488a5af _pthread_tsd_cleanup + 182
    11  libsystem_pthread.dylib  
    0x00007fff84887479 _pthread_exit + 111
    12  libsystem_pthread.dylib  
    0x00007fff848868a4 _pthread_body + 149
    13  libsystem_pthread.dylib  
    0x00007fff8488672a _pthread_start + 137
    14  libsystem_pthread.dylib  
    0x00007fff8488afc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff8e013716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff84888c3b _pthread_cond_wait + 727
    2   MultiProcessor Support   
    0x000000010d0d70f3 main + 8403
    3   MultiProcessor Support   
    0x000000010d0d71b0 main + 8592
    4   MultiProcessor Support   
    0x000000010d0f3f50 main + 126768
    5   libsystem_pthread.dylib  
    0x00007fff84886899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8488672a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8488afc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff8e013716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff84888c3b _pthread_cond_wait + 727
    2   MultiProcessor Support   
    0x000000010d0d70f3 main + 8403
    3   MultiProcessor Support   
    0x000000010d0d71b0 main + 8592
    4   MultiProcessor Support   
    0x000000010d0f3f50 main + 126768
    5   libsystem_pthread.dylib  
    0x00007fff84886899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8488672a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8488afc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff8e013716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff84888c3b _pthread_cond_wait + 727
    2   MultiProcessor Support   
    0x000000010d0d70f3 main + 8403
    3   MultiProcessor Support   
    0x000000010d0d71b0 main + 8592
    4   MultiProcessor Support   
    0x000000010d0f3f50 main + 126768
    5   libsystem_pthread.dylib  
    0x00007fff84886899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8488672a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8488afc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000107  rcx: 0x0000000000000107  rdx: 0x0000000000000107
      rdi: 0x0000000000000107  rsi: 0x00007fff84aace33  rbp: 0x00007fff5fbfd990  rsp: 0x00007fff5fbfd960
       r8: 0x000000000000006c   r9: 0x00000000000008e0  r10: 0x0000600000059ae0  r11: 0x00007fff704a0001
      r12: 0x0000000000000012  r13: 0x0000000000000012  r14: 0x0000000000000000  r15: 0x00007fff81d15715
      rip: 0x00007fff84aaaaff  rfl: 0x0000000000010206  cr2: 0x000000000000000c
    Logical CPU:
    3
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x100000000 -   
    0x10333cfff +com.adobe.Photoshop (13.0.0 - 20120315.r.428) <6A87A703-3170-CA73-8C77-35C282C4E264> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    0x1039bf000 -   
    0x1039ebff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
    0x103a02000 -   
    0x103a10ff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x103a24000 -   
    0x103a2afff  org.twain.dsm (1.9.5 - 1.9.5) <E614CAAE-7B01-348B-90E4-DB3FD3D066A6> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103a32000 -   
    0x103a4cff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x103a55000 -   
    0x103a59fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x103a60000 -   
    0x103c6efff +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x103caf000 -   
    0x1040f5ff7 +com.adobe.MPS (AdobeMPS 5.8.0.19463 - 5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x104171000 -   
    0x1044caff7 +com.adobe.AGM (AdobeAGM 4.26.17.19243 - 4.26.17.19243) <E96C804B-158B-D4A2-9A64-482F9ADC29D0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x104533000 -   
    0x104894fef +com.adobe.CoolType (AdobeCoolType 5.10.31.19243 - 5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1048e1000 -   
    0x104909ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <9BDD08A8-2DD8-A570-7A7B-EDAA7097D61B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x104910000 -   
    0x10493cfff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x10495f000 -   
    0x104aacff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/wrservices.framework/Versions/A/WRServices
    0x104b20000 -   
    0x104b8ffef +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <924155A9-D00E-B862-C490-5099BA70B978> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x104bb6000 -   
    0x104c0ffff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <BC353D4E-1AE2-3FB5-D3EE-81A09C0C4328> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104caf000 -   
    0x104d36ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <5FCA15B4-F721-09C3-B412-1F86D9D7DE9E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x104d9b000 -   
    0x104db6ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <BB7B342A-8CBC-4B73-58A2-9B062F590EBC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x104dd0000 -   
    0x10500dfff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <6839CFB1-74EE-B205-7D82-ABC5428E0810> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x10510c000 -   
    0x105285fff +com.adobe.ACE (AdobeACE 2.19.18.19243 - 2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105298000 -   
    0x1052b7fff +com.adobe.BIB (AdobeBIB 1.2.02.19243 - 1.2.02.19243) <B7D7EE28-D604-2989-B099-62AEF4885C21> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1052be000 -   
    0x1053a2fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x1053b3000 -   
    0x105478fff +com.adobe.JP2K (2.0.0 - 2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobejp2k.framework/Versions/A/AdobeJP2K
    0x1054c5000 -   
    0x1054c9ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x1054cf000 -   
    0x10554dfff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x10555e000 -   
    0x1055beff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x1055c8000 -   
    0x105b20fef +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/Cg.framework/Cg
    0x10617d000 -   
    0x1061ebfef +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x10623f000 -   
    0x106264ffe +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x10629f000 -   
    0x1062a3ff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x1062a9000 -   
    0x106459fef +com.adobe.PlugPlug (3.0.0.383 - 3.0.0.383) <908DBB12-D2AC-1844-BD2A-F1C483424917> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106510000 -   
    0x106530fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <DC3301F2-FC6E-70C7-3927-B0DD024210D6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
    0x10654a000 -   
    0x106607fff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x106651000 -   
    0x1066fffef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x10673c000 -   
    0x106836fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1068da000 -   
    0x106b23fe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x106f39000 -   
    0x106f3bff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x106ff7000 -   
    0x106ff8fff  libCyrillicConverter.dylib (61) <AA2B224F-1A9F-30B9-BE11-633176790A94> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x108607000 -   
    0x108623fff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x108628000 -   
    0x108649ff7  libKoreanConverter.dylib (61) <22EEBBDB-A2F2-3985-B9C7-53BFE2B02D08> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x10864e000 -   
    0x10865dfff  libSimplifiedChineseConverter.dylib (61) <F5827491-A4E3-3471-A540-8D1FE241FD99> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x108661000 -   
    0x108673fff  libTraditionalChineseConverter.dylib (61) <A182514D-426F-3D5F-BA69-4C4A4680ECB8> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1087a7000 -   
    0x1087a7fff +Enable Async IO (???) <F56F1FB2-9CF1-19A8-0D14-885A652B19B7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x1087ab000 -   
    0x1087f1fe7 +com.adobe.pip (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
    0x10ce10000 -   
    0x10ce13fff +FastCore (???) <29AAF151-6CC4-28C5-68B8-0F6600A20435> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x10cf9f000 -   
    0x10d00bfff +MMXCore (???) <B9B6C7FB-CE56-8F6F-664E-DFCBBC5E3ADE> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x10d092000 -   
    0x10d117fff +MultiProcessor Support (???) <467BB668-E9DD-60F4-CAAD-768A98174734> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x7fff6bfa2000 -
    0x7fff6bfd5817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff8033e000 -
    0x7fff80350ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x7fff805f3000 -
    0x7fff806b7ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff806b8000 -
    0x7fff806befff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x7fff806bf000 -
    0x7fff806e7ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff806e8000 -
    0x7fff806f2ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff806f3000 -
    0x7fff806f8fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff806f9000 -
    0x7fff80784fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
    0x7fff80785000 -
    0x7fff807b1fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x7fff80847000 -
    0x7fff80859fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x7fff8085a000 -
    0x7fff8097cff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff8097d000 -
    0x7fff809e4ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff809e5000 -
    0x7fff809e8fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff809e9000 -
    0x7fff80a18fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff80a19000 -
    0x7fff80a1dfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x7fff80a42000 -
    0x7fff80a59ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x7fff80a5a000 -
    0x7fff80c3ffff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff80c90000 -
    0x7fff810defff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff810df000 -
    0x7fff810e1fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff81138000 -
    0x7fff811a7ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x7fff811a8000 -
    0x7fff81203ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x7fff8120d000 -
    0x7fff81214ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff81215000 -
    0x7fff81220ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff81221000 -
    0x7fff8123aff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff812d9000 -
    0x7fff8131bff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff8131c000 -
    0x7fff81e92fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8269d000 -
    0x7fff82726ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff827dd000 -
    0x7fff8281cfff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff82837000 -
    0x7fff82b0bfc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x7fff82b0c000 -
    0x7fff82b0dff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x7fff82ba1000 -
    0x7fff82ba5ff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
    0x7fff82ba6000 -
    0x7fff82c09ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff82f6b000 -
    0x7fff82f86ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff82fe5000 -
    0x7fff82fedfff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff82fee000 -
    0x7fff83010fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff83108000 -
    0x7fff831b8ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x7fff831b9000 -
    0x7fff831d4ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff831d5000 -
    0x7fff83234fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff83235000 -
    0x7fff83323fff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff83324000 -
    0x7fff8333dff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff8333e000 -
    0x7fff8334bfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff837c4000 -
    0x7fff837dfff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x7fff837e0000 -
    0x7fff838b1fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x7fff838ec000 -
    0x7fff83974ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff83b63000 -
    0x7fff83b71fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x7fff83b8f000 -
    0x7fff83c95ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff83cbd000 -
    0x7fff83ccaff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff83cee000 -
    0x7fff83d53ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff83d6c000 -
    0x7fff83d6cffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff83d6d000 -
    0x7fff83e38fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x7fff83e4c000 -
    0x7fff83ed5fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x7fff83ed6000 -
    0x7fff83f24fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff83f27000 -
    0x7fff8425dfff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff84265000 -
    0x7fff84349fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff84357000 -
    0x7fff8436dfff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x7fff8437e000 -
    0x7fff843a3ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff843a4000 -
    0x7fff843adff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff843c1000 -
    0x7fff843c3fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff843c4000 -
    0x7fff843eeff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
    0x7fff843ef000 -
    0x7fff843f7ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x7fff843f8000 -
    0x7fff843f9fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff843fa000 -
    0x7fff843ffff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff84880000 -
    0x7fff84884ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff84885000 -
    0x7fff8488cff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff8488d000 -
    0x7fff84894fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff84895000 -
    0x7fff8489dff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x7fff8489e000 -
    0x7fff848a8ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
    0x7fff848a9000 -
    0x7fff848ddfff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
    0x7fff84966000 -
    0x7fff84a37ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff84a90000 -
    0x7fff84aa8ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x7fff84aa9000 -
    0x7fff84aacff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff84aad000 -
    0x7fff84ab0fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x7fff84ab1000 -
    0x7fff84ab2ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff84ab3000 -
    0x7fff84ab4ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
    0x7fff84ab5000 -
    0x7fff84ab5fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff84ab6000 -
    0x7fff84d60ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x7fff84dc4000 -
    0x7fff84dc4fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff84dc5000 -
    0x7fff851a6ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x7fff851a7000 -
    0x7fff851bfff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x7fff851c0000 -
    0x7fff851c2fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x7fff851d5000 -
    0x7fff851e5ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x7fff85217000 -
    0x7fff8521cfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff8525e000 -
    0x7fff85282ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff85298000 -
    0x7fff8529dff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff8529e000 -
    0x7fff852a8ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x7fff852a9000 -
    0x7fff8531cfff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff85394000 -
    0x7fff85396fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff85397000 -
    0x7fff855f8fff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x7fff855f9000 -
    0x7fff85615fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff856a9000 -
    0x7fff856abffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
    0x7fff856ac000 -
    0x7fff85738ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x7fff85757000 -
    0x7fff85795ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff857ad000 -
    0x7fff857d6fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x7fff85825000 -
    0x7fff85978ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff85979000 -
    0x7fff85dacffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff85dad000 -
    0x7fff85e9eff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff85e9f000 -
    0x7fff85eabff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff85ecb000 -
    0x7fff85ed8ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff85ed9000 -
    0x7fff85ee5ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x7fff85ee6000 -
    0x7fff85ef5ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x7fff85ef6000 -
    0x7fff85f3dff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff85f3e000 -
    0x7fff86025ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff86032000 -
    0x7fff86033fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x7fff8604e000 -
    0x7fff8604eff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff86067000 -
    0x7fff86091ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x7fff860d1000 -
    0x7fff860deff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff860df000 -
    0x7fff8610eff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8610f000 -
    0x7fff86a2eaf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff86ad2000 -
    0x7fff86b0aff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x7fff86b0b000 -
    0x7fff86b34ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff86b35000 -
    0x7fff86b39ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8704a000 -
    0x7fff87095fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff87110000 -
    0x7fff87113fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff87114000 -
    0x7fff8714ffff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff87150000 -
    0x7fff871b6fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8720c000 -
    0x7fff87213ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff8721e000 -
    0x7fff87227ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff87228000 -
    0x7fff87230ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff87231000 -
    0x7fff87233ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x7fff873cf000 -
    0x7fff876cdfff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff87756000 -
    0x7fff8776dff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x7fff8776e000 -
    0x7fff8776efff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff877f1000 -
    0x7fff877f1fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff877f2000 -
    0x7fff877f3ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff877f4000 -
    0x7fff87841ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x7fff87842000 -
    0x7fff87873fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff87a35000 -
    0x7fff87a6affc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff87a6b000 -
    0x7fff87ab7ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff87acf000 -
    0x7fff87ad7ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff87ad8000 -
    0x7fff87dc2fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x7fff87eff000 -
    0x7fff87f05ff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff87f06000 -
    0x7fff87f10fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff87f11000 -
    0x7fff87f22ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff87fa2000 -
    0x7fff87ff0fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff87ff1000 -
    0x7fff8803afff  com.apple.CoreMedia (1.0 - 1273.49) <D91EC90A-BFF1-300D-A353-68001705811C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8803b000 -
    0x7fff880a5ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff880a6000 -
    0x7fff880d5fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff88182000 -
    0x7fff8821dfff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x7fff8822e000 -
    0x7fff88275fff  libFontRegi

    First, you haven't installed the CS6 updates, and should.
    But that crash is in OS code, and it appears that your OS install might be corrupted.

  • Need help with XML response to refresh document with context and prompts

    I've been working with the Restful api for a few weeks now and have been able to figure out most of what I need to automate testing of our reports. However, one task that I have not been able to figure out is how to refresh a document that contains both a context and two prompts for dates.
    Here is what I have tried, and what the API responds with.
    1) I queried the API for this document's parameters using the following call after logging in -
    headers = {:accept=>'application/xml', :content_type=>'application/xml', :x_sap_logontoken=>@token}
    url = "http://our.url.net:6405/biprws/raylight/v1/documents/12345/parameters"
    RestClient.get(url, headers)
    The response from the API is:
    <parameters>
        <parameter dpId="DP0" type="context" optional="false">
            <id>0</id>
            <technicalName>cQuery 1</technicalName>
            <name>Select a context</name>
            <answer type="Text" constrained="true">
                <info cardinality="Single">
                    <lov partial="false">
                        <values>
                            <value id="CTX_1">LOAN</value>
                            <value id="CTX_9">LOAN_APPLICATION</value>
                        </values>
                    </lov>
                    <values>
                        <value id="CTX_1">LOAN</value>
                        <value id="CTX_9">LOAN_APPLICATION</value>
                    </values>
                    <previous>
                        <value id="CTX_9">LOAN_APPLICATION</value>
                    </previous>
                </info>
                <values>
                    <value id="CTX_9">LOAN_APPLICATION</value>
                </values>
            </answer>
        </parameter>
    </parameters>
    2) This tells me I need to supply a context, so I then replace my RestClient.get call with a RestClient.put call with the following payload:
    <parameters>
         <parameter>
                <id>0</id>
                <answer>
                      <values>
                            <value id=\"CTX_9\"/>
                      </values>
                </answer>
          </parameter>
    </parameters>
    3) This satisfies the context portion of the refresh. The API replies with the following response, telling me I need to answer two prompts -
    <parameters>
         <parameter dpId=\"DP0\" type=\"prompt\" optional=\"false\">
              <id>1</id>
              <technicalName>psEnter value(s) for Start Date of Application Received Date</technicalName>
              <name>Enter value(s) for Start Date of Application Received Date</name>
               <answer type=\"DateTime\" constrained=\"false\">\
                    <info cardinality=\"Single\"/>
               </answer>
         </parameter>
         <parameter dpId=\"DP0\" type=\"prompt\" optional=\"false\">
                <id>2</id>
                <technicalName>psEnter value for End Date of Application Received Date</technicalName>
                <name>Enter value for End Date of Application Received Date</name>\
                <answer type=\"DateTime\" constrained=\"false\">
                    <info cardinality=\"Single\"/>
                </answer>
          </parameter>
    </parameters>
    4) Here is where I am having problems. I have tried all kinds of permutations of the below payload/response body. All I ever get from the API is a 400 - BadResponse error.
    <parameters>
         <parameter>
              <id>0</id>
              <answer>
                   <values>
                        <value id=\"CTX_9\"/>
                   </values>
              </answer>
         </parameter>
    </parameters>
    <parameters>
         <parameter type=\"prompt\">
              <id > 1 </ id>
              <answer type=\"DateTime\">
                   <values>
                        <value>2012-06-11T09:50:54.000-04:00</value>
                   </values>
               </answer>
         </parameter>
         <parameter type=\"prompt\">
               <id > 2 </ id>
               <answer type=\"DateTime\">
                    <values>
                         <value>2014-07-11T09:50:54.967-04:00</value>
                    </values>
               </answer>
         </parameter>
    </parameters>
    I am not very good with XML and the terminology around it, and I haven't received much training around using the Restful API other than the SDK documentation. I have a feeling there is something very basic that Im missing here. What is the correct XML needed in the response body to properly refresh the document?

    If you are more confortable with JSON, Raylight supports it as well.
    Best regards,
    Anthony

  • Message Tracking and Queue Viewer access is denied - Exchange 2010

    Hello,
    I am experiencing Message Tracking and Queue viewer problems on my exchange server.
    Message Tracking problem
    When i run message tracking via EMC or powershell, i receive the following error;
    Failed to connect to the Microsoft Exchange Transport Log Search server on computer "myserver.mydomain.com.br". Verify that a valid computer name was used and the Microsoft Exchange Transport Log Search service is started on the target computer. The
    error message is: "Access is denied".
    Exchange Transport Log Search service is confirmed running and have tried by restarting the service
    Logon user is a member of Domain Admins, Enterprise Admins and Exchange Organization Administrators
    Message Tracking Logs are generated properly
    Queue Viewer problem
    When i run Queue viewer, i receive the following error;
    The Queue Viewer operation on computer "myserver.mydomain.com.br" has failed with exception. The error message is: Access is denied. It was running command.............................................................
    My server information are as follow;
    4 Exchange Server 2010 sp3
    2 Mailbox Server and 2 Hub/CAS
    Mail-flow is working fine
    What should I grant permission for a group of users can have access to the Message Tracking ?
    Regards,

    Hi!
    The group rule was created as described below. The error persists!
     [PS] C:\Windows\system32>Get-RoleGroup "Exchange Access Message Tracking" | fl
    RunspaceId                  : 4229f35d-90f1-4c4e-822d-387979921052
    ManagedBy                   : {bancobmg.com.br/Users/Raphael Henrique Duarte Campos}
    RoleAssignments             : {Message Tracking-Exchange Access Message Tracking}
    Roles                       : {Message Tracking}
    DisplayName                 :
    ExternalDirectoryObjectId   :
    Members                     : {bancobmg.com.br/Users/Raphael Henrique Duarte Campos}
    SamAccountName              : Exchange Access Message Tracking
    Description                 :
    RoleGroupType               : Standard
    LinkedGroup                 :
    Capabilities                : {}
    LinkedPartnerGroupId        :
    LinkedPartnerOrganizationId :
    IsValid                     : True
    ExchangeVersion             : 0.10 (14.0.100.0)
    Name                        : Exchange Access Message Tracking
    DistinguishedName           : CN=Exchange Access Message Tracking,OU=Microsoft Exchange Security Groups,OU=Global,DC=ba
                                  ncobmg,DC=com,DC=br
    Identity                    : bancobmg.com.br/Global/Microsoft Exchange Security Groups/Exchange Access Message Trackin
                                  g
    Guid                        : 0957152d-2073-4f75-b40e-63f45eb20f67
    ObjectCategory              : bancobmg.com.br/Configuration/Schema/Group
    ObjectClass                 : {top, group}
    WhenChanged                 : 06/02/2014 16:25:26
    WhenCreated                 : 06/02/2014 16:25:26
    WhenChangedUTC              : 06/02/2014 18:25:26
    WhenCreatedUTC              : 06/02/2014 18:25:26
    OrganizationId              :
    OriginatingServer           : bmg190.bancobmg.com.br
    [PS] C:\Windows\system32>Get-ManagementRoleAssignment "Message Tracking-Exchange Access Message Tracking" | fl
    RunspaceId                   : 4229f35d-90f1-4c4e-822d-387979921052
    User                         : bancobmg.com.br/Global/Microsoft Exchange Security Groups/Exchange Access Message Tracki
                                   ng
    AssignmentMethod             : Direct
    Identity                     : Message Tracking-Exchange Access Message Tracking
    EffectiveUserName            : All Group Members
    AssignmentChain              :
    RoleAssigneeType             : RoleGroup
    RoleAssignee                 : bancobmg.com.br/Global/Microsoft Exchange Security Groups/Exchange Access Message Tracki
                                   ng
    Role                         : Message Tracking
    RoleAssignmentDelegationType : Regular
    CustomRecipientWriteScope    :
    CustomConfigWriteScope       :
    RecipientReadScope           : Organization
    ConfigReadScope              : OrganizationConfig
    RecipientWriteScope          : Organization
    ConfigWriteScope             : OrganizationConfig
    Enabled                      : True
    RoleAssigneeName             : Exchange Access Message Tracking
    IsValid                      : True
    ExchangeVersion              : 0.11 (14.0.550.0)
    Name                         : Message Tracking-Exchange Access Message Tracking
    DistinguishedName            : CN=Message Tracking-Exchange Access Message Tracking,CN=Role Assignments,CN=RBAC,CN=BANC
                                   O BMG SA,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=bancobmg,DC=com,DC=br
    Guid                         : c3768a00-3f36-4532-b586-a06842a85e24
    ObjectCategory               : bancobmg.com.br/Configuration/Schema/ms-Exch-Role-Assignment
    ObjectClass                  : {top, msExchRoleAssignment}
    WhenChanged                  : 06/02/2014 16:25:26
    WhenCreated                  : 06/02/2014 16:25:26
    WhenChangedUTC               : 06/02/2014 18:25:26
    WhenCreatedUTC               : 06/02/2014 18:25:26
    OrganizationId               :
    OriginatingServer            : bmg190.bancobmg.com.br
    How can I identify if there is any setting to be done?
    Thank you!

  • Use message parameters in BAL as searchfilter and other problems

    Hi,
    I have several problems with the using of the function module 'BAL_DSP_LOG_DISPLAY' and 'BAL_DB_SEARCH'.
    1. When I'm filtering the BAL messages to display, I want to filter with a message parameter.
    I'm not able to write the information in the message context! I can't find a sample for this in the documentation.
    2. I want to build the tree of the BAL_DSP_LOG_DISPLAY with information which are not directly in the context. I have a id in the context which has a relation to a table entry the information for the hierarchy of the tree. (Structure is like: name='blabla', lvl1='X', lvl2='X',lvl3=' '). With the read callback I'm just able to get another text.
    Would it be possible to change the context and insert the "Structure" into it temporarily? Or do somebody has another idea/workaround for this problem?
    Thanks and regards,
    Hendrik

    "Yahoo Application State Plugin version 1.0.0.7" might be bad; But it could also be that you have an old version of FF(sometimes old versions don't have good Javascript handling), try downloading the [http://www.mozilla.com/en-US/firefox/firefox.html newest] one.

  • Oracle Streams 'ORA-25215: user_data type and queue type do not match'

    I am trying replication between two databases (10.2.0.3) using Oracle Streams.
    I have followed the instructions at http://www.oracle.com/technology/oramag/oracle/04-nov/o64streams.html
    The main steps are:
    1. Set up ARCHIVELOG mode.
    2. Set up the Streams administrator.
    3. Set initialization parameters.
    4. Create a database link.
    5. Set up source and destination queues.
    6. Set up supplemental logging at the source database.
    7. Configure the capture process at the source database.
    8. Configure the propagation process.
    9. Create the destination table.
    10. Grant object privileges.
    11. Set the instantiation system change number (SCN).
    12. Configure the apply process at the destination database.
    13. Start the capture and apply processes.
    For step 5, I have used the 'set_up_queue' in the 'dbms_strems_adm package'. This procedure creates a queue table and an associated queue.
    The problem is that, in the propagation process, I get this error:
    'ORA-25215: user_data type and queue type do not match'
    I have checked it, and the queue table and its associated queue are created as shown:
    sys.dbms_aqadm.create_queue_table (
    queue_table => 'CAPTURE_SFQTAB'
    , queue_payload_type => 'SYS.ANYDATA'
    , sort_list => ''
    , COMMENT => ''
    , multiple_consumers => TRUE
    , message_grouping => DBMS_AQADM.TRANSACTIONAL
    , storage_clause => 'TABLESPACE STREAMSTS LOGGING'
    , compatible => '8.1'
    , primary_instance => '0'
    , secondary_instance => '0');
    sys.dbms_aqadm.create_queue(
    queue_name => 'CAPTURE_SFQ'
    , queue_table => 'CAPTURE_SFQTAB'
    , queue_type => sys.dbms_aqadm.NORMAL_QUEUE
    , max_retries => '5'
    , retry_delay => '0'
    , retention_time => '0'
    , COMMENT => '');
    The capture process is 'capturing changes' but it seems that these changes cannot be enqueued into the capture queue because the data type is not correct.
    As far as I know, 'sys.anydata' payload type and 'normal_queue' type are the right parameters to get a successful configuration.
    I would be really grateful for any idea!

    Hi
    You need to run a VERIFY to make sure that the queues are compatible. At least on my 10.2.0.3/4 I need to do it.
    DECLARE
    rc BINARY_INTEGER;
    BEGIN
    DBMS_AQADM.VERIFY_QUEUE_TYPES(
    src_queue_name => 'np_out_onlinex',
    dest_queue_name => 'np_out_onlinex',
    rc => rc, , destination => 'scnp.pfa.dk',
    transformation => 'TransformDim2JMS_001x');
    DBMS_OUTPUT.PUT_LINE('Compatible: '||rc);
    If you dont have transformations and/or a remote destination - then delete those params.
    Check the table: SYS.AQ$_MESSAGE_TYPES there you can see what are verified or not
    regards
    Mette

Maybe you are looking for

  • Help with exporting Deski to text file via Web Intelligence

    We are currently converting from BO version 5 to BO XI rev2. I have a report that must be scheduled to a flie in plain text format. I am using a deski report. When I save as to text, the file is fine. When I schedule it in webi, the file seems to be

  • Scheduled Outage Planned for Bug Toolkit on Jan 9th 2011 between 03:00AM -11:00AM PST

    Cisco Bug Toolkit Users There is a scheduled outage planned for Sunday, Jan 9th 2011 between 03:00AM and 11:00AM PST. During this period, Bug Toolkit will be experiencing intermittent outages due to Data Center related enhancements being implemented

  • Cannot finish a sync w/books from overdrive media

    I  recently upgraded my IPOD touch to IOS 5.0.1 and iTunes 10.5.1.42.  I use Overdrive Media Console version 3.2.1.0.  Since upgrading my ipod to IOS 5.0.1 I haven't been able to completely sync a book I've transfered from Overdrive Media.  Part of t

  • WebLogic Server 9.1 and SNMP Agent enabled

    Hello everybody, I have enabled the WebLogic 9.1 SNMP agent but it isn't quite working right. The Sun Management Center software tells me that the WebLogic SNMP Agent (loaded with Halcyon PrimeAlert BEA WebLogic module) is not responding for any of t

  • Oracle 9i Sum() Rounding Error?

    Has anyone encountered problems with the Sum() function rounding the results? Here is the situation and results that I'm observing: We are Priming a new accounting system in preparation for beta testing. This data priming involves importing a number