Missing Filter Plugins in CS2 - Photoshop

Good evening all, I'm trying to work with an old copy of CS2 photoshop and illustrator. I am unable to use any of the artistic filters in photoshop, that menu item is grayed out, as are several others. I was very confused, then I happened to open the "About Plug-ins" menu item, and I noticed that poster edges, and pallette knife, are not in the list. So I'm thinking somehow the plugs ins have been corrupted, or moved or something. I haven't used the program in several months. Is it possible to upload a new set of filters. Obviously I can reinstall, but I can't find the &*^%$ discs. (I know, I know ...!)
But if anybody has any clues, I'd appreciate it.

c.pfaffenbichler wrote:
Are the images RGB or CMYK?
... or 16-bit?

Similar Messages

  • How to use manifest file in Adobe Photoshop Filter Plugin

    Hi all,
    I am developing the Photoshop Filter plugin using wxWidgets-2.6.2 on PhotoshopSDK CS2 for windowsXP.I am unable to use XP themes in my plugin.Though I have already added the following line in my Plugin .rc file ----->
    2 RT_MANIFEST "Plugin.manifest"
    I have also added the "ISOLATION_AWARE_ENABLED" in the properties.
    But still I am unable to use XP themes in my Plugin. Please Help!!!
    Regards
    Deepesh Negi

    Thanks, that helps.

  • Filter plugin on wxWidgets for Mac's photoshop

    Hi.
    I'm developing a photoshop filter plugin for Mac OS X with XCode.
    And i have a problem with dialogs. Dialogh creates correctly only first time, than dialogs creates without redrawing (it takes input, but main area of dialog is whiteness)
    My source code here:
    #include "Dissolve.h"
    #include "Dialog.h"
    #include "About.h"
    #include "DissolveScripting.h"
    #include "FilterBigDocument.h"
    bool started = false;
    FilterRecord *gFilterRecord = NULL;
    int32 *gDataHandle = NULL;
    int16 *gResult = NULL;
    SPBasicSuite * sSPBasic = NULL;
    Data *gData = NULL;
    Parameters *gParams = NULL;
    class wxDLLApp : public wxApp
    public:
    AboutDialog *dlgAbout;
    public:
    bool OnInit(){
    wxMessageBox(_T("wxDLLApp::OnInit()"));
    dlgAbout = new AboutDialog(NULL, wxID_ANY, _T("About"),wxPoint(200,200), wxSize(446,150), wxSTAY_ON_TOP|wxCLOSE_BOX);
    dlgAbout->ShowModal();
    return true;
    int OnExit(){
    wxMessageBox(_T("wxDLLApp::OnExit()"));
    dlgAbout->Destroy();
    delete dlgAbout;
    return 0;
    DECLARE_EVENT_TABLE()
    //IMPLEMENT_APP_NO_MAIN(wxDLLApp)
    BEGIN_EVENT_TABLE(wxDLLApp, wxApp)
    END_EVENT_TABLE()
    wxPoint offscreenPoint(-5000,-5000);
    void DoAbout(void);
    void DoParameters(void);
    void DoPrepare(void);
    void DoStart(void);
    void DoContinue(void);
    void DoFinish(void);
    DLLExport MACPASCAL void PluginMain(const int16 selector,
    void * filterRecord,
    int32 * data,
    int16 * result)
    gFilterRecord = (FilterRecordPtr)filterRecord;
    gDataHandle = data;
    gResult = result;
    switch (selector)
    case filterSelectorAbout:
    DoAbout();
    break;
    case filterSelectorParameters:
    DoParameters();
    break;
    case filterSelectorPrepare:
    DoPrepare();
    break;
    case filterSelectorStart:
    DoStart();
    break;
    case filterSelectorContinue:
    DoContinue();
    break;
    case filterSelectorFinish:
    DoFinish();
    break;
    default:
    break;
    void DoAbout(void){
    wxDLLApp *pMyApp = new wxDLLApp;
    wxApp::SetInstance(pMyApp);
    int argc = 0;
    char **argv = NULL;
    wxEntryStart(argc, argv);
    wxTheApp->CallOnInit();
    pMyApp->OnExit();
    wxEntryCleanup();
    void DoParameters(void){
    void DoPrepare(void){
    void DoStart(void){
    void DoContinue(void){
    void DoFinish(void){

    [email protected] wrote:
    >...
    Nice to see you back on the forums, Chris. Your expertise has been missed.
    -X

  • HSB/HSL filter plugin won't stay loaded in Photoshop CC

    I downloaded the optional HSB/HSL filter into the Photoshop CC plugins folder per the instructions. However, when I open Photoshop CC, the filter is not available in Other Filters in the Filters menu which is where it's supposed to be. With Photoshop CC closed, I can double-click on the "Optional Multiplugin.8BF" file (that has the HSB/HSL filter). That causes Photoshop CC to open and puts the HSB/HSL filter in Other Folders in the Filters menu. However, if I close Photoshop CC then reopen it, the filter is gone. Yesterday I updated Photoshop CC to verson 14.2.1 but that did not fix the problem.
    Here is where the file is located on my computer:
    Program Files\Adobe\Adobe Photoshop CC (64 bit)\Plug-ins\Optional Plug-ins Win64\Optional Multiplugin.8BF
    Is there some way to load the "Optional Multiplugin.8BF" file so that it stays permanently loaded in Photoshop CC?

    Yes, it turns out you're exactly right. I didn't realize I had a 32 bit version of Photoshop CC. My shortcut in my start menu was pointing to the 32 bit version. I re-pointed it to the 64 bit Photoshop CC and now the filter is where I expect it to be. Thanks for your help.

  • How to handle transparent parts of layers in filter plugin?

    What is the right way to handle layers in a filter plugin so as to preserve the colors at the semi-transparent edges of the opaque parts of a layer?
    It seems the inData my plugin gets from Photoshop already has the image composited (based on the alpha channel) with a white background. So even if I just copy all the RGB and alpha data from inData back to outData, I end up with light-colored edges around the non-transparent parts of the layer. Simply setting inHiPlane=outHiPlane=3 (since all I really want to modify is the RGB data) doesn't seem to work either.

    Chris,
    I'm not sure what you mean by treating it as if there was no transparency. Simply copying the RGBA planes from inData to outData results in those light-colored edges. Likewise if I set inHiPlane=outHiPlane=3 and just copy the RGB planes.
    Can you tell me how to specify how the data should be matted? It seems to default to a white matte. Ideally, I would have thought I'd want to get from inData the color value at each pixel in the layer _before_ any matting is applied, along with the alpha values. Then for example, a red pixel at the edge that's 50% transparent would be RGBA = (255, 0, 0, 127). It seems like that's what my plugin needs to hand back to Photoshop (when I don't modify that pixel), in order for it to be able to correctly matte it against any background. Instead, what I get from inData is (255, 127, 127, 127), which then shows up when I hand it back as a pink pixel of 50% transparency on the edge. Can you tell me what I'm missing here?

  • Filter plugin - Pixels become grey when alpha set below 50 (ish)?

    Hi,
    My filter plugin modifies the alpha channel values of various pixels and I noticed that when an 8 bpc pixel's alpha is set below 50 (or so) that the pixel ends up turning grey, as if the R,G,B values were all set to the same value. Is this Photoshop's behaviour when painting/compositing pixels that are very transparent or am I confused? :-)
    Thanks,
    Neil

    Thanks for your replies.
    My prefs are set to show the transparency checkerboard, and my code is directly modifying the RGBA values of 8 bpc pixels. The '50' I referred to above was the actual alpha channel uint8 value, not a percentage.
    The following is the code I'm using to test with. I put it in the DoFilter() function, at line 401, in the Dissolve sample project and disabled the for loop that iterates over the planes. I'm using the CS2 SDK and am testing with PS CS3.
    I'm testing with a PSD with 2 layers in RGB 8 bpc mode. The background layer is entirely black and I've tried filling the foreground layer with various solid colors to test with. I'm applying the filter to this foreground layer.
    1. With a color of 255,0,0 after applying the filter the new color (in the Info palette, or with the eye dropper) is 40,0,0.
    2. With a color of 0,200,0 the filter changes it to 0,0,0.
    3. With a color of 200,255,0 the filter changes it to 0,40,0.
    4. With a color of 180,215,87 the filter changes it to 215,215,215. This is what made me think it was turning to gray.
    -------- Begin --------
    // Get RGBA interleaved pixel channels
    gFilterRecord->outLoPlane = gFilterRecord->inLoPlane = 0;
    gFilterRecord->outHiPlane = gFilterRecord->inHiPlane = 3;
    // update the gFilterRecord with our latest request
    *gResult = gFilterRecord->advanceState();
    if (*gResult != noErr) return;
    uint8 *pixel = (uint8 *)gFilterRecord->outData;
    const int32 dataRowBytes = gFilterRecord->outRowBytes;
    VRect tileRect = GetOutRect();
    const int32 tileHeight = tileRect.bottom - tileRect.top;
    const int32 tileWidth = tileRect.right - tileRect.left;
    const int32 tileByteWidth = tileWidth * 4;
    for (int32 pixelY = 0; pixelY < tileHeight; ++pixelY)
    for (int32 pixelX = 0; pixelX < tileWidth; ++pixelX)
    pixel += 3; // Skip RGB
    *pixel++ = 40;
    pixel += (dataRowBytes - tileByteWidth);
    -------- End --------
    Thanks,
    Neil

  • What is causing PS CC 2014 to crash when a non-zero *result is returned from a filter plugin?

    Hi All,
    I'm trying to debug a crash in Photoshop after returning from a filter plugin.
    In the case that the filter plugin has “done nothing” or the user has elected not to save the work, the filter plugin sets the value of *result to be -128 or 2. If the plugin has completed successfully and some work has been saved then *result is of course set to 0.
    When *result is set to other than 0, though, Photoshop immediately crashes after the plugin has returned from PluginMain.
    The backtrace of the crashed thread is at the bottom of this message.
    If I alter our filter code so that *result is set to 0, without any other change having been made, there is no crash, which leaves me a bit stumped. Clearly this isn't appropriate, since it results in the new filter layer being created, which the user doesn't want if the filter was cancelled!
    Any suggestions about where to start investigating?
    The sample backtrace below occurs immediately after I return from PluginMain (having been passed a selector of 5) having set *result=2, *data=0.
    Process:               Adobe Photoshop CC 2014 [33126]
    Path:                  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
    Identifier:            com.adobe.Photoshop
    Version:               15.2.2 (15.2.2.310)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Photoshop CC 2014 [33126]
    User ID:               501
    Date/Time:             2015-04-07 17:10:24.957 +0100
    OS Version:            Mac OS X 10.10.2 (14C1514)
    Report Version:        11
    Anonymous UUID:        97353721-6C4A-3788-A7DC-067B7B828CE4
    Sleep/Wake UUID:       60AF0C59-FB9D-43F8-9441-DE0519F0F56E
    Time Awake Since Boot: 500000 seconds
    Time Since Wake:       9800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    terminating with uncaught exception of type photoshop_error: photoshop_exception
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib             0x00007fff8bd14286 __pthread_kill + 10
    1   libsystem_c.dylib                  0x00007fff992a5b53 abort + 129
    2   libc++abi.dylib                    0x00007fff96221a21 abort_message + 257
    3   libc++abi.dylib                    0x00007fff962499b9 default_terminate_handler() + 243
    4   libobjc.A.dylib                    0x00007fff8bf197eb _objc_terminate() + 124
    5   libc++abi.dylib                    0x00007fff962470a1 std::__terminate(void (*)()) + 8
    6   libc++abi.dylib                    0x00007fff96247113 std::terminate() + 51
    7   com.adobe.Photoshop                0x000000010e23209e 0x10e226000 + 49310
    8   com.adobe.Photoshop                0x000000010e826930 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1994480
    9   com.adobe.Photoshop                0x000000010e822c68 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1978920
    10  com.adobe.Photoshop                0x000000010e81cb3e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1954046
    11  com.adobe.Photoshop                0x000000010e823da3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1983331
    12  com.adobe.Photoshop                0x000000010ec91ac5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6627461
    13  com.adobe.Photoshop                0x000000010ec925ca AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6630282
    14  com.adobe.Photoshop                0x000000010e81ca60 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1953824
    15  com.adobe.Photoshop                0x000000010ec8cfc1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6608257
    16  com.adobe.Photoshop                0x000000010ec8d7e1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 6610337
    17  com.adobe.Photoshop                0x000000010e81c4d5 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1952405
    18  com.adobe.Photoshop                0x000000010e823f02 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1983682
    19  com.adobe.Photoshop                0x000000010e8bd1bc AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2611068
    20  com.adobe.Photoshop                0x000000010e82505d AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1988125
    21  com.adobe.Photoshop                0x000000010e827c21 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1999329
    22  com.adobe.Photoshop                0x000000010e9a5421 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3561953
    23  com.adobe.Photoshop                0x000000010e331fd0 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 988320
    24  com.adobe.Photoshop                0x000000010e33a4ec boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1022396
    25  com.adobe.Photoshop                0x000000010e2af68a boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 453466
    26  com.adobe.Photoshop                0x000000010e2b576d boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 478269
    27  com.adobe.Photoshop                0x000000010e2b4981 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 474705
    28  com.adobe.Photoshop                0x000000010e2b07bf boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 457871
    29  com.adobe.Photoshop                0x000000010e2b05a6 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 457334
    30  com.adobe.Photoshop                0x000000010fabbbb4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21479796
    31  com.apple.AppKit                   0x00007fff8f16b608 -[NSApplication run] + 711
    32  com.adobe.Photoshop                0x000000010fabc382 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21481794
    33  com.adobe.Photoshop                0x000000010fabd6f8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21486776
    34  com.adobe.Photoshop                0x000000010e2b0e8f boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 459615
    35  com.adobe.Photoshop                0x000000010e564dce boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3293854
    36  com.adobe.Photoshop                0x000000010e564f29 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3294201
    37  com.adobe.Photoshop                0x000000010e228334 0x10e226000 + 9012
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x00007fff8bd15232 kevent64 + 10
    1   libdispatch.dylib                  0x00007fff9491fa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib             0x00007fff8bd1494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib            0x00007fff8bef640d start_wqthread + 13
    Thread 3:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 4:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 5:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 6:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 7:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   MultiProcessor Support             0x000000011eb7040b 0x11eb29000 + 291851
    2   MultiProcessor Support             0x000000011eb7030b 0x11eb29000 + 291595
    3   MultiProcessor Support             0x000000011eb90844 0x11eb29000 + 424004
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib             0x00007fff8bd0f51a semaphore_wait_trap + 10
    1   libtbb.dylib                       0x0000000113803550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    3   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    4   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib             0x00007fff8bd1448a __semwait_signal + 10
    1   com.adobe.PSAutomate               0x00000001472315f8 0x1470e3000 + 1369592
    2   com.adobe.PSAutomate               0x000000014721705e 0x1470e3000 + 1261662
    3   com.adobe.PSAutomate               0x0000000147231195 0x1470e3000 + 1368469
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib             0x00007fff8bd1494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib            0x00007fff8bef640d start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit                   0x00007fff8f2db33b _NSEventThread + 137
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib             0x00007fff8bd1433a __recvfrom + 10
    1   VulcanMessage5.dylib               0x0000000116750b32 vcfoundation::io::BSDNamedPipe::Read(void*, unsigned long) + 24
    2   VulcanMessage5.dylib               0x000000011674ec40 vcfoundation::io::BufferedReader::InternalRead(char*, long) + 112
    3   VulcanMessage5.dylib               0x000000011674ecae vcfoundation::io::BufferedReader::Read(void*, unsigned long) + 60
    4   VulcanMessage5.dylib               0x00000001167477d0 vcfoundation::io::IVCChannel::ReadFully(void*, unsigned long) + 70
    5   VulcanMessage5.dylib               0x0000000116748262 vcfoundation::io::Serializer::InternalDeserialize() + 30
    6   VulcanMessage5.dylib               0x000000011674816f vcfoundation::io::Serializer::Deserialize() + 9
    7   VulcanMessage5.dylib               0x000000011674d782 vcfoundation::ncomm::Connection::ReadIn() + 28
    8   VulcanMessage5.dylib               0x000000011674d8c6 vcfoundation::ncomm::NCService::ReadResponse(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&, vcfoundation::ncomm::NCService::ConRef&) + 40
    9   VulcanMessage5.dylib               0x000000011674d681 vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&) + 109
    10  VulcanMessage5.dylib               0x000000011674d5fa vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*) + 32
    11  VulcanMessage5.dylib               0x000000011673e32b adobe::vulcan::servicemgr::CSIRequest::Execute() + 53
    12  VulcanMessage5.dylib               0x000000011673f507 adobe::vulcan::servicemgr::RegisterForEventsRequest::Run() + 353
    13  VulcanMessage5.dylib               0x000000011674e2d0 vcfoundation::thread::AbstractThread::Run() + 50
    14  VulcanMessage5.dylib               0x0000000116752523 vcfoundation::thread::Thread::ThreadProc(void*) + 9
    15  libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    16  libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    17  libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 21:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 22:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 23:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 24:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010f98b0fb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20231867
    2   com.adobe.Photoshop                0x000000010ffcd8bb AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26795643
    3   com.adobe.Photoshop                0x000000010ffcbd7b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26788667
    4   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    5   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    6   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    7   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 25:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork                0x00007fff8cdc3c80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation               0x00007fff9a28190a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    8   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    9   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine               0x000000014977c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3a0 APXGetHostAPI + 2516240
    2   com.adobe.ape.engine               0x00000001499e65ab APXGetHostAPI + 2615067
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.ape.engine               0x00000001499ce3a0 APXGetHostAPI + 2516240
    2   com.adobe.ape.engine               0x0000000149b61073 APXGetHostAPI + 4166115
    3   com.adobe.ape.engine               0x00000001499ce4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine               0x00000001499ce51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine               0x00000001499ce649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 32:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib             0x00007fff8bd143fa __select + 10
    1   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    2   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    3   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 33:: General Background Service
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.Photoshop                0x000000010e5346e1 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3095473
    2   com.adobe.Photoshop                0x000000010fdf5358 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24860952
    3   com.adobe.Photoshop                0x000000010fdf4b3b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24858875
    4   com.adobe.Photoshop                0x000000010fdf5cba AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24863354
    5   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    6   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    7   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    8   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 34:: Update Activation Menu Items
    0   libsystem_kernel.dylib             0x00007fff8bd1448a __semwait_signal + 10
    1   com.adobe.Photoshop                0x000000010e4cacd3 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2662819
    2   com.adobe.Photoshop                0x000000010faeac44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21672452
    3   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    4   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    5   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation               0x00007fff9a2f3364 -[NSConnection run] + 152
    6   com.apple.Foundation               0x00007fff9a28190a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    8   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    9   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib             0x00007fff8bd0f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x00007fff8bd0e64f mach_msg + 55
    2   com.apple.CoreFoundation           0x00007fff958cbb34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation           0x00007fff958caffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation           0x00007fff958ca858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation               0x00007fff9a3bf978 -[NSConcreteTask waitUntilExit] + 205
    6   com.adobe.PlugPlugOwl              0x0000000113a1f1c4 -[HtmlEngineMonitor monitorThreadProc] + 99
    7   com.apple.Foundation               0x00007fff9a28190a __NSThread__main__ + 1345
    8   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    9   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    10  libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 37:
    Thread 38:: cr_scratch
    0   libsystem_kernel.dylib             0x00007fff8bd14136 __psynch_cvwait + 10
    1   com.adobe.CameraRaw                0x000000015a990aab 0x15a391000 + 6290091
    2   com.adobe.CameraRaw                0x000000015a9197ab 0x15a391000 + 5801899
    3   com.adobe.CameraRaw                0x000000015a7179f1 0x15a391000 + 3697137
    4   libsystem_pthread.dylib            0x00007fff8bef8268 _pthread_body + 131
    5   libsystem_pthread.dylib            0x00007fff8bef81e5 _pthread_start + 176
    6   libsystem_pthread.dylib            0x00007fff8bef641d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff519d4a58  rdx: 0x0000000000000000
      rdi: 0x000000000000130f  rsi: 0x0000000000000006  rbp: 0x00007fff519d4a80  rsp: 0x00007fff519d4a58
       r8: 0x0000000000000002   r9: 0x00007fff992cfd70  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff519d4be0  r13: 0x00007fff519d5401  r14: 0x00007fff7ad8a300  r15: 0x00007fff519d4ac0
      rip: 0x00007fff8bd14286  rfl: 0x0000000000000206  cr2: 0x00007fff7cfd1fd8
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x10e226000 -        0x112b02fbf +com.adobe.Photoshop (15.2.2 - 15.2.2.310)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
           0x1137f5000 -        0x113825fef +libtbb.dylib (0)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/libtbb.dylib
           0x113848000 -        0x11386dfff +libtbbmalloc.dylib (0)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/libtbbmalloc.dylib
           0x113899000 -        0x113998fff +com.adobe.amtlib (8.0.0.122 - 8.0.0.122)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1139ab000 -        0x1139adff7  com.apple.textencoding.unicode (2.7 - 2.7)  /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1139b2000 -        0x113c72fcf +com.adobe.PlugPlugOwl (5.2.0.54 - 5.2.0.54)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x113f2c000 -        0x113fd7ff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.32401)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x114021000 -        0x1140dffff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.32401)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x114133000 -        0x114139fff  org.twain.dsm (1.9.5 - 1.9.5)  /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x114142000 -        0x114155ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x114160000 -        0x114164fff  com.apple.agl (3.3.0 - AGL-3.3.0)  /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x11416f000 -        0x114369ff7 +com.adobe.owl (AdobeOwl version 5.2.4 - 5.2.4)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1143b2000 -        0x1147a6ff7 +com.adobe.MPS (AdobeMPS 5.8.1.33340 - 5.8.1.33340)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x114826000 -        0x114854fff +VulcanControl.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/VulcanControl.dylib
           0x11488b000 -        0x114bcefff +com.adobe.AGM (AdobeAGM 4.30.41.33308 - 4.30.41.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x114c40000 -        0x114f65ff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.33308 - 5.15.00.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x114fae000 -        0x114fd5ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x114fdf000 -        0x115003ff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.32260 - 3.8.0.32260)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x11502a000 -        0x115159fff +com.winsoft.wrservices (WRServices 8.0.0 - 8.0.0)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1151b7000 -        0x1151b8ff7  libCyrillicConverter.dylib (64)  /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x1151bd000 -        0x11530bff7 +com.adobe.ACE (AdobeACE 2.20.02.33308 - 2.20.02.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x115323000 -        0x115342fff +com.adobe.BIB (AdobeBIB 1.2.03.33308 - 1.2.03.33308)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x11534d000 -        0x115406ff7 +com.adobe.JP2K (1.2.2 - 1.2.2.33078)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x11544e000 -        0x115452ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x11545e000 -        0x115512fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.6 -c 14 - 79.156797)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x1155be000 -        0x115b16fef +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/Cg.framework/Cg
           0x116185000 -        0x116211fff +com.adobe.headlights.LogSessionFramework (7.2.1.3399)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x116259000 -        0x116599fff +com.adobe.AIF (AdobeAIF 2014.0.00 - 2014.0.00)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x1166e6000 -        0x11670fff7 +com.adobe.PDFSettings (AdobePDFSettings 1.04.0 - 1.4)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
           0x11672a000 -        0x11672cfff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x116734000 -        0x116776ff7 +VulcanMessage5.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/VulcanMessage5.dylib
           0x1167bb000 -        0x1168b9ff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.32260 - 3.8.0.32260)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x11696b000 -        0x116ac5fff +com.adobe.linguistic.LinguisticManager (8.0.0 - 20256)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x116b1a000 -        0x116b36ff7 +com.adobe.AIF (AdobeAIF 2014.0.00 - 2014.0.00)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x116b4d000 -        0x116b99fff +com.adobe.AIF (AdobeAIF 2014.0.00 - 2014.0.00)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x116baa000 -        0x116c19ff7 +com.adobe.adobe_caps (adobe_caps 8.0.0.13 - 8.0.0.13)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x116c27000 -        0x116cf2fff +com.adobe.PM (AdbePM 2.2.00.32695 - 2.2.00.32695)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdbePM.framework/Versions/A/AdbePM
           0x11a1d1000 -        0x11a1eefff  libJapaneseConverter.dylib (64)  /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x11a1f3000 -        0x11a215ff7  libKoreanConverter.dylib (64)  /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x11a219000 -        0x11a228fff  libSimplifiedChineseConverter.dylib (64)  /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x11a22c000 -        0x11a23efff  libTraditionalChineseConverter.dylib (64)  /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x11df1b000 -        0x11df1bfef +cl_kernels (???)  cl_kernels
           0x11df29000 -        0x11df29fe7 +cl_kernels (???)  cl_kernels
           0x11df85000 -        0x11dfc4ff7 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 8.0.0.14 - 8.0.0.14)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/updaternotifications.framework/Versions/A/UpdaterNotifications
           0x11e07a000 -        0x11e160fef  unorm8_bgra.dylib (2.4.5)  /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
           0x11e2a8000 -        0x11e2b7fff +com.vertustech.FluidMask3Plugin (3.3.13 - 3.3.13)  /Applications/Fluid Mask 3.app/Contents/MacOS/Fluid Mask 3.plugin/Contents/MacOS/Fluid Mask 3
           0x11e5d0000 -        0x11e5d4fff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25)  /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
           0x11ea78000 -        0x11ea7bfff +FastCore (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x11ea82000 -        0x11eab1fff +MMXCore (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
           0x11eb29000 -        0x11ebb1fff +MultiProcessor Support (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x124c9d000 -        0x124d49fff  ColorSyncDeprecated.dylib (442)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x12501f000 -        0x12503ffff  com.apple.cmio.DAL.AppleCamera (400.5.29 - AppleCameraDeviceAbstractionLayer-5.29.0)  /Library/CoreMediaIO/*/AppleCamera.plugin/Contents/MacOS/AppleCamera
           0x1470cc000 -        0x1470ddfff +MeasurementCore (???)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
           0x1470e3000 -        0x147325ff7 +com.adobe.PSAutomate (15.2.2 - 15.2.2)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
           0x1473aa000 -        0x14749fff7 +com.adobe.AdbeScriptUIFlex (ScriptUIFlex 6.3.2 - 6.3.2.32394)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFlex
           0x147533000 -        0x147559ff7 +com.adobe.ape (3.4.0.29366 - 3.4.0.29366)  /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
           0x149733000 -        0x14a6b8fef +com.adobe.ape.engine (3.4.0.29366 - 3.4.0.29366)  /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbeapeengine
           0x14d1fb000 -        0x14d234ff7 +com.adobe.pip (7.2.1.3399)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x14d262000 -        0x14d266ff3  libFontRegistryUI.dylib (134)  /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
           0x1511ff000 -        0x1512e6fe7 +IMSLib.dylib (7.0.0.154 - 7.0.0.154)  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/IMSLib.dylib
           0x151382000 -        0x1513fcff7  com.apple.xquery (1.3.1 - 30)  /System/Library/PrivateFrameworks/XQuery.framework/XQuery
           0x15800a000 -        0x15800affe +cl_kernels (???)  cl_kernels
           0x15800e000 -        0x15800efef +cl_kernels (???)  cl_kernels
           0x15a391000 -        0x15c9c8fef +com.adobe.CameraRaw (8.8.0 [397] - 8.8.0f397)  /Library/Application Support/Adobe/*/Camera Raw.plugin/Contents/MacOS/Camera Raw
           0x15cd4f000 -        0x15ce09fff + (???) 
           0x16a8b1000 -        0x16a93dfff  Tcl (8.4.19 - 8.4.19)  /System/Library/Frameworks/Tcl.framework/Versions/8.4/Tcl
        0x123400000000 -     0x1234004f7fff  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.2.46 - 10.0.2)  /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
        0x7fff638c5000 -     0x7fff638fb837  dyld (353.2.1)  /usr/lib/dyld
        0x7fff8bbf9000 -     0x7fff8bc6bff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8)  /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8bc6c000 -     0x7fff8bc86ff7  liblzma.5.dylib (7)  /usr/lib/liblzma.5.dylib
        0x7fff8bc87000 -     0x7fff8bcafffb  libRIP.A.dylib (775.16)  /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8bcb0000 -     0x7fff8bccbff7  com.apple.aps.framework (4.0 - 4.0)  /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
        0x7fff8bcd1000 -     0x7fff8bcfdfff  libsandbox.1.dylib (358.1.1)  /usr/lib/libsandbox.1.dylib
        0x7fff8bcfe000 -     0x7fff8bd1bfff  libsystem_kernel.dylib (2782.10.72)  /usr/lib/system/libsystem_kernel.dylib
        0x7fff8bd1c000 -     0x7fff8bd25fff  libGFXShared.dylib (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff8bd96000 -     0x7fff8bda3ff7  libxar.1.dylib (254)  /usr/lib/libxar.1.dylib
        0x7fff8bda4000 -     0x7fff8be1cff7  com.apple.SystemConfiguration (1.14 - 1.14)  /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8be7d000 -     0x7fff8be86ff3  com.apple.CommonAuth (4.0 - 2.0)  /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8be87000 -     0x7fff8beb0ffb  libxslt.1.dylib (13)  /usr/lib/libxslt.1.dylib
        0x7fff8beb1000 -     0x7fff8bec1ff7  libbsm.0.dylib (34)  /usr/lib/libbsm.0.dylib
        0x7fff8beda000 -     0x7fff8bedcfff  com.apple.loginsupport (1.0 - 1)  /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
        0x7fff8bedd000 -     0x7fff8bef4ff7  libLinearAlgebra.dylib (1128)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
        0x7fff8bef5000 -     0x7fff8befefff  libsystem_pthread.dylib (105.10.1)  /usr/lib/system/libsystem_pthread.dylib
        0x7fff8bf07000 -     0x7fff8c10146f  libobjc.A.dylib (647)  /usr/lib/libobjc.A.dylib
        0x7fff8c104000 -     0x7fff8c120ff7  libsystem_malloc.dylib (53.1.1)  /usr/lib/system/libsystem_malloc.dylib
        0x7fff8c15d000 -     0x7fff8c162fff  com.apple.DiskArbitration (2.6 - 2.6)  /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c16d000 -     0x7fff8c174ff7  libcompiler_rt.dylib (35)  /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c175000 -     0x7fff8c209fff  com.apple.ink.framework (10.9 - 213)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
        0x7fff8c20a000 -     0x7fff8c20aff7  libunc.dylib (29)  /usr/lib/system/libunc.dylib
        0x7fff8c2a3000 -     0x7fff8c2aeff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c35f000 -     0x7fff8c3a8ff3  com.apple.HIServices (1.22 - 520.12)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
        0x7fff8c3a9000 -     0x7fff8c3acff7  libdyld.dylib (353.2.1)  /usr/lib/system/libdyld.dylib
        0x7fff8c3ad000 -     0x7fff8c3b5ff7  com.apple.AppleSRP (5.0 - 1)  /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8c3b6000 -     0x7fff8c3b7fff  libsystem_secinit.dylib (18)  /usr/lib/system/libsystem_secinit.dylib
        0x7fff8c3b8000 -     0x7fff8c6d3fcf  com.apple.vImage (8.0 - 8.0)  /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
        0x7fff8c6d4000 -     0x7fff8c6e6fff  libsasl2.2.dylib (193)  /usr/lib/libsasl2.2.dylib
        0x7fff8c6e7000 -     0x7fff8c721ffb  com.apple.DebugSymbols (115 - 115)  /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff8c722000 -     0x7fff8c72dff7  libcsfde.dylib (471.10.6)  /usr/lib/libcsfde.dylib
        0x7fff8c72e000 -     0x7fff8c730fff  libsystem_configuration.dylib (699.1.5)  /usr/lib/system/libsystem_configuration.dylib
        0x7fff8c731000 -     0x7fff8c75cfff  com.apple.DictionaryServices (1.2 - 229)  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
        0x7fff8c75d000 -     0x7fff8c88fff7  com.apple.MediaControlSender (2.0 - 215.15)  /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
        0x7fff8c890000 -     0x7fff8cb38ff7  com.apple.RawCamera.bundle (6.03 - 777)  /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8cb39000 -     0x7fff8cbc2fff  com.apple.CoreSymbolication (3.1 - 57020)  /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
        0x7fff8cbc3000 -     0x7fff8cbc5ff3  com.apple.SafariServices.framework (10600 - 10600.4.10.7)  /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
        0x7fff8cbc6000 -     0x7fff8cc2dff7  com.apple.framework.CoreWiFi (3.0 - 300.4)  /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8cc2e000 -     0x7fff8cd22fff  libFontParser.dylib (134.1)  /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8cd23000 -     0x7fff8cf26ff3  com.apple.CFNetwork (720.2.4 - 720.2.4)  /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8cf27000 -     0x7fff8cf43fff  com.apple.GenerationalStorage (2.0 - 209.11)  /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
        0x7fff8cf44000 -     0x7fff8cf46fff  libCVMSPluginSupport.dylib (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
        0x7fff8cf47000 -     0x7fff8cf71fff  GLRendererFloat (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
        0x7fff8cf8a000 -     0x7fff8cf8aff7  libkeymgr.dylib (28)  /usr/lib/system/libkeymgr.dylib
        0x7fff8cf8b000 -     0x7fff8d477ff7  com.apple.MediaToolbox (1.0 - 1562.107)  /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8d49d000 -     0x7fff8d49efff  liblangid.dylib (117)  /usr/lib/liblangid.dylib
        0x7fff8d49f000 -     0x7fff8d4a7fff  libMatch.1.dylib (24)  /usr/lib/libMatch.1.dylib
        0x7fff8d4a8000 -     0x7fff8d563ff7  com.apple.DiscRecording (9.0 - 9000.4.2)  /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8d564000 -     0x7fff8d568fff  libpam.2.dylib (20)  /usr/lib/libpam.2.dylib
        0x7fff8d569000 -     0x7fff8d577ff7  com.apple.opengl (11.1.1 - 11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d578000 -     0x7fff8d582ff7  com.apple.NetAuth (5.0 - 5.0)  /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8d583000 -     0x7fff8d584fff  libSystem.B.dylib (1213)  /usr/lib/libSystem.B.dylib
        0x7fff8d959000 -     0x7fff8d99afff  libGLU.dylib (11.1.1)  /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d99b000 -     0x7fff8d9d6fff  com.apple.Symbolication (1.4 - 56045)  /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff8d9d7000 -     0x7fff8db07fff  com.apple.UIFoundation (1.0 - 1)  /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
        0x7fff8db08000 -     0x7fff8db40fff  com.apple.RemoteViewServices (2.0 - 99)  /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
        0x7fff8db8a000 -     0x7fff8dbb8fff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2)  /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
        0x7fff8dbd3000 -     0x7fff8ddb8ff3  libicucore.A.dylib (531.31)  /usr/lib/libicucore.A.dylib
        0x7fff8ddb9000 -     0x7fff8ddc1ffb  libcopyfile.dylib (118.1.2)  /usr/lib/system/libcopyfile.dylib
        0x7fff8ddc2000 -     0x7fff8ddd4ff7  com.apple.ImageCapture (9.0 - 9.0)  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
        0x7fff8de07000 -     0x7fff8de08fff  libDiagnosticMessagesClient.dylib (100)  /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8de09000 -     0x7fff8de1cff7  com.apple.CoreBluetooth (1.0 - 1)  /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff8de26000 -     0x7fff8de2afff  libspindump.dylib (182)  /usr/lib/libspindump.dylib
        0x7fff8de2b000 -     0x7fff8de30ff7  libunwind.dylib (35.3)  /usr/lib/system/libunwind.dylib
        0x7fff8de3d000 -     0x7fff8de43ff7  libsystem_networkextension.dylib (167.1.10)  /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8de7f000 -     0x7fff8dfeaff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12)  /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8dfeb000 -     0x7fff8e00bfff  com.apple.IconServices (47.1 - 47.1)  /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
        0x7fff8e00c000 -     0x7fff8e05dff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0)  /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e05e000 -     0x7fff8e05efff  com.apple.quartzframework (1.5 - 1.5)  /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8e05f000 -     0x7fff8e082fff  com.apple.Sharing (328.3.2 - 328.3.2)  /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8e0f5000 -     0x7fff8e1d5fff  com.apple.QuickLookUIFramework (5.0 - 675.13)  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V

    Is this a plugin you are developing or one you have purchased?
    If purchased, I would try to contact the company that made it.
    If you are developing, then I would get the original Dissolve (or other) example and make sure it is working correctly with the OK and in the Cancel scenario. If so, then copy that example and start modifying and working your way towards what you now have. You should be able to tell when things go wrong and that would help me figure out your crasher.

  • Filter plugin. Problem after change image depth.

    Hi All !
    I already wrote filter plugin it work fine but only for image depth 8bit, after i change image depth on 16 or 32 bits I getting error msg box from photoshop.
    I try change on 'destination.colBits = 8' or 'destination.colBits = pChannel->depth' or ' (pChannel->bounds.bottom - pChannel->bounds.top) * pChannel->depth;'  but all the same.
    PixelMemoryDesc destination;
    destination.data = data; //*pixel
    destination.depth = pChannel->depth;
    destination.rowBits = (pChannel->bounds.right - pChannel->bounds.left) * pChannel->depth;
    destination.colBits = 8;
    destination.bitOffset = 0 ;
    Please help someone !
    Very Thanks in Advance !
    All code below:
    //  Gauss.cpp
    //  gauss
    //  Created by Dmitry Volkov on 30.12.14.
    //  Copyright (c) 2014 Automatic System Metering. All rights reserved.
    #include "Gauss.h"
    #include "GaussUI.h"
    #include "FilterBigDocument.h"
    #include <fstream>
    using namespace std;
    SPBasicSuite* sSPBasic = NULL;
    FilterRecord* gFilterRecord = NULL;
    PSChannelPortsSuite1* sPSChannelPortsSuite = NULL;
    PSBufferSuite2* sPSBufferSuite64 = NULL;
    int16* gResult = NULL;
    void DoParameters ();
    void DoPrepare ();
    void DoStart ();
    void DoFinish ();
    void DoEffect();
    void GaussianBlurEffect(ReadChannelDesc* pChannel, char* data);
    void ReadLayerData(ReadChannelDesc* pChannel, char* pLayerData);
    void WriteLayerData(ReadChannelDesc* pChannel, char* pLayerData);
    DLLExport MACPASCAL void PluginMain(const int16 selector,
                                        FilterRecordPtr filterRecord,
                                        intptr_t * data,
                                        int16 * result)
        sSPBasic = filterRecord->sSPBasic;
        gFilterRecord = filterRecord;
        gResult = result;
        try {
                if (sSPBasic->AcquireSuite(kPSChannelPortsSuite,
                                                   kPSChannelPortsSuiteVersion3,
                                                   (const void **)&sPSChannelPortsSuite))
                    *gResult = errPlugInHostInsufficient;
                if (sSPBasic->AcquireSuite( kPSBufferSuite,
                                                   kPSBufferSuiteVersion2,
                                                   (const void **)&sPSBufferSuite64))
                    *gResult = errPlugInHostInsufficient;
                if (sPSChannelPortsSuite == NULL || sPSBufferSuite64 == NULL)
                    *result = errPlugInHostInsufficient;
                    return;
                switch (selector)
                    case filterSelectorParameters:
                        DoParameters();
                        break;
                    case filterSelectorPrepare:
                        DoPrepare();
                        break;
                    case filterSelectorStart:
                        DoStart();
                        break;
                    case filterSelectorFinish:
                        DoFinish();
                        break;
        catch (...)
            if (NULL != result)
                *result = -1;
    void DoParameters ()
    void DoPrepare ()
    void DoStart ()
        if (*gResult == noErr)
            if (doUi())
                DoEffect();
    void DoFinish ()
    #define defColBits 8
    void DoEffect()
        // Start with the first target composite channel
        ReadChannelDesc *pChannel = gFilterRecord->documentInfo->targetCompositeChannels;
        // Calculation width and height our filter window
        int32 width = pChannel->bounds.right - pChannel->bounds.left;
        int32 height = pChannel->bounds.bottom - pChannel->bounds.top;
        fstream logFile ("/Volumes/Macintosh Media/GaussLogFile.txt", ios::out);
        logFile << endl << "top " << pChannel->bounds.top;
        logFile << endl << "bottom " << pChannel->bounds.bottom;
        logFile << endl << "left " << pChannel->bounds.left;
        logFile << endl << "right " << pChannel->bounds.right;
        logFile << endl << "depth " << pChannel->depth;
        logFile << endl << "vRes " << gFilterRecord->documentInfo->vResolution;
        logFile << endl << "hRes " << gFilterRecord->documentInfo->hResolution;
        // Get a buffer to hold each channel as we process. Note we can using standart malloc(size_t) or operator new(size_t)
        // functions, but  Adobe recommend sPSBufferSuite64->New() for memory allocation
        char *pLayerData = sPSBufferSuite64->New(NULL, width*height*pChannel->depth/8);
        if (pLayerData == NULL)
            return;
        // we may have a multichannel document
        if (pChannel == NULL)
            pChannel = gFilterRecord->documentInfo->alphaChannels;
        // Loop through each of the channels
        while (pChannel != NULL && *gResult == noErr)
            ReadLayerData(pChannel, pLayerData);
            GaussianBlurEffect(pChannel, pLayerData);
            WriteLayerData(pChannel, pLayerData);
            // off to the next channel
            pChannel = pChannel->next;
        pChannel = gFilterRecord->documentInfo->targetTransparency;
        // Delete pLayerData
        sPSBufferSuite64->Dispose((char**)&pLayerData);
    void GaussianBlurEffect(ReadChannelDesc* pChannel, char *data)
        // Make sure Photoshop supports the Gaussian Blur operation
        Boolean supported;
        if (sPSChannelPortsSuite->SupportsOperation(PSChannelPortGaussianBlurFilter,
                                                    &supported))
            return;
        if (!supported)
            return;
        // Set up a local rect for the size of our port
        VRect writeRect = pChannel->bounds;
        PIChannelPort inPort, outPort;
        // Photoshop will make us a new port and manage the memory for us
        if (sPSChannelPortsSuite->New(&inPort,
                                      &writeRect,
                                      pChannel->depth,
                                      true))
            return;
        if (sPSChannelPortsSuite->New(&outPort,
                                      &writeRect,
                                      pChannel->depth,
                                      true))
            return;
        // Set up a PixelMemoryDesc to tell how our channel data is layed out
        PixelMemoryDesc destination;
        destination.data = data; //*pixel
        destination.depth = pChannel->depth;
        destination.rowBits = (pChannel->bounds.right - pChannel->bounds.left) * pChannel->depth;
        destination.colBits = defColBits;
        destination.bitOffset = 0 ;
        // Write the current effect we have into this port
        if (sPSChannelPortsSuite->WritePixelsToBaseLevel(inPort,
                                                         &writeRect,
                                                         &destination))
            return;
        // Set up the paramaters for the Gaussian Blur
        PSGaussianBlurParameters gbp;
        int inRadius = 1;
        Fixed what = inRadius << 16;
        gbp.radius = what;
        gbp.padding = -1;
        sPSChannelPortsSuite->ApplyOperation(PSChannelPortGaussianBlurFilter,
                                                                 inPort,
                                                                 outPort,
                                                                 NULL,
                                                                 (void*)&gbp,
                                                                 &writeRect);
        if (sPSChannelPortsSuite->ReadPixelsFromLevel(outPort,
                                                      0,
                                                      &writeRect,
                                                      &destination))
            return;
        // Delete the temp port in use
        sPSChannelPortsSuite->Dispose(&inPort);
        sPSChannelPortsSuite->Dispose(&outPort);
    void ReadLayerData(ReadChannelDesc *pChannel, char *pLayerData)
        // Make sure there is something for me to read from
        Boolean canRead;
        if (pChannel == NULL)
            canRead = false;
        else if (pChannel->port == NULL)
            canRead = false;
        else if (sPSChannelPortsSuite->CanRead(pChannel->port, &canRead))
            // this function should not error, tell the host accordingly
            *gResult = errPlugInHostInsufficient;
            return;
        // if everything is still ok we will continue
        if (!canRead || pLayerData == NULL)
            return;
        // some local variables to play with
        VRect readRect = pChannel->bounds;
        PixelMemoryDesc destination;
        // set up the PixelMemoryDesc
        destination.data = pLayerData;
        destination.depth = pChannel->depth;
        destination.rowBits = pChannel->depth * (readRect.right - readRect.left);
        destination.colBits = defColBits;
        destination.bitOffset = 0 ;
        // Read this data into our buffer, you could check the read_rect to see if
        // you got everything you desired
        if (sPSChannelPortsSuite->ReadPixelsFromLevel(
                                                      pChannel->port,
                                                      0,
                                                      &readRect,
                                                      &destination))
            *gResult = errPlugInHostInsufficient;
            return;
    void WriteLayerData(ReadChannelDesc *pChannel, char *pLayerData)
        Boolean canWrite = true;
        if (pChannel == NULL || pLayerData == NULL)
            canWrite = false;
        else if (pChannel->writePort == NULL)
            canWrite = false;
        else if (sPSChannelPortsSuite->CanWrite(pChannel->writePort, &canWrite))
            *gResult = errPlugInHostInsufficient;
            return;
        if (!canWrite)
            return;
        VRect writeRect = pChannel->bounds;
        PixelMemoryDesc destination;
        destination.data = pLayerData;
        destination.depth = pChannel->depth;
        destination.rowBits = pChannel->depth * (writeRect.right - writeRect.left); //HSIZE * pChannel->depth * gXFactor*2;
        destination.colBits = defColBits;
        destination.bitOffset = 0 ;
        if (sPSChannelPortsSuite->WritePixelsToBaseLevel(
                                                         pChannel->writePort,
                                                         &writeRect,
                                                         &destination))
            *gResult = errPlugInHostInsufficient;
            return;

    Have you reviewed your code vs the Dissolve example? It is enabled for other bit depths as well.

  • Filter plugin kills interractive drag

    A customer just pointed out some unusual behavior in my windows filter
    plugin. After running the plugin, Photoshop is no longer able to do
    interractive dragging of pixel data.
    It's just the interactive drag that is broken. The operation completes
    normally, with the pixel data jumping into place after the mouse button is
    released. This affects floating selections, and moving of layer data with
    the move tool. Restarting Photoshop clears up the problem.
    Any ideas what I could be changing in Photoshop to make this happen?

    Hi,
    From a quick reading, you have the DisableDragBoundingBox.plugin loading. Do you recall if you installed the Snow Leopard Graphics Update (http://support.apple.com/kb/HT4286)? Without it, 10.6.4 plays a bit nasty with Ps OpenGL.
    I'm not very familiar with the 320M, but the 10.6.5 update MAY have fixed some driver issues for that card (in the least it includes the 10.6.4 Graphics fix mentioned above). It might be good to ask on the Apple support boards for more info.
    On side notes, you'll also want to install the Ps 12.0.2 update and replace your older TWAIN plug-in with the newer separate download.
    regards,
    steve

  • CS3 ILLUST Missing required plugins BRS Pencil Tool ExpandS

    Have installed a demo disk for CS3 that came from Adobe.
    Illustrator doesn't work!
    Get the message..."Missing required plugins BRS Pencil Tool ExpandS"
    I found this link but it was for "BRS Pencil Tool Pathfinder Suite"
    http://kb.adobe.com/selfservice/viewContent.do?externalId=331889&sliceId=2
    any info on this!

    Not sure it exactly the same (this mentions CS2/3) but...
    http://helpx.adobe.com/illustrator/kb/error-missing-required-plugins-brs.html

  • Missing required plugins BRS Pencil Tool ExpendS. Anyone

    Hi all,
    My Illustrator CS5 cannot open anymore because the required plugin BRS Pencil Tool ExpendS is missing.
    Is there anyone who has occurred the same problem before? Where can I download the missing plugin? Is there a fast way to get it up and running?
    Thank you for your help, I am not an expert and shall appreciate your suggestions on this forum.
    Best wishes,
    Simone

    Not sure it exactly the same (this mentions CS2/3) but...
    http://helpx.adobe.com/illustrator/kb/error-missing-required-plugins-brs.html

  • HSB/HSL filter plugin problem

    After downloading the HSB/HSL filter plugin as an 8BF file in the Plug-Ins folder, the error message "cannot complete your request because it is not the right kind of document" pops up. What am I doing wrongly?

    That is the type of error you would see if you double-click the 8BF file. The file type is associated with Photoshop, so if you double-click the file, Photoshop will attempt to open it as if it were an image. Plug-in files just need to be in the plug-ins folder at the time Photoshop is launched for the plug-in to be used in Photoshop.

  • Filter plugin not loaded everytime

    Hi,
    I am currently writing a filter Plug-in for Photoshop but I'm having an issue and can't find any clue of what is causing it.
    My plugin is sometimes loaded by photoshop and sometimes not. When it is not, deleting the 8bf file and doing a rebuild of the project works, without modifying anything in the code. Sometimes I have to rebuild many times until the plugin gets loaded, which is anoying...
    First I checked that the sdk version in the .r file was correct: Version { (latestFilterVersion << 16 ) | latestFilterSubVersion }, the entry point is the same as in the dissolve example.
    I thought that photoshop may cache the plugins to load them faster and that the new version isn't seen (like when I build many times a minute), but I figured out that when a plugin is loaded once, it is always recognized.
    One thing that I've noticed is that when my plugin is loaded, if I go to Help > System Info..., there is no version number for my plugin, that may cause the issue but I can't find in the dissolve example where this version 13 comes from. I thought as well that maybe the resource isn't compiled correctly sometimes but it is strange and unlikely I think (maybe still worth mentionning).
    Does anybody have any clue / suggestion? It's been 2 days that I'm trying to figure out what's going on and it starts to drive me crazy...

    Hi
    Are you developing for Windows or Mac?
    I had a similar problem with Windows.  I found I wasn't compiling the correct pipl files (my .rc file wasn't including the correct pipl files).  Tidy up/delete any pipl files and make sure 100% you're including correct pipl files.
    I also had a problem when switching between 32/64 bit builds.  For example, when compiling a 64 bit plug-in, VS2010 would sometimes not force a rebuild for the .r file (to generate .pipl for 64 bit) and would then include the 32 bit pipl (leftover from the 32 bit build).  This meant that my plugin wouldn't appear in 64 bit Photoshop (because the pipl was invalid).  For me the solution is to either delete any old pipl files before compiling, or being mindful to do a rebuild of pipl files when switching from 32/64 bit builds.  I could also have created separate pipl builds for 32/64 bit and made sure correct one was being included.
    When the plug-in doesn't appear in Photoshop, eliminate all the obvious bits (like plug-in paths), check your DLL exports, then check the pipl.  I don't think it's the version number, but someone with more experience than me might point you in a better direction.
    Jamie

  • Existing Actions and Plugins Compatible with Photoshop CS5?

    I have actions and plug-in products, and while I've done everything I can to make them future-proof, I'm wondering if any Photoshop CS5 beta testers can speak to whether existing actions and plugins are generally compatible with Photoshop CS5?
    Specifically:
    Are existing 32 bit Windows (PC) plugins proving to be compatible with Photoshop CS5?
    Are existing 64 bit Windows (PC) plugins proving to be compatible with Photoshop CS5?
    Are existing actions (both platforms) proving to be compatible with Photoshop CS5?
    I'm anxiously awaiting the go-ahead to download my copy to verify everything, but I'm just trying to get a feel for whether I'll have work to do.  I'm hoping for the level of compatibility seen in CS3 and CS4 - all my software worked perfectly with no changes.
    Thanks.
    -Noel Carboni
    ProDigital Software
    <link removed>

    I appreciate you all taking the time to answer, but none of you has actually said what DOES happen with your existing actions / plugins and CS5 beta.
    I know that experience with one set of actions and plugins doesn't guarantee operation with another, but if, for example, someone actually stated, "all my old plugins failed to work with CS5" or "they all seemed to work okay" then I'd have a better idea of what to expect.
    Please keep in mind I've been developing commercial actions since PS6 and plugins since CS2, and all my software works on all 32 bit versions and 64 bit CS4 on Vista x64 and Windows 7 x64, so I'm intimately familiar with what might happen and what should happen.  Plus I've programmed them to be quite resilient, and I don't expect any of the CS5 feature changes to break them.  What I don't know is whether Adobe has fundamentally altered the plugin interface this time around, or has deprecated any old filters, causing a plugin or action that used to work to fail now.  The word "rewrite" has been used to describe CS5, and that has me wondering.
    In short, I'm really looking for actual experience with the CS5 beta here.
    Wish I could get the CS5 SDK already.  I don't understdand why Adobe doesn't release that in advance.
    Thanks.
    -Noel

  • Multiple preview in Filter Plugin

    Hi All,
    Is it possible to have multiple previews of different images (one for one image)at the same time. I have made a filter plugin which shows one preview of the Current open document.
    Now suppose I have opened 5 Different images in Photoshop and I clicked my filter plugin it shows one preview on the dialog, of the image which is on the top of all the Images (i.e. Currently have focus or selection). Can I display the rest 4 Images on my dialog box as preview at the same time without changing the focus.
    Does Anyone have any idea?
    Thanks and Regards,
    Sunil Kumar

    I'm not sure if this will help you, but you can loop through all openend documents, as shown in the getter example and retrieve the document ids (code below).
    // we are ignoring errors so this will not give an invalid error
    // message when there are no documents open
    //Get actives doc ID:
    PIUGetInfo(classDocument, keyDocumentID, &currentDocumentID, NULL);
    //Get Number of openend docs:
    PIUGetInfo(classApplication, keyNumberOfDocuments, &numDocuments, NULL);
    if (numDocuments > 0)
    for (docCounter = 1; docCounter <= numDocuments; docCounter++)
    // this routine will error if we select the document
    // that is already selected, we don't care about this
    // as an error, keep chugging
    (void) PIUSelectByIndex(classDocument, docCounter);
    GetPathInfo(logfilename);
    GetHistoryInfo(logfilename);
    // this routine will error if we select the document
    // that is already selected, we don't care about this
    // as an error, keep chugging
    //select the original front doc again
    (void) PIUSelectByID(classDocument, currentDocumentID);

Maybe you are looking for

  • Windows 8.1 Apps open and close immediately

    We have joined a laptop running Windows 8 to the domain however none of the apps work. They open and then close immediately. The error in the event log is:The app microsoft.windowscommunicationsapps_8wekyb3d8bbwe!Microsoft.WindowsLive.Calendar's pack

  • Howto change property of javabeans based data control?

    Hi, I have a swing application which displays a combobox. This combobox is bound to a javabeans based model using ADF. The combobox is enabled/disabled based on a value in another combobox, so sometimes the combobox is enabled, sometimes it's not. We

  • HT2822 apple tv won't stay connected

    It is difficult to connect to my network.  Once connected, it doesn't stay connected.

  • Cannot sort email by sender

    I want to sort my email inbox by sender, but my Verizon FIOS only seems to allow sorting by Date, Unread, Attachments, and Starred. Why is that? This is the ONLY email system I have EVER seen that does not allow sorting by Sender. And please do not t

  • Capacity pleae help with this please please please !!!!!!!!!!!!!!!!!

    when i restored me ipod it gives all the information for example colour, serial number the problem is my it says..... capacity 892.0Mb my ipod isnt 892mb ipod nano!!!!!!!!!!! that solves why i cant get all my music onto it and i am very confused help