Accesing layer styles from a filter plugin

It's possibile to acces a layer style (ex. drop shadow) from a filter plugin?

Yes, from an automation plugin you can get the parameters to the layer styles. On the layer object (descriptor) there is a keyLayerEffects, classLayerFXVisible object (descriptor). That has objects (descriptors) such as keyInnerGlow or keyInnerShadow. Build the Getter plug-in and install it. Make your file with your layer effects. Then run getter from the File > Automate > Getter menu and you will get a Getter.log file on your desktop that shows all the things available in your document. Remember that the Getter code is reusing the Listener code so there is a bit more work for using the Getter output. All the ->Put* routines need to be converted to ->Get* routines and you need to invert the order of the calls. Here is some code that I just did this exercise on, in JavaScript, but you should get the idea. This code gets all the brush toolPresets and sees if the Preset I'm looking for is present. You can find the 'keys' in the PITerminology.h and PISTringTerminology.h files in your SDK. 'capp' is classApplication for example. You would want 'Lyr ' for classLayer.
// find if the following brush is loaded
FindBrushPresetByName( "foo" ).toString() + " : " + FindBrushPresetByName( "Restore Brush - PA" ).toString();
function FindBrushPresetByName( brushPresetName ) {
     var ref = new ActionReference();
     var presetManagerStrID = stringIDToTypeID( 'presetManager');
     ref.putProperty( charIDToTypeID( 'Prpr' ), presetManagerStrID );
     ref.putEnumerated( charIDToTypeID( 'capp' ), charIDToTypeID( 'Ordn' ), charIDToTypeID( 'Trgt' ) );
     var desc = executeActionGet( ref );
     if ( desc.count > 0 && desc.hasKey( presetManagerStrID ) ) {
          var list = desc.getList( presetManagerStrID );
          var toolPresetClassID = stringIDToTypeID( 'toolPreset' );
          for ( var i = 0; i < list.count; i++ ) {
               var listType = list.getObjectType( i );
               if ( listType == toolPresetClassID ) {
                    var toolDescObj = list.getObjectValue( i );
                    var keyName = charIDToTypeID( 'Nm  ' );
                    if ( toolDescObj.count > 0 && toolDescObj.hasKey( keyName ) ) {
                         var toolNameList = toolDescObj.getList( keyName );
                         for ( var ii = 0; ii < toolNameList.count; ii++ ) {
                              var toolName = toolNameList.getString( ii );
                              if ( toolName == brushPresetName ) {
                                   return true;
     return false;
 

Similar Messages

  • 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.

  • Setting the layer name from a format plugin with CS2 and before

    Hello,
    I wrote a new format plugin and the name of the layer shown in PS , when I read a file, does not seem to be consistent on all computers for versions CS2 and before :  some times I get "Background" and some times I get "Layer 0" .
    When the layer is named is "Background",  it is locked. If I double click on the layer, I get a panel to rename it and the name suggested is "Layer 0" (and not "Background").
    Somehow, it seems that my plugin is not doing exactly the right thing or there is a setting in PS options (or in the registry) that controls/causes that behavior. My understanding is that we can't name layers from the plugin before version CS3 (setting the layerName field in the FormatRecord makes no difference for CS2 and before).
    I do not care much about the actual layer name as long as that name is consistent for all installations. Does anybody know what is going on?
    Thank you!
    Gilbert

    If it has transparency, it has to be a layer ("Layer0").
    If it doesn't have transparency, it is treated as a background.
    And yes, changing the background to a layer does normally rename it to "layer X".

  • Filter Effect and Layer Style in the same layer vs separate layers

    I'm adjusting a photographic image and am using both a filter effect and a layer style in the same layer on a Smart Object.  I want to separate the two effects into two layers, so one layer has the filter effect (Nik) and one layer has the layer style (Color Overlay) (with the goal of merging/rasterizing the Nik filter effect with the Smart Object but keeping the layer style unmerged).  I can make two layers and move one effect without problem, but the visual result of each effect on a separate layer is quite different from having both effects in the same layer.   The Blend Mode for all my layers is Normal.  Within the Color Overlay panel, the blend mode is Linear Burn.
    I don't understand why the visual result is different.  I'm not an advanced user of Photoshop, so maybe I'm missing something.  This is a trial of CS6 that I'm using.
    Layer 1: a layer style and a filter effect, stacked
    looks very different from....
    Layer 2:  a layer style
    Layer 1:  a filter effect

    If you want two separate layers, then on the duplicate layer with the Color Overlay layer style you might try different layer blending modes.
    For example, below looks the same having the Color Overlay with linear burn on the second layer and changing the layers blend mode to Hue.
    You could also put the layer in a group and apply the layer style to the group.
    (i deleted the previous post because of pilot error)
    Message was edited by: R_Kelly

  • Transfer pattern overlays from layer styles Photoshop CS2 to CS4

    Hi all,
    I was wondering is there a way to transfer my pattern overlays from my layer styles from Photoshop CS2 to the CS4?  Thanks in advance.
    pwit

    Save them from the flyout menu in the top right corner of the Actions palette in CS2, then load them into CS4.
    Mylenium

  • Pse 7.0 can you add a 3rd party layer style to existing category?

    I've seen and understand the instructions I found on installing a layer style from a third party, but it shows creating a new category for each one through the xml.  I have a bunch of free layer styles that actually fit into existing categories (like drop shadow, for example).  Is there a way to add them to the existing drop shadow category? 
    I have three separate .asl files for these, and each of these third party drop shadow .asl files already contain more than one style.  But I would like having them all within the one drop shadow category.  That is what I did in 5.0.
    Thanks!

    I think I figured it out.  Found this:  http://www.hummiesworld.com/plugins.html .  Thanks!

  • How to open and write to a new document from a filter plug in?

    Hi. I'm new to writing photoshop plug in. I would like to copy a small area of the current image, open a new document, and paste the area into the new document. All this is done in photoshop only.
    I am currently using the "Dissolve" filter to do my study, and i can't find the way to create a new document.
    I found a reply by Tom Ruark, mentioning using an automation plug in.
    Can someone please point out to me which functions, and parameters, to study?
    And are there any sample projects that do this?
    Many thanks.
    Regards,
    Yong

    You don't do that from a filter plugin. A filter plugin can only filter existing data.
    Yes, you would need a script or an automation plugin to create a new document.
    You might want to read the SDK about what the various types of plugins can do.

  • Strange Layer Style Behavior CS3

    I'm having a problem with creating a custom layer style. When I click the layer style button at the bottom of the layer pallet, or chiise a layer style from the Layers menu) Photoshop does not open the Layer Styles dialog box. It instead applys some sort of default style and I see a message in the top tool bar that says "Click and drag to reposition the effect." Double-clicking the layer in the Layers Pallet switches to the hand tool and disables most menu functions. I either have to hit Enter or Cmd-Period to cancel and return to normal functionality.
    Is this some arcaine setting I've never encountered before, or is PS broken? The problem seems to have started after I ran the OS X Software Update yesterday-- I'm using OS X 10.4.11. I also recently switched my Workplace setting from a custom two-monitor pallet layout to a single monitor default layout.
    Thanks--

    It seems like the layer effects dialog is popping up off-screen somewhere... When you double-click on a layer with styles/effects applied to it, it usually pops that up, and then if you mouse over the image while that's up, you get the hand tool and allows you to drag to reposition the effect.
    That would also explain the disabling of the menu items, that also happens when the layer styles dialog box pops up.
    I'm not sure how you go about fixing that, though... I would try saving your workspace layout as something else, and then hitting window>workspace>"reset palette locations" or "reset menus" (although you'll probably lose any custom menu stuff that way) and I would also try applying other default workspaces.
    Best of luck!
    -Caleb

  • Real-time filter / layer style plugin

    Is it possible at all to write a filter plugin that gets applied in real-time, as the user draws on a layer?
    I'm thinking of something similar to layer styles (such as drop shadow) that get applied immediately while the user is drawing on a canvas. As far as I can see there is no API to add new filter styles, but maybe there is a workaround to achieve a similar behavior using filters?
    I want to create a simple mirror filter/style that mirrors the right-hand side of a layer onto the left-hand side as the user draws on a layer, because this would be very useful for sketching symmetric structures.
    Or could this be achieved by using multiple layers? E.g. Layer 2 sitting on top of Layer 1, where the right half of Layer 2 is fully transparent and the left half of Layer 2 contains a mirrored version of Layer 1? But then how could one continuously update Layer 2 while the user is drawing on Layer 1?
    Any help appreciated!

    You can do that within your plugin, like Liquify does.
    But, as explained in the SDK, you cannot write a plugin that does live updates on the document or adds to layer styles.
    As for symmetric painting - that is already available in Photoshop Extended using 3D texture mapping.

  • Scripting a layer style for each layer to make a depth pass from focus stacking information.

    I'm trying to generate a depth pass from rack focus. Basically where I've gotten to right now is importing the rack focus footage each frame from as an individual layer. Then running Auto Blend Layers and letting photoshop do it's magic to mask out each layer's out of focus information. This basically gives me a bunch of layers that tell me exactly where the camera's focus was at each frame in the shot. What I need to do now is Add a color overlay (maybe in the form of a layer style) that starts at 100% black and goes to 100% white stepping through each layer.
    Right now I have this, which is so very far away.
    try {
        var docName = app.activeDocument.name;  // save the app.activeDocument name before duplicate.
        var layerCount = app.documents[docName].layers.length; //figure out how many layers
        var colorStep = 255/layerCount; //figure out how big the step of grey is between each layer.
            for (i = 1; i <= layerCount; i++){
                my_layer = [docName].layer(i);
                my_layer.applyStyle (solidFill) //add the color overly layer style
                //color the overlay using the colorStep information and layer number
    What I want is an end result that looks like this.

    The only focus stacking I have done is with macro photography. Below is a script that adds the layer effects but the results with my macro samples did not turn out looking good. Maybe you will have better luck with the type of photography you are doing.
    function ftn1(r,g,b) {
        var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putProperty( charIDToTypeID('Prpr'), charIDToTypeID('Lefx') );
            ref.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('null'), ref );
            var effectsDesc = new ActionDescriptor();
            //effectsDesc.putUnitDouble( charIDToTypeID('Scl '), charIDToTypeID('#Prc'), 333.333333 );
                var colorfillDesc = new ActionDescriptor();
                colorfillDesc.putBoolean( charIDToTypeID('enab'), true );
                colorfillDesc.putEnumerated( charIDToTypeID('Md  '), charIDToTypeID('BlnM'), charIDToTypeID('Nrml') );
                colorfillDesc.putUnitDouble( charIDToTypeID('Opct'), charIDToTypeID('#Prc'), 100.000000 );
                    var rgbcDesc = new ActionDescriptor();
                    rgbcDesc.putDouble( charIDToTypeID('Rd  '), r );
                    rgbcDesc.putDouble( charIDToTypeID('Grn '), g );
                    rgbcDesc.putDouble( charIDToTypeID('Bl  '), b );
                colorfillDesc.putObject( charIDToTypeID('Clr '), charIDToTypeID('RGBC'), rgbcDesc );
            effectsDesc.putObject( charIDToTypeID('SoFi'), charIDToTypeID('SoFi'), colorfillDesc );
        desc.putObject( charIDToTypeID('T   '), charIDToTypeID('Lefx'), effectsDesc );
        executeAction( charIDToTypeID('setd'), desc, DialogModes.NO );
    try {
        // var docName = app.activeDocument.name;  // save the app.activeDocument name before duplicate.
        // var layerCount = app.documents[docName].layers.length; //figure out how many layers
        var docRef = app.activeDocument;
        var layerCount = docRef.artLayers.length;
        var colorStep = 255/layerCount; //figure out how big the step of grey is between each layer.
        var color = 255;
        for (i = 0; i <= layerCount; i++){
            docRef.activeLayer = docRef.artLayers[i];
            ftn1( color, color, color);
            color=color-colorStep;
    }catch(e){}

  • All Layer styles missing from CS5 Photoshop.

    This is the fourth time I have gone through this. i open my photoshop to see all my layer styles are gone. Since I have 1000s and most custom made i don't remember all the creations. I have searched all over and the only place that had anything close was a discussion in Elements, but that solution did not work for me. I know I can't be the only person that has gone through this?? Is there anyone that knows how to retrieve all the styles i had just hours ago?

    this has happened before when I left my computer on and MS did an auto update that restarted my computer...
    This points me to the additional potential for a video driver issue. Simple OS updates and even some hot-fixes, have been known to render the video driver obsolete. That is one reason that nVidia and ATI/AMD issue updates about once per month.
    I have Windows set (on all computers) to ONLY notify me of the availability of an update. That way, I manually download and install it/them, and know to keep an eye on the video driver, should an issue arise. I have all nVidia cards, but do not religiously update drivers (there have been some from both nVidia and ATI/AMD, that have been problematic), as so long as my Adobe programs function perfectly, I will wait until something goes awry. I also have all programs set to NOT auto-update, as I have had two auto-updates really mess things up, and once very badly - one was a simple Logitec Set-Point mouse driver update, and it totally killed my computer, requiring a complete rebuild and low-level reformatting of my system HDD. The other was a Java update, that killed a large PSD file, that was Saving, when it started - that one only cost me a redo from an earlier, previous version of the PSD, and the only time that I have had my Preferences corrupted. I had forgotten to turn those auto-updates OFF - my bad.
    Let us know more about your display sub-system with make/model and driver info. That would be my "prime suspect" right now.
    As for the Elements material, I recall similar in Premiere Elements Styles going missing, but that was many versions ago, and doubt that anything in the solution to that problem would apply to Photoshop, but will go searching for that thread, just in case.
    Good luck,
    Hunt

  • Layer Styles Disappearing from my list

    When I first launch Photoshop and load a preset layer style I can get a full list of available presets to load. After clicking on an element and actually using a layer style on it I no longer can get my full list of available presets to load. The list is cut to 1/3 of the original list.
    So the full list is available and in the folder but once using a layer style it seems most of the layers styles disappear from the load menu. I have had no problem with this for months and made no changes over the last few days so this is mind boggling.
    Is this a known bug? Any suggestions?

    Hi there! Because the forum you originally posted in is for beginners trying to learn the basics of Photoshop, I moved your question to the Photoshop General Discussion forum, where you'll get more specialized help.
    To help others help you, please read through this article and provide any additional relevant details.

  • Filter plugin from scratch?

    Hello,
    currently trying to implement my own filter Plugin. I have a problem determining what is essential to a filter plugin. I got one of the example plugins working the way i want but its messy because there is all the stuff from the sample in it. I now want to build a plugin from scratch. Can anyone tell me how to do this? I couldnt find a tutorial or proper documentation.
    Regards Lukas

    You could look at the dozens of example plugins on my site, http://telegraphics.com.au/sw/ (mostly GPL, so source is available).

  • Photoshop CS2 Create Layer from Layer Style workaround?

    In newer versions of Photoshop I have created a layer from a layer style so I could edit the layer style directly .  Any way to do this in CS2? Workaround or equivalent?

    You can do the same thing in photoshop cs2
    Layer>Layer Style>Create Layers
    Or right click on the fx to the right of the layer thumbnail that has the layer style for the same options

  • Get layer style settings from the differences between 2 images.

    Hello People,
    I have a question:
    Is it possible to get the layer style settings when I have 1 image with the layer style and 1 without it.
    Let's say I have an icon that's just a house.
    [img]http://s6.postimage.org/xfpzl5hl9/image.png[/img]
    And I have a house with outer glow.
    [img]http://s6.postimage.org/h6un7v2a5/0_h.png[/img]
    Is it then possible to get the settings used in the outer glow?
    greets Ruud.

    You won't get the actual numerical settings, but if you load both layers in the same document, and change the blend mode of the top layer to Difference, you can see the difference between the two images.  Thus:

Maybe you are looking for