Inaccurate pen tool / pen tool snaps to undefined point

HELP Adobe! Why is it so that I can't make an accurate point placement when I have turned off all "snap to"-options?! This is driving me crazy! I need to rely on accuracy when working with points in pen tool. Please fix this!

Limilitious,
In cases like this (without seing the video), the first guess is Align to Pixel Grid
You may select everything and then untick Align to Pixel Grid in the Transform pallete, and also untick Align New Objects to Pixel Grid in the flyout options.
You may avoid document types with that as default (RGB for web and the like) or change the default for such documents.

Similar Messages

  • MAGNETIC PEN TOOL, AUTO DELETE ANCHOR POINT.

    MAGNETIC PEN TOOL, AUTO DELETE ANCHOR POINT.
    How would you like the feature to work?
    like pen tool in AI, when clicking out around shape and creating anchor points, ability to hover over previous anchors and click on them to delete them,
    also right click to automatically delete most recent path created , and ability for consecutive right clicks to keep deleting previous segments of anchor and path.
    Why is this feature important to you?
    easier editability on the fly with the magnetic pen tool..

    Many people seem to confuse joining with averaging. Like Ray says, only endpoints can be joined. In your case you don't need to join the points. Select the points you want to have in the same position and Cmd-alt-J, Both, and all the points will hop to the average position.
    Alternatively you can snap an endpoint to an anchor point. Put your cursor on the selected endpoint that you want to move and drag it till it snaps onto the anchor point you're aiming at.

  • When I use the selection tool to move vector points and bend edges, I only see the change in wire frame.

    When I use the selection tool to move vector points and bend edges, I only see the change in wire frame.  Once I commit by letting go of the mouse button, the object does change.  It just previews with a wire frame. I would like to see the preview change on the solid object.  Is there a setting somewhere?
    I sure hope I am explaining this for people to understand .
    Thanks
    Ed

    Hi Ed,
    What do you mean by wire frame??And are you using selection or sub-selection tool since you have mentioned about vector point I doubt if it is sub-selection tool.Could you please attach a video demonstrating the issue where we see the mismatch in the preview and the output, so that we can understand the problem better and try to resolve it.
    Thanks,
    Sangeeta

  • How to Snap to a point to measure it and create a line.

    Hello, i'm new to Illustrator and would like to know how to snap to a point. i have a rectangle and would like to measure the exact distance between the edge of the rectangle to the edge of another rectangle. also, how do i create a line, starting with one end snapped to the edge of another object?
    Thanks guys.

    Ok, how does the rect method actually work? Can you do a step by step process please?? Sorry I am new at it! Still lots to lear.
    Regards,
    908689Ab. Ltd
    STONEY RIDGE BUSINESS CENTRE
    SAM BRIERLEY |  IT/Phones/Security
    41 Royal Vista Dr. N.W. | Calgary Ab. | T3R 0H9
    tel. 403-277-1551 | cell. 587-227-2653 | e.  <mailto:[email protected]> [email protected]

  • Urgent ! help ! Pop-up panel invalidates graph cursor to snap to plot point.

    I used PlotXY in the graph control with cursor attribute of '"sanp to point" and produced a plot. Everything is OK before popup a pop-up panel. After the pop-up panel removed, the cursor can't snap to any point of the plot. I tried "SetPlotAttribute (... ATTR_PLOT_SNAPPABLE, 1)","SetPlotAttribute (..., ATTR_PLOT_ZPLANE_POSITION, 0)", they don't work.  I don't know how to solve this problem. I need your help! Thanks!

    You are using an undocumented data structure for the multiplot. (one x,  two y, e.g. as seen here).
    Each plot needs it's own x!
    If you do the following, things work just fine. (same if you use bundle, of course)
    ... and please add a wait to that while loop. It is actually not even needed. Cursors lock even back in edit mode, of course.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    XYLock.png ‏4 KB

  • Snap vector shape points to pixels

    I'm trying to write a JS script in Photoshop CS5 which will snap all the points in a selected vector layer to the nearest whole pixel.  This is extremely useful when producing artwork for web pages, mobile phone apps etc.
    I've figured out how to obtain the list of vector points (via doc.pathItems[].subPathItems[].pathPoints[]) and it's easy to quantize these values to the nearest integer.  The bit I can't figure out is how to apply the quantized values back to the document.  I've tried simply writing the value into the obtained pathPoints[] object but this seems to be read only and any changes made are not picked up by the document.
    Would anyone have any advice on the last piece of this puzzle?
    The scripting guide has example script for creating a new path (rather than modifying an existing one), so another idea would be to construct a brand new (snapped) path and layer based upon a complete copy of the original, and then delete the original layer.  This seems a bit of a long way round though.

    For the sake of completeness, but at the expense of some readability, here's a version which deals with multiple selected layers.
    The only final issue I have is that my script adds many operations to the history list.  Does anyone know how I can make my whole script a single atomic history step?
    #target photoshop
    // Constants
    var QUANTIZE_PIXELS = 1;    // The number of whole pixels we wish the path points to be quantized to
    // Some helpers
    function cTID(s) { return charIDToTypeID(s); };
    function sTID(s) { return stringIDToTypeID(s); };
    app.bringToFront();
    main();
    // Quantizes all points in the active layers' vector masks to the value specified by QUANTIZE_PIXELS.
    function main()
        // Work in pixels
        var OrigRulerUnits = app.preferences.rulerUnits;
        var OrigTypeUnits = app.preferences.typeUnits;
        app.preferences.rulerUnits = Units.PIXELS;
        app.preferences.typeUnits = TypeUnits.PIXELS;
        // Obtain the action manager indices of all the selected layers
        var SelIndices = GetSelectedLayersIdx();
        if (SelIndices.length == 1)
            // Only a single layer is selected
            QuantizeVectorMaskForActiveLayer(QUANTIZE_PIXELS);
        else
            // More than one layer is selected
            for (var i = 0; i < SelIndices.length; ++i)
                if (MakeActiveByIndex(SelIndices[i], false) != -1)
                    QuantizeVectorMaskForActiveLayer(QUANTIZE_PIXELS);
        // Restore original ruler units
        app.preferences.rulerUnits = OrigRulerUnits;
        app.preferences.typeUnits = OrigTypeUnits;
    function QuantizeVectorMaskForActiveLayer(zQuantizeUnits)
        var doc = app.activeDocument;
        var PathItems = doc.pathItems;
        // Nothing to do if the active layer has no path
        if (PathItems.length == 0)
            return;
        var QuantizedPathInfo = null;
        for (var i = 0; i < PathItems.length; ++i)
            var Path = PathItems[i];
            // It would appear that the path for the selected layer is of kind VECTORMASK.  If so, when does WORKPATH come into play?
            if (Path.kind == PathKind.VECTORMASK)
                // Build a path info structure by copying the properties of this path, quantizing all anchor and left/right points
                var QuantizedPathInfo = BuildPathInfoFromPath(Path, zQuantizeUnits);
                if (QuantizedPathInfo.length > 0)
                    // We've now finished with the original path so it can go
                    Path.remove();
                    // Add our new path to the doc
                    var TempQuantizedPath = doc.pathItems.add("TempQuantizedPath", QuantizedPathInfo);
                    // Convert the new path to a vector mask on the active layer
                    PathtoVectorMask();
                    // Finished with the path
                    TempQuantizedPath.remove();
    // Copies the specified path to a new path info structure, which is then returned.  The function will
    // optionally quantize all points to the specified number of whole units.  Specify zQuantizeUnits = 0
    // if you do not wish to quantize the points.
    function BuildPathInfoFromPath(zInputPath, zQuantizeUnits)
        // The output path will be an array of SubPathInfo objects
        var OutputPathInfo = [];
        // For each subpath in the input path
        for (var SubPathIndex = 0; SubPathIndex < zInputPath.subPathItems.length; ++SubPathIndex)
            var InputSubPath = zInputPath.subPathItems[SubPathIndex];
            var OutputPointInfo = [];   
            // For each point in the input subpath
            var NumPoints = InputSubPath.pathPoints.length;
            for (var PointIndex = 0; PointIndex < NumPoints; ++PointIndex)
                var InputPoint = InputSubPath.pathPoints[PointIndex];
                var InputAnchor = InputPoint.anchor;
                var InputAnchorQ = QuantizePoint(InputAnchor, zQuantizeUnits);
                // Copy all the input point's properties to the output point info
                OutputPointInfo[PointIndex] = new PathPointInfo();
                OutputPointInfo[PointIndex].kind = InputPoint.kind;
                OutputPointInfo[PointIndex].anchor = QuantizePoint(InputPoint.anchor, zQuantizeUnits);
                OutputPointInfo[PointIndex].leftDirection = QuantizePoint(InputPoint.leftDirection, zQuantizeUnits);
                OutputPointInfo[PointIndex].rightDirection = QuantizePoint(InputPoint.rightDirection, zQuantizeUnits);
            // Create the SubPathInfo for our output path, and copy properties from the input sub path
            OutputPathInfo[SubPathIndex] = new SubPathInfo();
            OutputPathInfo[SubPathIndex].closed = InputSubPath.closed;
            OutputPathInfo[SubPathIndex].operation = InputSubPath.operation;
            OutputPathInfo[SubPathIndex].entireSubPath = OutputPointInfo;   
        return OutputPathInfo;
    // Quantizes the specified point to the specified number of whole units
    function QuantizePoint(zPoint, zQuantizeUnits)
        // Check for divide by zero (if zQuantizeUnits == 0 we don't quantize)
        if (zQuantizeUnits == 0)
            return [ zPoint[0], zPoint[1] ];
        else
            return [ Math.round(zPoint[0] / zQuantizeUnits) * zQuantizeUnits, Math.round(zPoint[1] / zQuantizeUnits) * zQuantizeUnits ];
    // Converts the current working path to a vector mask on the active layer.  This function will fail
    // if the active layer already has a vector mask, so you should remove it beforehand.
    function PathtoVectorMask()
        var desc11 = new ActionDescriptor();
        var ref8 = new ActionReference();
        ref8.putClass( cTID("Path") );
        desc11.putReference( cTID("null"), ref8);
        var ref9 = new ActionReference();
        ref9.putEnumerated(cTID("Path"), cTID("Path"), sTID("vectorMask"));
        desc11.putReference(cTID("At  "), ref9);
        var ref10 = new ActionReference();
        ref10.putEnumerated(cTID("Path"), cTID("Ordn"), cTID("Trgt"));
        desc11.putReference(cTID("Usng"), ref10);
        executeAction(cTID("Mk  "), desc11, DialogModes.NO );
    // Make a layer active by its action manager index
    function MakeActiveByIndex(zIndex, zVisible)
        var desc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putIndex(cTID("Lyr "), zIndex)
        desc.putReference(cTID( "null"), ref );
        desc.putBoolean(cTID( "MkVs"), zVisible );
        executeAction(cTID( "slct"), desc, DialogModes.NO );
    // Returns the AM index of the selected layers
    function GetSelectedLayersIdx()
        var selectedLayers = new Array;
        var ref = new ActionReference();
        ref.putEnumerated(cTID('Dcmn'), cTID('Ordn'), cTID('Trgt') );
        var desc = executeActionGet(ref);
        if (desc.hasKey(sTID('targetLayers')))
            desc = desc.getList(sTID('targetLayers'));
            var c = desc.count
            var selectedLayers = new Array();
            for(var i = 0; i < c; ++i)
                selectedLayers.push(desc.getReference(i).getIndex());
        else
            var ref = new ActionReference();
            ref.putProperty(cTID('Prpr'), cTID('ItmI'));
            ref.putEnumerated(cTID('Lyr '), cTID('Ordn'), cTID('Trgt'));
            selectedLayers.push(executeActionGet(ref).getInteger(cTID('ItmI')));
        return selectedLayers;

  • Make the Pen Tool snap

    Hello!
    I've always created my paths in Illustrator, and then imported them to Photoshop, but
    I wanted to give paths a goo in Photoshop but the first hick-up was; how do I created paths with the pen tool
    and make it snap to the pixel grid?
    I've tried both with the regular grid, and with the zoom-to pixel grid, but the Pen Tool won't snap to anything!
    Am I missing something, feels like such a vital feature...?
    Cheers,
    Petter

    Hello,
    Thanks for the answers! I toke a couple of new approaches, but it wasn't exactly what I was looking for...
    I've used Guides before, but then I really need to know what I'm drawing before I draw it
    However, I managed to find a really good solution for me:
    What I did was use FireWorks (which has a great workflow for paths, snapping to everything "out of the box")
    and then save it as a PSD. When I then open it in Photoshop, I can use them as shapes/compund shapes
    and use the Layer Style to put my colours on them!
    Cheers,
    Petter

  • Holding down mouse in Pen tool drops a new point

    I am using the pen tool to trace around an object that has curves. If I click and hold down my mouse for like a second, trying to figure out the best curvature, PS creates a new anchor point right there. This doesn't happen on my PC - only on my Mac. Not surprised there. Does anyone know why this may be happening. I know it seems like a small deal, but it's just another little glitch that seem to pop up more frequently on my Mac vs my PC. Thanks

    Mr. Katz was talking about the fact that there are two tools housed in the toolbox at the pen location: The Pen tool and the Freeform Pen tool. And if you happen to be using the latter, the options bar offers a toggle for magnetic operation. I was just making sure you were using the former.

  • Pen tool keeps deleting anchor point

    when i click on a point. if i want to place a point on top of a point, how do i click on it so it doesn't get deleted?
    thanks

    Many people seem to confuse joining with averaging. Like Ray says, only endpoints can be joined. In your case you don't need to join the points. Select the points you want to have in the same position and Cmd-alt-J, Both, and all the points will hop to the average position.
    Alternatively you can snap an endpoint to an anchor point. Put your cursor on the selected endpoint that you want to move and drag it till it snaps onto the anchor point you're aiming at.

  • Inaccurate Marquee tool

    I've recently upgraded from Photoshop cs3 to cs5.1 and have noticed that the marquee tool's selection is not as accurate as I'd like. For something simple like drawing a selection around a square I could previously do this down to the exact pixel with a single click and drag. My process (while working at 100%) now goes like this:
    i) Choose which bit of the cursor I place in the top left of the square to trace (I use the black inner lines)
    ii) Click and begin dragging and see that the selection in the top left is now 1 pixel down and 1 pixel to the right of where I clicked.
    iii) Drag the selection to the bottom right of the square and align the inner lines of the crosshair
    iv) Release the mouse button. The top left corner now springs back into the originally clicked position (good). The bottom right corner now jumps up to 2 pixels up and 2 pixels left of the actual corner.
    I am left trying to approximate how far past my object corner I overshoot in order for it to be correct when it 'jumps' back. It feels as though I'm getting similar selection errors as if I was working at a random image zoom such as 337%
    Anyone else experiencing this or more importantly know how to remedy it?
    Thanks
    Tech info
    Mac 10.7.3
    Res: 2560 x 1440
    Photoshop 12.1
    Notes
    Jumping problem is the same if 'snap' is turned on or off
    The problem occurs at 100% and is marginally improved at 200% - although I can't get an accurate selection in 10 attempts.
    Also in cs3 the Marquee tool's crosshair was 1 pixel thick and now in cs5.1 it is 3 pixels thick due to the white outline around it, I find this harder to use and unable to switch off.
    Selecting cursors 'precise' in preferences doesn't fix it

    Trevor.Dennis wrote:
    I tried filling a rectangular selection larger than the screen, and duplicating it free hand on another layer, but was one pixel out on two sides.  So I tried again at 200% and it was spot on.
    This sounds like a similar effect, the requirement to zoom into the image in order to place an accurate selection. I've tried this repeatedly and the amount the marquee jumps is different each time, between 1-2 pixels up and to the left.
    I'm trying to cut out many web type graphics which are only a couple of hundred pixels in height/width. Without an accurate selection tool at 100% my workflow is now:
    i) Select Zoom and click three times to get to 400% (At which point selection becomes 90% accurate)
    ii) Make the selection
    iii) Double click the zoom tool to get back to 100% view
    That is an overhead of five clicks which seems a bit long winded. Or I can re-open the file in Photoshop cs3 and select more accurately, which I don't really want to do.
    Does anyone know of an option that can be toggled to make the Marquee tool more accurate or is a jumping selection on release just how it is?

  • Line tool "snap to pixel" option?

    Hello,
    This issue has been bugging me ever since Adobe introduced vector shapes in PS.  Adding the "snap to pixels" option to the shapes has been awesome... but where's the love for the line tool?  I'm still forced to use the marquee tool to make a sharp line 1px line.

    It produces "good" lines, but not pixel pefect lines.  I just tried creating a 1px line at 100% and still the line spilled out of it's pixel.  I've attached what I see.

  • Stopping the free form lasso tool snapping to guides...

    PS CS4 -- Man, this has bugged me a long time, I finally thought I'd find out how to stop it. When I want to make a loop, I want it a curvy loop and not suddenly making rectangle chunk shape into the loop, as it snaps to the guides (that I use to mark bleeds on an illustration). Very annoying, but I don't know how to stop it? Thanks!!

    View > Snap, or View > Snap To > Guides.
    More about snapping and guides here:
    http://help.adobe.com/en_US/Photoshop/11.0/WSfd1234e1c4b69f30ea53e41001031ab64-74bda.html

  • Photoshop CC crashes frequently, with eyedropper tool (white/black/gray point setter in curves)

    I get photoshop crashing all the time, multiple times an hour, regardless of various setting changes, here are a few crash logs. This is not my computer, but i have seen the same error on my laptop as well. It most often(almost always) happens on clicking a point with the eyedropper tool.
    Process:    
    Adobe Photoshop CC [1184]
    Path:       
    /Applications/Foto/*/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Identifier: 
    com.adobe.Photoshop
    Version:    
    14.0.0 (14.0.0.221)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [260]
    Responsible:
    Adobe Photoshop CC [1184]
    User ID:    
    501
    Date/Time:  
    2014-05-04 17:16:18.465 +0100
    OS Version: 
    Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:  16F658DF-6DDB-E551-24AC-6103BF4CA80C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010
    VM Regions Near 0x10:
    -->
    __TEXT            
    0000000100000000-000000010376a000 [ 55.4M] r-x/rwx SM=COW  /Applications/Foto/*/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.Photoshop     
    0x000000010111bbdc 0x100000000 + 17939420
    1   com.adobe.Photoshop     
    0x000000010111912f 0x100000000 + 17928495
    2   com.adobe.Photoshop     
    0x0000000101118f76 0x100000000 + 17928054
    3   com.adobe.Photoshop     
    0x00000001008998a4 0x100000000 + 9017508
    4   com.adobe.Photoshop     
    0x000000010046f64f 0x100000000 + 4650575
    5   com.adobe.Photoshop     
    0x0000000100ca50da 0x100000000 + 13258970
    6   com.adobe.Photoshop     
    0x0000000100ca4ff2 0x100000000 + 13258738
    7   com.adobe.Photoshop     
    0x00000001006bf47b 0x100000000 + 7074939
    8   com.adobe.Photoshop     
    0x00000001000e5ce2 0x100000000 + 941282
    9   com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    10  com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    11  com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    12  com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    13  com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    14  com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    15  com.adobe.Photoshop     
    0x00000001000e58e4 0x100000000 + 940260
    16  com.adobe.Photoshop     
    0x00000001000f5744 0x100000000 + 1005380
    17  com.adobe.Photoshop     
    0x00000001010b1268 0x100000000 + 17502824
    18  com.adobe.Photoshop     
    0x00000001010ad8f4 0x100000000 + 17488116
    19  com.adobe.Photoshop     
    0x00000001000860f3 0x100000000 + 549107
    20  com.adobe.Photoshop     
    0x000000010088ae8d 0x100000000 + 8957581
    21  com.adobe.Photoshop     
    0x000000010008476c 0x100000000 + 542572
    22  com.adobe.Photoshop     
    0x0000000100085ebd 0x100000000 + 548541
    23  com.adobe.Photoshop     
    0x000000010174e285 0x100000000 + 24437381
    24  com.adobe.Photoshop     
    0x000000010174ef9c 0x100000000 + 24440732
    25  com.adobe.Photoshop     
    0x000000010174fcf4 0x100000000 + 24444148
    26  com.apple.AppKit        
    0x00007fff8f301bda forwardMethod + 122
    27  com.apple.AppKit        
    0x00007fff8f301bda forwardMethod + 122
    28  com.apple.AppKit        
    0x00007fff8f305b48 -[NSWindow sendEvent:] + 11296
    29  com.adobe.owl           
    0x0000000103f99aca 0x103f63000 + 223946
    30  com.apple.AppKit        
    0x00007fff8f2a46e4 -[NSApplication sendEvent:] + 2021
    31  com.adobe.Photoshop     
    0x00000001016954cd 0x100000000 + 23680205
    32  com.adobe.Photoshop     
    0x0000000101695fa8 0x100000000 + 23682984
    33  com.apple.AppKit        
    0x00007fff8f0f4b89 -[NSApplication run] + 646
    34  com.adobe.Photoshop     
    0x00000001016966e2 0x100000000 + 23684834
    35  com.adobe.Photoshop     
    0x00000001016979dc 0x100000000 + 23689692
    36  com.adobe.Photoshop     
    0x0000000100088202 0x100000000 + 557570
    37  com.adobe.Photoshop     
    0x00000001002cd8ec 0x100000000 + 2939116
    38  com.adobe.Photoshop     
    0x00000001002cd9c9 0x100000000 + 2939337
    39  com.adobe.Photoshop     
    0x0000000100002cd4 0x100000000 + 11476
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff96342662 kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff904ce43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x00007fff904ce152 _dispatch_mgr_thread + 52
    Thread 2:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 3:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 4:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 5:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 6:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 7:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   MultiProcessor Support  
    0x0000000113feb43b 0x113fa6000 + 283707
    3   MultiProcessor Support  
    0x0000000113feb2f3 0x113fa6000 + 283379
    4   MultiProcessor Support  
    0x000000011400b384 0x113fa6000 + 414596
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff96341a3a __semwait_signal + 10
    1   libsystem_c.dylib       
    0x00007fff8a042dc0 nanosleep + 200
    2   com.adobe.PSAutomate    
    0x00000001391c25b8 0x139080000 + 1320376
    3   com.adobe.PSAutomate    
    0x00000001391a806e 0x139080000 + 1212526
    4   com.adobe.PSAutomate    
    0x00000001391c2155 0x139080000 + 1319253
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 10:: General Background Service
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.Photoshop     
    0x000000010029e75d 0x100000000 + 2746205
    3   com.adobe.Photoshop     
    0x00000001019540e8 0x100000000 + 26558696
    4   com.adobe.Photoshop     
    0x00000001019531dc 0x100000000 + 26554844
    5   com.adobe.Photoshop     
    0x00000001019549ca 0x100000000 + 26560970
    6   com.adobe.Photoshop     
    0x00000001016c1534 0x100000000 + 23860532
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib  
    0x00007fff9633da1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff9633cd18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00007fff8bfd9fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00007fff8bfd95e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00007fff8bfd8f25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit        
    0x00007fff8f2a116e _NSEventThread + 144
    6   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000013ba9b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine    
    0x000000013b8495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine    
    0x000000013ba9b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine    
    0x000000013ba9b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine    
    0x000000013ba9b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000013ba9b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine    
    0x000000013b8495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine    
    0x000000013ba9b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine    
    0x000000013ba9b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine    
    0x000000013ba9b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000013ba9b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine    
    0x000000013b8495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine    
    0x000000013ba9b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine    
    0x000000013ba9b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine    
    0x000000013ba9b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine    
    0x000000013ba9b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine    
    0x000000013b8495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine    
    0x000000013ba9b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine    
    0x000000013ba9b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine    
    0x000000013ba9b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000013ba9b3a0 APXGetHostAPI + 2516240
    3   com.adobe.ape.engine    
    0x000000013bab35ab APXGetHostAPI + 2615067
    4   com.adobe.ape.engine    
    0x000000013ba9b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine    
    0x000000013ba9b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine    
    0x000000013ba9b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine    
    0x000000013ba9b3a0 APXGetHostAPI + 2516240
    3   com.adobe.ape.engine    
    0x000000013bc2dfe3 APXGetHostAPI + 4165971
    4   com.adobe.ape.engine    
    0x000000013ba9b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine    
    0x000000013ba9b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine    
    0x000000013ba9b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 18:: Update Activation Menu Items
    0   libsystem_kernel.dylib  
    0x00007fff96341a3a __semwait_signal + 10
    1   libsystem_c.dylib       
    0x00007fff8a042dc0 nanosleep + 200
    2   com.adobe.Photoshop     
    0x000000010023bf4d 0x100000000 + 2342733
    3   com.adobe.Photoshop     
    0x00000001016c1534 0x100000000 + 23860532
    4   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    5   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    6   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib  
    0x00007fff9634191a __recvfrom + 10
    1   ServiceManager-Launcher.dylib     0x00000001304d81a1 0x1304c0000 + 98721
    2   ServiceManager-Launcher.dylib     0x00000001304d74bc 0x1304c0000 + 95420
    3   ServiceManager-Launcher.dylib     0x00000001304d655e 0x1304c0000 + 91486
    4   ServiceManager-Launcher.dylib     0x00000001304d65cc 0x1304c0000 + 91596
    5   ServiceManager-Launcher.dylib     0x00000001304d11c4 0x1304c0000 + 70084
    6   ServiceManager-Launcher.dylib     0x00000001304d1bde 0x1304c0000 + 72670
    7   ServiceManager-Launcher.dylib     0x00000001304d1aeb 0x1304c0000 + 72427
    8   ServiceManager-Launcher.dylib     0x00000001304d524e 0x1304c0000 + 86606
    9   ServiceManager-Launcher.dylib     0x00000001304d5392 0x1304c0000 + 86930
    10  ServiceManager-Launcher.dylib     0x00000001304d514d 0x1304c0000 + 86349
    11  ServiceManager-Launcher.dylib     0x00000001304d50c6 0x1304c0000 + 86214
    12  ServiceManager-Launcher.dylib     0x00000001304c37d6 0x1304c0000 + 14294
    13  ServiceManager-Launcher.dylib     0x00000001304c79c5 0x1304c0000 + 31173
    14  ServiceManager-Launcher.dylib     0x00000001304d5d2c 0x1304c0000 + 89388
    15  ServiceManager-Launcher.dylib     0x00000001304d7e63 0x1304c0000 + 97891
    16  libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    17  libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    18  libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 20:: ace
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab800 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab9ff TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore    0x00007fff8b57c145 MPWaitOnQueue + 192
    5   com.adobe.CameraRaw     
    0x00000001438c5066 0x143600000 + 2904166
    6   com.adobe.CameraRaw     
    0x00000001438c4d93 0x143600000 + 2903443
    7   com.apple.CoreServices.CarbonCore    0x00007fff8b57c6c3 PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    9   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    10  libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 21:: ace
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab800 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab9ff TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore    0x00007fff8b57c145 MPWaitOnQueue + 192
    5   com.adobe.CameraRaw     
    0x00000001438c5066 0x143600000 + 2904166
    6   com.adobe.CameraRaw     
    0x00000001438c4d93 0x143600000 + 2903443
    7   com.apple.CoreServices.CarbonCore    0x00007fff8b57c6c3 PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    9   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    10  libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 22:: ace
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab800 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab9ff TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore    0x00007fff8b57c145 MPWaitOnQueue + 192
    5   com.adobe.CameraRaw     
    0x00000001438c5066 0x143600000 + 2904166
    6   com.adobe.CameraRaw     
    0x00000001438c4d93 0x143600000 + 2903443
    7   com.apple.CoreServices.CarbonCore    0x00007fff8b57c6c3 PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    9   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    10  libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 23:: ace
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab800 TSWaitOnCondition + 108
    3   com.apple.CoreServices.CarbonCore    0x00007fff8b5ab9ff TSWaitOnConditionTimedRelative + 172
    4   com.apple.CoreServices.CarbonCore    0x00007fff8b57c145 MPWaitOnQueue + 192
    5   com.adobe.CameraRaw     
    0x00000001438c5066 0x143600000 + 2904166
    6   com.adobe.CameraRaw     
    0x00000001438c4d93 0x143600000 + 2903443
    7   com.apple.CoreServices.CarbonCore    0x00007fff8b57c6c3 PrivateMPEntryPoint + 58
    8   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    9   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    10  libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 24:: cr_scratch
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.CameraRaw     
    0x0000000143bd90f1 0x143600000 + 6131953
    3   com.adobe.CameraRaw     
    0x0000000143b7633b 0x143600000 + 5727035
    4   com.adobe.CameraRaw     
    0x00000001439d4c51 0x143600000 + 4017233
    5   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib  
    0x00007fff9633da56 semaphore_wait_trap + 10
    1   libtbb.dylib            
    0x0000000103eb3079 tbb::internal::rml::private_worker::thread_routine(void*) + 441
    2   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    3   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    4   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 32:: Background Save
    0   libsystem_kernel.dylib  
    0x00007fff96341716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9dc3b _pthread_cond_wait + 727
    2   com.adobe.Photoshop     
    0x000000010029e75d 0x100000000 + 2746205
    3   com.adobe.Photoshop     
    0x0000000101779b9a 0x100000000 + 24615834
    4   com.adobe.Photoshop     
    0x0000000101777a19 0x100000000 + 24607257
    5   com.adobe.Photoshop     
    0x00000001016c1534 0x100000000 + 23860532
    6   libsystem_pthread.dylib 
    0x00007fff8be9b899 _pthread_body + 138
    7   libsystem_pthread.dylib 
    0x00007fff8be9b72a _pthread_start + 137
    8   libsystem_pthread.dylib 
    0x00007fff8be9ffc9 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib  
    0x00007fff96341e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9cf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff8be9ffb9 start_wqthread + 13
    Thread 34:
    0   libsystem_kernel.dylib  
    0x00007fff96341e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8be9cf08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x00007fff8be9ffb9 start_wqthread + 13
    Thread 35:
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001435b98b0  rcx: 0x00000000000f4d00  rdx: 0x0000000112249001
      rdi: 0x000000015ccbc058  rsi: 0x0000000112248000  rbp: 0x00007fff5fbfe210  rsp: 0x00007fff5fbfe1e0
       r8: 0x00000001122484d0   r9: 0x000000000800000e  r10: 0x0000000070c2b748  r11: 0x0000000040bce586
      r12: 0x00007fff5fbfe228  r13: 0x000000010834fe50  r14: 0x00007fff5fbfe1e0  r15: 0x0000000000000000
      rip: 0x000000010111bbdc  rfl: 0x0000000000010293  cr2: 0x0000000000000010
    Logical CPU:
    0
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x100000000 -   
    0x103769fe7 +com.adobe.Photoshop (14.0.0 - 14.0.0.221) <259D87CA-0B1D-3AE7-9D5B-B771811859F1> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    0x103ea4000 -   
    0x103ed0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/libtbb.dylib
    0x103eea000 -   
    0x103f09fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/libtbbmalloc.dylib
    0x103f2d000 -   
    0x103f33fff  org.twain.dsm (1.9.5 - 1.9.5) <E614CAAE-7B01-348B-90E4-DB3FD3D066A6> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103f3b000 -   
    0x103f4eff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x103f58000 -   
    0x103f5cfff  com.apple.agl (3.2.3 - AGL-3.2.3) <5358D6CD-D890-3D83-B0F3-1C96C0128430> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x103f63000 -   
    0x10412cff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x10416f000 -   
    0x104708fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x104785000 -   
    0x104a9dfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <4C394C04-92D7-3EE5-B0C2-4C08E14FF224> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x104b06000 -   
    0x104e16ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30665 - 5.13.00.30665) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x104e5e000 -   
    0x104e84fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x104e8c000 -   
    0x104eb8fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
    0x104edc000 -   
    0x10500afff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x105068000 -   
    0x1051acfff +com.adobe.ACE (AdobeACE 2.20.02.30665 - 2.20.02.30665) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1051bf000 -   
    0x1051dcfff +com.adobe.BIB (AdobeBIB 1.2.03.30665 - 1.2.03.30665) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1051e4000 -   
    0x1052d3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x1052e6000 -   
    0x10539fff7 +com.adobe.JP2K (1.2.2 - 1.2.2.29712) <869F46FB-FF39-39CA-B1E3-A13035A48B49> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x1053e9000 -   
    0x1053edff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x1053f4000 -   
    0x105465fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105478000 -   
    0x1054e5fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105518000 -   
    0x105a70fef +com.nvidia.cg (2.2.0006 - 0) /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/Cg.framework/Cg
    0x1060de000 -   
    0x10612dfff +com.adobe.headlights.LogSessionFramework (2.1.2.1756) <BD518257-970F-344A-92B8-B8BE1A8EB4D8> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x106163000 -   
    0x1063d1ff7 +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <3518BD24-6FD8-37C0-A888-EBB9A2957631> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x1064d0000 -   
    0x106612fff +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <5D90BD26-54D5-3479-AEA8-38899114CAF5> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/filter_graph.framework/Versions/A/filter_graph
    0x10672d000 -   
    0x106752ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x10678e000 -   
    0x106790fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x106795000 -   
    0x106e24fef +com.adobe.PlugPlugOwl (4.0.1.34 - 4.0.1.34) <762B5A6D-E532-3EDD-9E8C-6A52F77BF985> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
    0x107432000 -   
    0x1074f0ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.30746) <FD095E6D-90B6-3F27-9D28-A1846207313E> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x107540000 -   
    0x1075ebff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.30746) <D7D4D4AA-EF54-374C-984F-6170846E9C38> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x107630000 -   
    0x10772afe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1077cf000 -   
    0x107928ff7 +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <F6095811-7D5F-3E06-A664-1EB9FBF8C761> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x107976000 -   
    0x107995fff +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <70265390-C20D-3DD2-9117-5AAE34BC1964> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
    0x1079af000 -   
    0x107a14ff7 +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <237759C8-A525-3B4A-8B8D-0344D90F757C> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x107a35000 -   
    0x107dc1ff7 +PatchMatch (1) <F25DC7AF-FF1E-3257-8F8D-A6EA8622089B> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/PatchMatch.framework/Versions/A/PatchMatch
    0x108228000 -   
    0x108297ff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x1084c0000 -   
    0x1084c2ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x10b005000 -   
    0x10b00bff7  libCGXCoreImage.A.dylib (599.21.1) <D66366B5-33BA-3715-9A40-50F0FF5EAE39> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A. dylib
    0x10b024000 -   
    0x10b024feb +cl_kernels (???) <BE76BAC9-80B2-4B51-AC37-E3E7CBE2C7A8> cl_kernels
    0x10b37f000 -   
    0x10b382ffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x10b38a000 -   
    0x10b3a6fff  libJapaneseConverter.dylib (61) <94EF6A2F-F596-3638-A3DC-CF03567D9427> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x10b3ab000 -   
    0x10b3ccff7  libKoreanConverter.dylib (61) <22EEBBDB-A2F2-3985-B9C7-53BFE2B02D08> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x10b3d1000 -   
    0x10b3e0fff  libSimplifiedChineseConverter.dylib (61) <F5827491-A4E3-3471-A540-8D1FE241FD99> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x10b3e4000 -   
    0x10b3f6fff  libTraditionalChineseConverter.dylib (61) <A182514D-426F-3D5F-BA69-4C4A4680ECB8> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x10b3fa000 -   
    0x10b3fbfff  libCyrillicConverter.dylib (61) <AA2B224F-1A9F-30B9-BE11-633176790A94> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x10ec3b000 -   
    0x10ec43ff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x10ec4b000 -   
    0x10ec73ffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x112136000 -   
    0x112174fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Foto/*/Adobe Photoshop CC.app/Contents/Frameworks/updaternotifications.framework/Versions/A/UpdaterNotifications
    0x11219f000 -   
    0

    You are running 14.0.0 and haven't installed any of the updates.
    The current version is 14.2.1 -- please go install the updates.

  • Hand tool changes to article pointer

    I've read that when someone creates a pdf file with an article, this is what causes the Hand Tool to change in appearance and move/zoom the page when you click anywhere. This is one of the most annoying 'features' I've ever come across. I prefer to use the Hand Tool to pull the page exactly where I want it to be, rather than scrolling with the wheel, and every time I click my page jumps and zooms from where I was at. I cannot see how this would be useful in any setting, let alone as a default. Is there any way I can override this? I'm using Adobe Reader 9, not the full pro version.
    This wouldn't be quite so obnoxious, but it zooms the page so large that it requires horizontal scrolling to read it all. If anyone knows an solution, please share!

    Disable the entry 'Make Hand tool read articles' in the preferences of Adobe Reader.

  • Tools related to anchor points are not working, can't add a point to paths or convert a point.

    Having a lot of issues manipulating points on paths in Illustrator CC - this is a fundamental feature of creating vector graphics and it's very annoying I'm paying for this and it's just not working. Eating up a lot of my time simply because I can't select or convert or add the anchor.

    bella,
    Presuming we are not just talking about more or less hidden Anchor Points as in View>Show/Hide Edges/Bounding Box, you may try to start on the following list (5) seems unlikely in this case).
    You may try the following (you may have tried/done some of them already) and see whether it helps (the following is a general list of things you may try when the issue is not in a specific file; 3) and 4) are specifically aimed at possibly corrupt preferences):
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder Other options (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

Maybe you are looking for