Converting PMString to std::wstring in InDesign CS6

I'd have to get the filepath of a resource of the opened document to a std::wstring.
I can easily get the filepath of the resource as a PMString:
InterfacePtr< ILinkResource > pResource( GetDataBase( LinkManager ), ResourceUIDRef.GetUID(), UseDefaultIID() );
PMString ResourceFilepath = pResource->GetLongName( false );
The problem is that I'd have to convert the PMString to a std::wstring without losing any of the information. The path may contain special characters like Arabic or Chinese so just converting the string to a std::string with GetPlatformString() won't get the job done.
Should I even grab the PMString or should I just use WideString from GetLongName() and somehow get the conversion done for that? StringUtils has a ConvertWideStringToUTF8 but it also seems to give out std::string.
So to put the long story short: How to correctly convert PMString to std::wstring?
The plug-in will be used in Windows environment.

I ended up using GrabUTF16Buffer() from WideString. This way I never needed to use PMString.
std::wstring wszResourceFilepath( reinterpret_cast< const wchar_t* >( pResource->GetLongName( false ).GrabUTF16Buffer( 0 ) ) );
Though now I managed to run to a completely new problem.
I'm using RelinkResource from LinkFacade and it requires a URI. URI has a constructor that takes a WideString so I presumed it would handle the wide string well. However it seems that if the WideString includes special characters (let's say Chinese) and then it is given for the URI constructor the URI won't work and then relinking will fail.
// A small sample code.
std::wstring wszResourcePath = L"file:" + wszFullpath; // wszFullpath is an std::wstring that has a filepath with special characters.
WideString ResourcePathForURI( wszResourcePath.c_str() );
URI URIResourcePath( ResourcePathForURI );
WideString ReverseFromURI = URIResourcePath.GetURIW();
std::wstring wszCorrect( reinterpret_cast< const wchar_t* >( ResourcePathForURI.GrabUTF16Buffer( 0 ) ) ); // This one has the same string as wszResourcePath on the first line.
std::wstring wszIncorrect( reinterpret_cast< const wchar_t* >( ReverseFromURI.GrabUTF16Buffer( 0 ) ) ); // All this has is L"/"
Am I doing something wrong here constructing the URI this way or should I use a different method for relinking?

Similar Messages

  • InDesign cs6 crashes when I export to an epub file.

    The file orginally was a cs5.5 file. I have tried rebuilding the file in a new digital file but that hasn't worked. When I save it to open it in cs5.5, I can export to an epub file without any problem. I don't know what I'm doing  wrong.  I'm running OS 10.7 and I have 4 Gigs of memory.  I upgraded to cs6 principally because the advanced epub ability as I'll be publishing mainly e-books. Help! What's happening?
    Here is the beginnings of the crash report. (I tried using a converted IDML file.)
    Process: Adobe InDesign CS6 [1298]
    Path: /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Identifier: com.adobe.InDesign
    Version: 8.0.0.370 (8000)
    Code Type: X86 (Native)
    Parent Process:  launchd [271]
    Date/Time: 2012-05-27 17:20:00.866 -0400
    OS Version: Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          -7314 sec
    Per-App Interval Since Last Report:  262 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID: 312E1911-54EA-4BAB-B989-09606B5F50C7
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO 0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
        __TEXT 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Application Specific Information:
    objc[1298]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.InDesign.EBookExport            0x19f1c5c9 0x19ee0000 + 247241
    1   com.adobe.InDesign.EBookExport            0x19f1f0a7 0x19ee0000 + 258215
    2   com.adobe.InDesign.EBookExport            0x19f26d34 0x19ee0000 + 290100
    3   com.adobe.InDesign.EBookExport            0x19f26d07 0x19ee0000 + 290055
    4   com.adobe.InDesign.EBookExport            0x19f26d07 0x19ee0000 + 290055
    5   com.adobe.InDesign.EBookExport            0x19f19ffb 0x19ee0000 + 237563
    6   com.adobe.InDesign.EBookExport            0x19f602ff GetPlugIn + 210559
    7   com.adobe.InDesign.EBookExport            0x19f62df9 GetPlugIn + 221561
    8   com.adobe.InDesign.EBookExport            0x19eec25c 0x19ee0000 + 49756
    9   PublicLib.dylib 0x01722c62 CExportProvider::ExportToFile(IDFile const&, IDocument*, IPMUnknown*, PMString const&, K2::UIFlags) + 370
    10  com.adobe.InDesign.Import Export UI            0x0f23461a GetPlugIn + 19946
    11  com.adobe.InDesign.Import Export UI            0x0f233307 GetPlugIn + 15063
    12  com.adobe.InDesign.Import Export UI            0x0f2316f6 GetPlugIn + 7878
    13  com.adobe.InDesign.Actions                0x17103bc4 GetPlugIn + 19908
    14  com.adobe.InDesign.Actions                0x171087b2 GetPlugIn + 39346
    15  com.adobe.InDesign.AppFramework            0x0df70614 0xdf60000 + 67092
    16  com.apple.HIToolbox                       0x9be13dec _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    17  com.apple.HIToolbox                       0x9bc8f4f3 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    18  com.apple.HIToolbox                       0x9bc8e970 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCall Rec + 482
    19  com.apple.HIToolbox                       0x9bca3755 SendEventToEventTarget + 76
    20  com.adobe.InDesign.AppFramework            0x0df6ee21 0xdf60000 + 60961
    21  com.adobe.InDesign.AppFramework            0x0df8d327 GetPlugIn + 12007
    22  com.adobe.InDesign                        0x00001ec5 main + 341
    23  com.adobe.InDesign                        0x00001d55 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                    0x99b6490a kevent + 10
    1   libdispatch.dylib                         0x904ace10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib 0x904ab85f _dispatch_mgr_thread + 53
    Message was edited by: JSiamon

    Thanks for your response. I just gave up and rebuilt the file and now the file is fine. Incidentally, I had created two InDesign book files at the same time and one opened in CS6 without any problem. Both use the same chapter head graphics -- so who knows what strange beasts these computer programs are.

  • How do I create a Table of Contents in InDesign CS6 for print that easily converts to epub?

    How do I create a Table of Contents in InDesign CS6 for a print book that easily converts to epub? 
    Can anyone point me to a link for a step-by-step (not a video) on setting up all the elements of a print book properly (pages, table of contents and index) so they will convert and reflow perfectly from print to epub in InDesign CS6. This is not about building an ebook from ground up, but taking 50 backlisted print books (converted from old versions of Quark to InDesign) that now need to be converted to epub formats.
    OR could someone point me to the link in the Adobe InDesign CS6 support that explains how to create a Table of Contents for a print book (5.5" x 8.5", 288 pages), one that will convert when the file is converted to ePub (for MAC OSX)?
    Just downloaded the 706 page inDesign CS6 reference manual from Adobe <http://helpx.adobe.com/pdf/indesign_reference.pdf>  but there's not even a search feature on the pdf file.
    Up until this week, we have only done print books, creating the TOC the old fashioned way, as a fixed page, comprised of two columns: page numbers and chapters/subject. The files I have created are taken by our printer and printed beautifully.
    However, when I convert the same book to epub in CS6, the character and paragraph styles converted beautifully - but everything else is all over the place! The table of contents is on different pages, the columns split apart. That goes for the page contents as well - everything is all over the place. when it's converted to a pdf -- total perfection. Never any problems converting with perfection to pdf format and reading those on the various readers.
    (Thank you so much in advance for any help).

    <http://helpx.adobe.com/pdf/indesign_reference.pdf> Adobe Digital Reader does have a search feature for reading pdfs. Found the TOC instructions on page 176 of 706 pages. 

  • InDesign CS6 - converting to pdf breaks url

    I have a situation with InDesign CS6 where a document is created, a URL is attached to a word and saved.  then it is exported to a pdf, and the URL breaks - putting in characters in place of the correct characters and symbols.  Please advise of a solution for this.  Using Creative Cloud InDesign CS6 on a Windows 7 64 bit laptop.

    ok I tried that, but it did not work. This is the URl prior to exporting it to pdf:
    http://events.constantcontact.com/register/event?oeidk=a07e847bitbbff3608b
    this is the url after exporting it to pdf:
    http://events.constantcontact.com/register/event%3Foeidk%3Da07e847bitbbff3608b
    if you notice - it takes the ? and converts it to %3F and the = it converts to %3D.
    I export the file which converts it to pdf, and make sure the url option is selected.

  • InDesign CS6 Std working and accessing ID files over WAN.

    Could you please share experiences Windows 7 64 bit InDesign CS6 Std opening and working with 100-120MB files over public ISP WAN using VPN?
    Right now  very often we experience unresponsive screens of CS6, while nothing happens during 10 minutes and ID needs to be closed from Task manager.
    Usually this is a result of some action, ID button or mouse click.
    Background is, that enterprise has a central InDesign file depository, where ID files can be accessed and worked with from different countries.
    While transfer speed of our local ISP is 20/10 Mbit, depository side server real life bandwidth and server access speeds are variable and unknown.
    Is there some option to set up in local PC, which could improve performance over WAN?

    I agree with Bob. For best performance, I'd recommend copying the files locally if possible. Although it's very common to work over a LAN, I beleive that Adobe's official policy is that they don't support working over a network. What this means is that if you call Adobe support with a problem, they'll have you copy the file locally. If that solves the problem, they're done. This is their way of avoiding network troubleshooting for hundreds of different types of servers.

  • Can I convert an InDesign CS6 interactive file to a PPP?

    Hi,
    I'm designing a company presentation in InDesign CS6, with interactive features.
    It will be exported to several formats, as Flash. However, ID doesn't include PPP.
    Is there a way of exporting the document to a PPP?
    If so, is the interactivity lost (ie. slides export as static)?
    Would it be a workable (ie. editable) PPP?
    Is anybody experienced with this issue?
    Thanks for your help!

    http://www.recosoft.com/products/id2office/
    Not sure if the interactive stuff comes along for the ride - my initial thoughts are "no"
    However, PPP animations are much easier to setup, in my opinion.

  • Why does InDesign CC crash every time I open an InDesign CS6 file?

    Every time I try to open one of my Indesign CS6 files, Indesign CC crashes. Shouldn't these two be compatible?
    It opens it for a second, and the program crashes immediately. I thought paying for Adobe CC monthly meant that these obvious problems would be patched quickly.
    I've submitted at least 10 crash reports to Adobe, I'm sure I'm not the only one.
    I'm on a mid-2010 Macbook Pro i5 2.4 Ghz, 8gb RAM. Please see the crash report below.
    Process:         Adobe InDesign CC [34118]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.0.0.244 (9000)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [283]
    User ID:         501
    Date/Time:       2013-07-23 01:21:12.523 +0800
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          25532 sec
    Crashes Since Last Report:           48319
    Per-App Interval Since Last Report:  194 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D4831B50-9C57-8265-8CED-515C2F837F9C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000032b065a7c
    VM Regions Near 0x32b065a7c:
        __LINKEDIT             0000000201b74000-0000000201be3000 [  444K] r--/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    -->
        STACK GUARD            00007fff5bc00000-00007fff5f400000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AGM                           0x0000000101e9c2ae 0x101b6a000 + 3351214
    1   com.adobe.AGM                           0x0000000101e9ce4f 0x101b6a000 + 3354191
    2   com.adobe.AGM                           0x0000000101ef8ceb 0x101b6a000 + 3730667
    3   com.adobe.AGM                           0x0000000101f0a627 0x101b6a000 + 3802663
    4   com.adobe.AGM                           0x0000000101f0b6ef 0x101b6a000 + 3806959
    5   com.adobe.AGM                           0x0000000101f0e111 0x101b6a000 + 3817745
    6   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    7   com.adobe.InDesign.AppFramework          0x000000010f233bf5 0x10f208000 + 179189
    8   PublicLib.dylib                         0x0000000101153456 PathPageItem::Fill(IGraphicsPort*) + 406
    9   PublicLib.dylib                         0x000000010119ea80 CGraphicFrameShape::DrawShape_Fill(GraphicsData*, int) + 320
    10  PublicLib.dylib                         0x000000010119e87c CGraphicFrameShape::DrawShape(GraphicsData*, int) + 76
    11  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    12  PublicLib.dylib                         0x00000001011a284c CShape::DrawHierarchy(GraphicsData*, int) + 396
    13  PublicLib.dylib                         0x000000010119f2c0 CGraphicFrameShape::DrawShape_Hierarchy(GraphicsData*, int) + 1920
    14  PublicLib.dylib                         0x000000010119e8b3 CGraphicFrameShape::DrawShape(GraphicsData*, int) + 131
    15  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    16  com.adobe.InDesign.Group                0x000000011122cade 0x111229000 + 15070
    17  com.adobe.InDesign.Generic Page Item          0x0000000111a16798 0x1119e7000 + 194456
    18  com.adobe.InDesign.Group                0x000000011122c994 0x111229000 + 14740
    19  com.adobe.InDesign.Group                0x000000011122c014 0x111229000 + 12308
    20  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    21  com.adobe.InDesign.Layer                0x0000000112787cf1 0x112782000 + 23793
    22  com.adobe.InDesign.Generic Page Item          0x0000000111a16798 0x1119e7000 + 194456
    23  com.adobe.InDesign.Layer                0x0000000112787ba9 0x112782000 + 23465
    24  com.adobe.InDesign.Layer                0x000000011278754c 0x112782000 + 21836
    25  com.adobe.InDesign.Spread               0x0000000114d936a9 0x114d8b000 + 34473
    26  com.adobe.InDesign.Spread               0x0000000114d9173d 0x114d8b000 + 26429
    27  com.adobe.InDesign.Spread               0x0000000114d8ede9 0x114d8b000 + 15849
    28  com.adobe.InDesign.AppFramework          0x000000010f237b84 0x10f208000 + 195460
    29  PublicLib.dylib                         0x000000010129dc5f 0x1010ab000 + 2042975
    30  PublicLib.dylib                         0x000000010129d607 SnapshotUtilsEx::Draw(int, unsigned int, PMReal const&, unsigned int, SnapshotUtils::Transparencies, IdleTimer*, std::map<IDType<ClassID_tag>, PMReal, std::less<IDType<ClassID_tag> >, std::allocator<std::pair<IDType<ClassID_tag> const, PMReal> > >*, unsigned int) + 87
    31  com.adobe.InDesign.Layout               0x0000000112a3e75a 0x112a2c000 + 75610
    32  com.adobe.InDesign.Layout               0x0000000112a3de14 0x112a2c000 + 73236
    33  com.adobe.InDesign.AppFramework          0x000000010f25324f 0x10f208000 + 307791
    34  com.adobe.InDesign.AppFramework          0x000000010f252c8b 0x10f208000 + 306315
    35  com.adobe.InDesign.Application UI          0x000000010f552f4d 0x10f420000 + 1257293
    36  com.apple.AppKit                        0x00007fff8f27621a -[NSApplication run] + 636
    37  com.adobe.exo.framework                 0x00000001028a7e98 exo::app::OS_AppBase::RunEventLoop() + 56
    38  com.adobe.InDesign.AppFramework          0x000000010f315ff3 0x10f208000 + 1105907
    39  com.adobe.InDesign.AppFramework          0x000000010f315182 0x10f208000 + 1102210
    40  com.adobe.InDesign                      0x0000000100001dbc main + 412
    41  com.adobe.InDesign                      0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff92fb8d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b784dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b7849ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff9012a023 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff89e1e406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff89d80a98 MPWaitOnQueue + 252
    4   PMRuntime.dylib                         0x000000010165ebe1 0x10165d000 + 7137
    5   com.apple.CoreServices.CarbonCore          0x00007fff89df57e0 PrivateMPEntryPoint + 58
    6   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff92fb6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff92fb5c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff89e1b3dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010f300f22 0x10f208000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010f300517 0x10f208000 + 1017111
    4   com.adobe.InDesign.AppFramework          0x000000010f2fda97 0x10f208000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010f301abd 0x10f208000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010f301a43 0x10f208000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010f301a02 0x10f208000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010f300f22 0x10f208000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010f300517 0x10f208000 + 1017111
    4   com.adobe.InDesign.AppFramework          0x000000010f2fda97 0x10f208000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010f301abd 0x10f208000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010f301a43 0x10f208000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010f301a02 0x10f208000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff92fb8386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff901af800 nanosleep + 163
    2   com.adobe.InDesign.Support for JavaScript          0x0000000115030818 0x114fdd000 + 342040
    3   com.adobe.InDesign.Support for JavaScript          0x0000000115017a3e 0x114fdd000 + 240190
    4   com.adobe.InDesign.Support for JavaScript          0x00000001150303d5 0x114fdd000 + 340949
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff92fb82aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x0000000117a9e231 0x117a86000 + 98865
    2   ServiceManager-Launcher.dylib           0x0000000117a9d5d6 0x117a86000 + 95702
    3   ServiceManager-Launcher.dylib           0x0000000117a9c678 0x117a86000 + 91768
    4   ServiceManager-Launcher.dylib           0x0000000117a9c6e6 0x117a86000 + 91878
    5   ServiceManager-Launcher.dylib           0x0000000117a972e4 0x117a86000 + 70372
    6   ServiceManager-Launcher.dylib           0x0000000117a97cfe 0x117a86000 + 72958
    7   ServiceManager-Launcher.dylib           0x0000000117a97c0b 0x117a86000 + 72715
    8   ServiceManager-Launcher.dylib           0x0000000117a9b36e 0x117a86000 + 86894
    9   ServiceManager-Launcher.dylib           0x0000000117a9b4b2 0x117a86000 + 87218
    10  ServiceManager-Launcher.dylib           0x0000000117a9b26d 0x117a86000 + 86637
    11  ServiceManager-Launcher.dylib           0x0000000117a9b1e6 0x117a86000 + 86502
    12  ServiceManager-Launcher.dylib           0x0000000117a89916 0x117a86000 + 14614
    13  ServiceManager-Launcher.dylib           0x0000000117a8db05 0x117a86000 + 31493
    14  ServiceManager-Launcher.dylib           0x0000000117a9be46 0x117a86000 + 89670
    15  ServiceManager-Launcher.dylib           0x0000000117a9def3 0x117a86000 + 98035
    16  libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010f300f22 0x10f208000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010f3005c8 0x10f208000 + 1017288
    4   com.adobe.InDesign.AppFramework          0x000000010f2fda97 0x10f208000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010f301abd 0x10f208000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010f301a43 0x10f208000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010f301a02 0x10f208000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000011ea7e44b 0x11ea39000 + 283723
    3   MultiProcessor Support                  0x000000011ea7e303 0x11ea39000 + 283395
    4   MultiProcessor Support                  0x000000011ea9e394 0x11ea39000 + 414612
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 10:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000011ea7e44b 0x11ea39000 + 283723
    3   MultiProcessor Support                  0x000000011ea7e303 0x11ea39000 + 283395
    4   MultiProcessor Support                  0x000000011ea9e394 0x11ea39000 + 414612
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 11:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff92fb80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff90129fe9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000011ea7e44b 0x11ea39000 + 283723
    3   MultiProcessor Support                  0x000000011ea7e303 0x11ea39000 + 283395
    4   MultiProcessor Support                  0x000000011ea9e394 0x11ea39000 + 414612
    5   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff92fb86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90127f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90127d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff901121d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff92fb86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90127f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90127d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff901121d1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff92fb86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff90127f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff90127d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff901121d1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff92fb66c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x0000000101affa38 ACEHasFeature + 527320
    2   com.adobe.ACE                           0x0000000101aff10e ACEHasFeature + 524974
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff92fb66c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x0000000101affa38 ACEHasFeature + 527320
    2   com.adobe.ACE                           0x0000000101aff10e ACEHasFeature + 524974
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff92fb66c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x0000000101affa38 ACEHasFeature + 527320
    2   com.adobe.ACE                           0x0000000101aff10e ACEHasFeature + 524974
    3   libsystem_c.dylib                       0x00007fff901257a2 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff901121e1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000007fffffff  rbx: 0x0000000122b3c100  rcx: 0x000000012b065a80  rdx: 0x0000000000000000
      rdi: 0x0000000122b3c130  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfadd0  rsp: 0x00007fff5fbfad20
       r8: 0x0000000122b3c130   r9: 0x0000000000000000  r10: 0x0000000122b3c250  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x000000012b0144d4  r14: 0x0000000101e9c524  r15: 0x0000000000000000
      rip: 0x0000000101e9c2ae  rfl: 0x0000000000010247  cr2: 0x000000032b065a7c
    Logical CPU: 1
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.0.0.244 - 9000) <2F683D4B-A144-3E91-A0CA-3F9B6B1DA676> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <7EAF82B5-D2A0-3E46-96B1-61E4A9D819C9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <37C5A821-5118-3BCF-AC5E-F9C4FAE123A8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012bff7 +DV_WidgetBinLib.dylib (1) <6A40E798-D47A-3959-A04E-9361B010FAE3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001bf000 -        0x100204ff7 +TextPanelLib.dylib (1) <F06B61DF-F7D5-37AA-B1F5-BB5FA3737E62> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100221000 -        0x100382fff +WidgetBinLib.dylib (1) <7D51BAC1-7061-36C1-8C0E-CBF411371A56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100433000 -        0x1005fcff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10063f000 -        0x100883ff7 +com.adobe.dvacore.framework (7.0.849323 - 7.0.849323.0) <63BF29D6-62ED-3026-B93D-96CC42F4CF9E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094a000 -        0x100dd7ff7 +com.adobe.dvaui.framework (7.0.849323 - 7.0.849323.0) <6C4C227F-A5D6-3B4D-AD39-4B3C97D32440> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10106d000 -        0x10106dfff +com.adobe.InDesign.InDesignModel (9.0 - 0) <5A3F239E-E40A-3876-8DD9-0E5AEDB58098> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101072000 -        0x101080fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101096000 -        0x10109cff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ab000 -        0x101513fff +PublicLib.dylib (1) <9C2969EC-46E7-3AC9-ADDE-45951D87A220> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x10165d000 -        0x101667fff +PMRuntime.dylib (1) <E2DF4211-4A31-32BB-87F5-F0ADFFBFACE8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101670000 -        0x101687ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101696000 -        0x1019a6ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019ee000 -        0x101a0bfff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a13000 -        0x101b57fff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6a000 -        0x10213bfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021d8000 -        0x102215fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10221d000 -        0x102243fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224b000 -        0x1027e4fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102861000 -        0x10287eff7 +com.adobe.dvaflashview.framework (7.0.849323 - 7.0.849323.0) <727F09EC-0D75-3C41-8553-54585B9408BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x102895000 -        0x102899ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a0000 -        0x102962fff +com.adobe.exo.framework (7.0.849323 - 7.0.849323.0) <60261EFB-3EF3-3201-9BE7-3CC7235B523B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1029ff000 -        0x102aadfff +com.adobe.dvaworkspace.framework (7.0.849323 - 7.0.849323.0) <412D9508-51FD-34D9-8B3E-FE9BD1EAC107> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b30000 -        0x1031adfcf +com.adobe.PlugPlug (4.0.0.172 - 4.0.0.172) <1B15941F-D885-3AC5-880F-D513DA868B00> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x103494000 -        0x1034c0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x1034db000 -        0x1034fafe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10351f000 -        0x104264fff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x104278000 -        0x1043a9ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x1043fd000 -        0x1044f3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x10452b000 -        0x104659fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046b4000 -        0x1047a3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047b6000 -        0x1047b8fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047be000 -        0x104875ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1048df000 -        0x10494eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104959000 -        0x104964fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x104973000 -        0x104977fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10497d000 -        0x104a1efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a3e000 -        0x104aa0ff7 +DataBaseLib.dylib (1) <F2D6864D-0813-3833-96A5-9D256A00375D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104ab4000 -        0x104b20fff +ObjectModelLib.dylib (1) <FDA08F73-D9C2-303E-AB18-564E50554517> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b3d000 -        0x104b61fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x105af8000 -        0x105afafff +com.adobe.InDesign.SimpleTextImportFilter (9.0.0.244 - 0) <A4823CC0-085B-3106-9A20-6D23E2591F03> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x105e42000 -        0x105e80fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x105e8c000 -        0x105e92fff +com.adobe.InDesign.Script Label Panel (9.0.0.244 - 0) <E1CE9519-9B72-327A-A350-94DECC74020A> /Applications/Adobe InDesign CC/*/Script Label Panel
           0x105e9e000 -        0x105eacff7 +com.adobe.InDesign.Scripts Panel (9.0.0.244 - 0) <A807C3AB-930E-3A5D-9228-77CE07DAC921> /Applications/Adobe InDesign CC/*/Scripts Panel
           0x105ebb000 -        0x105eedfff +com.adobe.InDesign.Conditional Text UI (9.0.0.244 - 0) <C5EB0EA6-A522-37B8-AD88-5100F0460946> /Applications/Adobe InDesign CC/*/Conditional Text UI
           0x105f08000 -        0x105f25ff7 +com.adobe.InDesign.Create Outlines (9.0.0.244 - 0) <D0C6613F-44D6-3889-8515-039A91A33FBD> /Applications/Adobe InDesign CC/*/Create Outlines
           0x105f32000 -        0x105f3cfff +com.adobe.InDesign.Justification Panel (9.0.0.244 - 0) <1E88B355-C440-3D79-B042-BC0B20008701> /Applications/Adobe InDesign CC/*/Justification Panel
           0x105fe4000 -        0x105fecfff +com.adobe.InDesign.Data Services UI (9.0.0.244 - 0) <7B0D3F37-5CB3-3C80-8C71-6EE35DAF0F57> /Applications/Adobe InDesign CC/*/Data Services UI
           0x105ff8000 -        0x105ff9ff7 +com.adobe.InDesign.Metadata Database Filter (9.0.0.244 - 0) <B6CEE02B-979B-385E-A393-FF3D08525330> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
           0x107a83000 -        0x107aa8ff7 +com.adobe.InDesign.Text Style Panel (9.0.0.244 - 0) <D4CC3047-F140-3B8A-B4C9-43C251DFCDBA> /Applications/Adobe InDesign CC/*/Text Style Panel
           0x107ab9000 -        0x107ae5fff +com.adobe.InDesign.Article Panel (9.0.0.244 - 0) <B27AF2DC-262C-3CBF-9B05-63BD5D1D308F> /Applications/Adobe InDesign CC/*/Article Panel
           0x107afe000 -        0x107b00ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x107f44000 -        0x107f70ff7 +com.adobe.InDesign.Find Change Format Panel (9.0.0.244 - 0) <06D18AEC-4C5D-3224-81AD-E3B2DA457E3C> /Applications/Adobe InDesign CC/*/Find Change Format Panel
           0x107f84000 -        0x107faefff +com.adobe.InDesign.Font Usage Dialog (9.0.0.244 - 0) <AB628101-A591-38EF-8BB2-84A8795C2746> /Applications/Adobe InDesign CC/*/Font Usage Dialog
           0x107fbe000 -        0x107fc1fff +com.adobe.InDesign.Global Preferences Panel (9.0.0.244 - 0) <41190407-7FB7-3A06-BE40-5A815559E124> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
           0x107feb000 -        0x107ff3fff +com.adobe.InDesign.Data Services (9.0.0.244 - 0) <FF804F79-F26A-32FD-9ABB-EE71673EF180> /Applications/Adobe InDesign CC/*/Data Services
           0x10ae89000 -        0x10ae98ff7 +com.adobe.InDesign.DTTransform (9.0.0.244 - 0) <C9DD2FAF-BABE-3B7E-AEBA-00306E030DEE> /Applications/Adobe InDesign CC/*/DTTransform
           0x10aea1000 -        0x10aedffff +com.adobe.InDesign.Dictionary Editor Dialog (9.0.0.244 - 0) <0D0DD4DC-6894-32DF-B96A-558862891888> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10b2b0000 -        0x10b2d6ff7 +com.adobe.InDesign.LILO (9.0.0.244 - 0) <9EBF6F94-9C67-38CE-8498-35AAB356F2B5> /Applications/Adobe InDesign CC/*/LILO
           0x10b2e4000 -        0x10b2edff7 +com.adobe.InDesign.PNG Import Filter UI (9.0.0.244 - 0) <3FAFE9A4-D233-3288-8686-515229F7EEB1> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x10b640000 -        0x10b69dfff +com.adobe.InDesign.Media Import Filter (9.0.0.244 - 0) <EF3386C3-F980-34EA-9EFF-64910373496F> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x10b6b0000 -        0x10b6daff7 +com.adobe.InDesign.Sangam Preferences UI (9.0.0.244 - 0) <2C6C6B32-5C33-300A-8AF1-AF545F1C0BD9> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x10b6ed000 -        0x10b6f5ff7 +com.adobe.InDesign.JPEG Export UI (9.0.0.244 - 0) <2F81D85C-3AFC-3BB4-B60F-3B3E3CB5B6FA> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10b800000 -        0x10b8dbfff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10b8f7000 -        0x10ba0cfff +com.adobe.InDesign.EBookExport (9.0.0.244 - 0) <86F6CE82-3182-32F0-A2EC-167B4F7862D6> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ba34000 -        0x10ba9dfff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.30369 - 5.65.0.30369) <BCD8B3F6-970F-3DEA-A583-7473FDDCA067> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10baeb000 -        0x10bb3cfff +com.adobe.InDesign.SangamExport (9.0.0.244 - 0) <0574175B-890E-36BC-B223-32EBEFB50B2F> /Applications/Adobe InDesign CC/*/SangamExport
           0x10bb53000 -        0x10bc94ff7 +com.adobe.InDesign.SangamServicer-Mapper (9.0.0.244 - 0) <4BAB90F5-52B7-374A-B9B6-7429C66EF9A4> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10bcb8000 -        0x10bcceff7 +com.adobe.InDesign.SaveBack (9.0.0.244 - 0) <C839FA45-F1DD-333E-B8FF-5E3CA5B24364> /Applications/Adobe InDesign CC/*/SaveBack
           0x10bcdc000 -        0x10bdafff7 +com.adobe.InDesign.Tagged Text Attributes (9.0.0.244 - 0) <3A0D3BCF-DDB7-3ECA-8148-C693809B9BC8> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10bdde000 -        0x10bdeafff +com.adobe.InDesign.Tagged Text Filters UI (9.0.0.244 - 0) <034B439C-F4BF-36D8-8FE5-DEE1807DDBA7> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10bdf5000 -        0x10be9afff +com.adobe.InDesign.Tagged Text Filters (9.0.0.244 - 0) <A34A0B6C-7D62-31F1-93B9-D1765CBEC93D> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10beaf000 -        0x10bebcfff +com.adobe.InDesign.Clipping Path Dialog (9.0.0.244 - 0) <16C1A307-2161-3A90-953D-F321E748615B> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x10bece000 -        0x10bf12ff7 +com.adobe.InDesign.Color Management UI (9.0.0.244 - 0) <D804A9E1-A2B6-37AD-B684-43C8E3CE4936> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10bf22000 -        0x10bf9eff7 +com.adobe.InDesign.Color Picker Panel (9.0.0.244 - 0) <B90A4418-E4D5-3D38-A487-4DEE7FF39A12> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10bfc6000 -        0x10c1dbff7 +com.adobe.InDesign.Digital Publishing (9.0.10.27 - 0) <2A91322D-7665-3F7F-A31B-C851BF548230> /Applications/Adobe InDesign CC/*/Digital Publishing
           0x10c35a000 -        0x10c36cfff +com.adobe.boost_filesystem.framework (7.0.847203 - 7.0.847203.0) <B0F56E9F-BAAB-34C5-93C4-C713203AB0DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
           0x10c37d000 -        0x10c3b5fef +libcurl.4.dylib (7) <FA1D87DC-8CBC-3645-8ADA-D974B6EDED53> /Applications/Adobe InDesign CC/*/libcurl.4.dylib
           0x10c3c0000 -        0x10c3e5fff  libssl.0.9.7.dylib (106) <F18836AF-72C8-36AA-9DAB-8286AFC46239> /usr/lib/libssl.0.9.7.dylib
           0x10c3f6000 -        0x10c4cfff7  libcrypto.0.9.7.dylib (106) <3E1B14DE-342B-318C-8F22-7B9CD88EE760> /usr/lib/libcrypto.0.9.7.dylib
           0x10c526000 -        0x10c5a6ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.0.0.244 - 0) <1BCEA1A3-0146-32B2-8BF7-8ABA0A5CAAEE> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c5cd000 -        0x10c5e9fff +com.adobe.InDesign.EPS UI (9.0.0.244 - 0) <605EEF62-9504-3D17-944E-C46531B8AE9F> /Applications/Adobe InDesign CC/*/EPS UI
           0x10c5fa000 -        0x10c606ff7 +com.adobe.InDesign.Generic Style Editor (9.0.0.244 - 0) <E3407643-34D1-351D-AD4A-FC83D64F1D94> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10c615000 -        0x10c64bfff +com.adobe.InDesign.Gradient Panel (9.0.0.244 - 0) <FEB32D3E-A743-37D7-AD55-0C7BE4C3A7F9> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10c662000 -        0x10c704fff +com.adobe.InDesign.Graphic Panels (9.0.0.244 - 0) <21F96085-EB7B-3120-8A14-0878423CE0EB> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10c72d000 -        0x10c748fff +com.adobe.InDesign.JPEG Export (9.0.0.244 - 0) <388494FD-CC7B-3DE7-95E0-168DB055E05B> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10c75a000 -        0x10c7abff7 +com.adobe.InDesign.Output Preview (9.0.0.244 - 0) <95F41A2C-23A1-35E3-997C-AC3E54B8122B> /Applications/Adobe InDesign CC/*/Output Preview
           0x10c7c5000 -        0x10c7dcff7 +com.adobe.InDesign.OutputMiscUI (9.0.0.244 - 0) <BA2B462B-F51B-3F6A-9784-C7E1A829521A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c7ef000 -        0x10c870fff +com.adobe.InDesign.PDF UI (9.0.0.244 - 0) <174E4555-5A58-3C01-8ACB-B3EB40200850> /Applications/Adobe InDesign CC/*/PDF UI
           0x10c894000 -        0x10c901fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10c90c000 -        0x10c923ff7 +com.adobe.InDesign.Printer Styles (9.0.0.244 - 0) <487F7052-DB11-3A2A-BE31-201DEC20FCEB> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10c932000 -        0x10ca14fff +com.adobe.InDesign.PrintUI (9.0.0.244 - 0) <F827F8F9-91CD-3A6A-836B-A674CA53B9FA> /Applications/Adobe InDesign CC/*/PrintUI
           0x10ca40000 -        0x10ca52ff7 +com.adobe.InDesign.PS Import UI (9.0.0.244 - 0) <0280417C-5563-3598-AA00-684D11F291D2> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10ca61000 -        0x10ca84fff +com.adobe.InDesign.Swatch Library Panel (9.0.0.244 - 0) <20A34F07-0480-302C-8438-F356D7451012> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10ca93000 -        0x10cb50ff7 +com.adobe.InDesign.Swatches Panel (9.0.0.244 - 0) <E9653217-9232-31D7-8B55-7460A27289E3> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10cb86000 -        0x10cc35ff7 +com.adobe.InDesign.Transparency UI (9.0.0.244 - 0) <03830CAC-DF7D-3605-9963-4DA645248281> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10cc68000 -        0x10ccccfff +com.adobe.InDesign.Assignment UI (9.0.0.244 - 0) <C4DC67CA-6464-361D-8F96-AC7383158809> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10ccee000 -        0x10cd11fff +com.adobe.InDesign.InCopy Bridge UI (9.0.0.244 - 0) <FA141EE1-E99A-3D03-BE6C-A2E545821E8C> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10cd1f000 -        0x10cd5eff7 +com.adobe.InDesign.InCopy Bridge (9.0.0.244 - 0) <D5E4E3B1-A43B-3417-AF70-78C223C798A0> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10cd6e000 -        0x10cd76fff +com.adobe.InDesign.InCopyExport (9.0.0.244 - 0) <81D645C8-B39C-3FFE-9A1D-55D7E7D8F46E> /Applications/Adobe InDesign CC/*/InCopyExport
           0x10cd80000 -        0x10cd87ff7 +com.adobe.InDesign.InCopyExportUI (9.0.0.244 - 0) <713F0E2D-1802-36CA-8E10-FF322C3E2259> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x10cd90000 -        0x10cd97fff +com.adobe.InDesign.InCopyImport (9.0.0.244 - 0) <DC5E347C-82A8-3A05-B233-E0CBC1CD5C67> /Applications/Adobe InDesign CC/*/InCopyImport
           0x10cd9e000 -        0x10cda6fff +com.adobe.InDesign.InCopyWorkflow UI (9.0.0.244 - 0) <B5F00DC3-482D-3FCA-BD7E-67CF432C75A8> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x10cdb1000 -        0x10ce08ff7 +com.adobe.InDesign.Note (9.0.0.244 - 0) <39574DCB-0795-3067-84CF-0FB12B9E4881> /Applications/Adobe InDesign CC/*/Note
           0x10ce28000 -        0x10ce33ff7 +com.adobe.InDesign.NotePref (9.0.0.244 - 0) <95C54A58-F9FD-3374-B600-705525389FF3> /Applications/Adobe InDesign CC/*/NotePref
           0x10ce41000 -        0x10ce46ff7 +com.adobe.InDesign.Username UI (9.0.0.244 - 0) <85772C26-BB2E-34BB-B733-E08E4966949A> /Applications/Adobe InDesign CC/*/Username UI
           0x10ce50000 -        0x10cef1ff7 +com.adobe.InDesign.ButtonUI (9.0.0.244 - 0) <E55C1B03-3F82-3971-841B-56EB21F8ED20> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10cf20000 -        0x10cf48ff7 +com.adobe.InDesign.MediaUI (9.0.0.244 - 0) <C42F3AD6-9E13-3C9A-BC49-A93F440751C0> /Applications/Adobe InDesign CC/*/MediaUI
           0x10cf5d000 -        0x10cf6dfff +com.adobe.InDesign.Alignment Panel (9.0.0.244 - 0) <4801B0C6-C22C-3384-AB5E-5FCF75DD308D> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10cf76000 -        0x10cfbdfff +com.adobe.InDesign.Asset Library Panel (9.0.0.244 - 0) <DFD7A06A-9BE0-3FA3-AA41-66A68C0A0957> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10cfe1000 -        0x10d04eff7 +com.adobe.InDesign.Asset PubLibrary (9.0.0.244 - 0) <1FB73D92-A75B-39B0-91F8-02AB32E6D0E3> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10d06c000 -        0x10d0b9ff7 +com.adobe.InDesign.Book Panel (9.0.0.244 - 0) <0306739B-78D6-30D6-9705-6DFE711C8EE7> /Applications/Adobe InDesign CC/*/Book Panel
           0x10d0dc000 -        0x10d0f8fff +com.adobe.InDesign.Bookmark Panel (9.0.0.244 - 0) <19756A8B-1C5A-320E-A6D2-3D763B15947F> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10d10f000 -        0x10d148fff +com.adobe.InDesign.ContentDropper Tool (9.0.0.244 - 0) <DB93021C-DD9A-3CA4-AF06-CC3ECEFA946B> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10d166000 -        0x10d1acff7 +com.adobe.InDesign.Control Panel (9.0.0.244 - 0) <AF496EDF-D413-3344-8805-7D9F1DB11DC7> /Applications/Adobe InDesign CC/*/Control Panel
           0x10d1c9000 -        0x10d1d3fff +com.adobe.InDesign.Create Guides Dialog (9.0.0.244 - 0) <7F35F38E-FA21-3692-82C1-BCE747EE3CEB> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10d1de000 -        0x10d218fff +com.adobe.InDesign.Eyedropper Tool (9.0.0.244 - 0) <A8E7360A-E42A-3790-B998-83398E336316> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10d22d000 -        0x10d2bafff +com.adobe.InDesign.Hyperlinks Panel (9.0.0.244 - 0) <72C51910-CC5C-3B7D-8331-70195952E7A5> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10d2df000 -        0x10d36ffff +com.adobe.InDesign.Index Panel (9.0.0.244 - 0) <EC33F8C3-4233-3790-B4AF-5AB31B6956FC> /Applications/Adobe InDesign CC/*/Index Panel
           0x10d38f000 -        0x10d39bff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10d3a6000 -        0x10d40efff +com.adobe.InDesign.Info Panel (9.0.0.244 - 0) <0BDD7C10-8F5D-3507-B772-EFCBE4AE1ED0> /Applications/Adobe InDesign CC/*/Info Panel
           0x10d426000 -        0x10d4eafff +com.adobe.InDesign.Knowledge Base (9.0.0.244 - 0) <C979FEE9-EB01-3B48-AC45-EABE15DAF596> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10d4f4000 -        0x10d4f8fff +com.adobe.InDesign.Help (9.0.0.244 - 0) <63BF8C3C-9981-3B8C-A893-FFBA4AF1DE76> /Applications/Adobe InDesign CC/*/Help
           0x10d600000 -        0x10d653ff7 +com.adobe.InDesign.Layers Panel (9.0.0.244 - 0) <4BD4C9F5-7EF5-387C-AC72-40014E19D7F5> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10d675000 -        0x10d67afff +com.adobe.InDesign.Layout Adjustment Panel (9.0.0.244 - 0) <27CE7F02-93CA-348D-BC67-1571721BC4BF> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x10d683000 -        0x10d6a2fff +com.adobe.InDesign.Layout Adjustment (9.0.0.244 - 0) <D4DAC346-AE89-3BBE-BF0C-E449E34B4121> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10d6b1000 -        0x10d6fdff7 +com.adobe.InDesign.Links UI (9.0.0.244 - 0) <D2BA3E6B-66B8-36BB-B28F-FB41EAC0C74D> /Applications/Adobe InDesign CC/*/Links UI
           0x10d71f000 -        0x10d7c4ff7 +com.adobe.InDesign.ObjectStylesUI (9.0.0.244 - 0) <8805D797-3D6A-3231-9E5A-3954B2BC30FD> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10d7f4000 -        0x10d81afff +com.adobe.InDesign.Page Setup Dialog (9.0.0.244 - 0) <4F0302C1-D70D-3B22-AFD6-EA32AE0D393A> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10d827000 -        0x10d8ebfff +com.adobe.InDesign.Pages Panel (9.0.0.244 - 0) <DE2D5A98-5F85-3311-B09E-9391CE0AFA73> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10d91c000 -        0x10d92bfff +com.adobe.InDesign.Sections UI (9.0.0.244 - 0) <B7BE35B6-9BA8-33B7-88E1-9CD7E49745C3> /Applications/Adobe InDesign CC/*/Sections UI
           0x10d936000 -        0x10d940fff +com.adobe.InDesign.StepRepeat (9.0.0.244 - 0) <28502BE1-9A2D-338D-AC27-5CFFC9FC4DD8> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10d94c000 -        0x10d98bff7 +com.adobe.InDesign.Text Wrap Panel (9.0.0.244 - 0) <3197CB4D-952F-3BF9-A91C-F1490A2BA0A2> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10d9a4000 -        0x10d9e6fff +com.adobe.InDesign.TOC UI Dialog (9.0.0.244 - 0) <B330AAE5-4ECF-3687-B25B-A7E1087287EB> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10da00000 -        0x10da3cff7 +com.adobe.InDesign.Transform Panel (9.0.0.244 - 0) <916C8883-536E-3E8C-B321-DB90DDC4C072> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10da52000 -        0x10da6dfff +com.adobe.InDesign.Image Import UI (9.0.0.244 - 0) <314ED635-384F-3699-8494-A9713519B2E0> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10da7f000 -        0x10da95fff +com.adobe.InDesign.Scotch Rules (9.0.0.244 - 0) <67B1F4A9-CAF9-34E0-9C2F-70B47C09A2FB> /Applications/Adobe InDesign CC/*/Scotch Rules
           0x10daa0000 -        0x10db04ff7 +com.adobe.InDesign.BNUI (9.0.0.244 - 0) <5B87D18C-2A25-3037-B3CD-1EAA8B094D96> /Applications/Adobe InDesign CC/*/BNUI
           0x10db24000 -        0x10dbc5ff7 +com.adobe.InDesign.DataMerge (9.0.0.244 - 0) <E3EACAC8-853B-31BF-B69F-53A440363465> /Applications/Adobe InDesign CC/*/DataMerge
           0x10dbe5000 -        0x10dc19fff +com.adobe.InDesign.DataMergeUI (9.0.0.244 - 0) <CA9B9CCF-B643-3142-A15D-615DFA863E40> /Applications/Adobe InDesign CC/*/DataMergeUI
           0x10dc34000 -        0x10dd3cfff +com.adobe.InDesign.Package and Preflight UI (9.0.0.244 - 0) <DDE8D6F2-3604-3802-B177-5EA59BAEF0FF> /Applications/Adobe InDesign CC/*/Package and Preflight UI
           0x10dd7b000 -        0x10dfdefff +com.adobe.InDesign.Package and Preflight (9.0.0.244 - 0) <056ABF0A-3875-30B9-8D40-0491E8E75708> /Applications/Adobe InDesign CC/*/Package and Preflight
           0x10e024000 -        0x10e112fff +com.adobe.InDesign.JBX (9.0.0.244 - 0) <7E93A162-4087-3E56-92BB-558019173520> /Applications/Adobe InDesign CC/*/JBX
           0x10e13c000 -        0x10e2c3ff7 +com.adobe.InDesign.SettingsInCloud (9.0.0.244 - 0) <2E718598-B183-3EB6-88BF-516A57533D99> /Applications/Adobe InDesign CC/*/SettingsInCloud
           0x10e351000 -        0x10e436fff +com.adobe.InDesign.Tables UI (9.0.0.244 - 0) <8423E141-41C2-3801-81ED-A63CB05944BA> /Applications/Adobe InDesign CC/*/Tables UI
           0x10e465000 -        0x10e509ff7 +com.adobe.InDesign.TableStylesUI (9.0.0.244 - 0) <85361E78-9B46-3C59-B300-BB4438C5E484> /Applications/Adobe InDesign CC/*/TableStylesUI
           0x10e535000 -        0x10e5c1ff7 +com.adobe.InDesign.Character Panel (9.0.0.244 - 0) <36A39281-11AF-3906-9704-AD62934A4381> /Applications/Adobe InDesign CC/*/Character Panel
           0x10e5fd000 -        0x10e722ff7 +com.adobe.InDesign.Find and Change Panel (9.0.0.244 - 0) <5E843CB3-3F2C-320E-99F1-EFE36E0BEB66> /Applications/Adobe InDesign CC/*/Find and Change Panel
           0x10e75f000 -        0x10e82ffff +com.adobe.InDesign.Glyphs Panel (9.0.0.244 - 0) <C2DCCEFD-568E-338A-8062-C597FCD7DED5> /Applications/Adobe InDesign CC/*/Glyphs Panel
           0x10e853000 -        0x10e85dfff +com.adobe.InDesign.Hyphenation Panel (9.0.0.244 - 0) <8D94B764-6772-37E0-894F-015DA432C5A3> /Applications/Adobe InDesign CC/*/Hyphenation Panel
           0x10e86a000 -        0x10e87dff7 +com.adobe.InDesign.Indents and Tabs (9.0.0.244 - 0) <6BEEEACB-1746-3C07-8FD9-6F9FA8B3F94E> /Applications/Adobe InDesign CC/*/Indents and Tabs
           0x10e88c000 -        0x10e894ff7 +com.adobe.InDesign.Keeps Panel (9.0.0.244 - 0) <9098A274-E93C-34AA-96D8-915D9E4F8628> /Applications/Adobe InDesign CC/*/Keeps Panel
           0x10e89c000 -        0x10e8bcff7 +com.adobe.InDesign.Optical Kerning (9.0.0.244 - 0) <BA5A40EB-931E-37DC-997F-234F354CBD7A> /Applications/Adobe InDesign CC/*/Optical Kerning
           0x10e8c7000 -        0x10e8fbff7 +com.adobe.InDesign.Paragraph Panel (9.0.0.244 - 0) <F6D20772-BAB5-3C9E-8EE0-23EA381E2508> /Applications/Adobe InDesign CC/*/Paragraph Panel
           0x10e90e000 -        0x10e920ff7 +com.adobe.InDesign.Paragraph Rules Panel (9.0.0.244 - 0) <C2DFFD8B-8075-361B-B832-F96F2C78C483> /Applications/Adobe InDesign CC/*/Paragraph Rules Panel
           0x10e92a000 -        0x10e941fff +com.adobe.InDesign.Path Type UI (9.0.0.244 - 0) <E18681DE-0DA3-35D2-AB20-A5B13FAF495E> /Applications/Adobe InDesign CC/*/Path Type UI
           0x10e951000 -        0x10e95bff7 +PathTypeLib.dylib (1) <1EAC22A3-1B0A-3025-BBC1-7064D4CFB153> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PathTypeLib.dylib
           0x10e964000 -        0x10e991fff +com.adobe.InDesign.RunIn Styles Panel (9.0.0.244 - 0) <E822416C-FDB8-3AEC-8D24-115C766259F5> /Applications/Adobe InDesign CC/*/RunIn Styles Panel
           0x10e9a3000 -        0x10e9b4fff +com.adobe.InDesign.SING (9.0.0.244 - 0) <D1B2138D-3CB7-3A41-9BA0-E05D15D9656F> /Applications/Adobe InDesign CC/*/SING
           0x10e9be000 -        0x10e9c8ff7 +com.adobe.InDesign.Span Columns Panel (9.0.0.244 - 0) <1125B9B0-0A27-310E-B80A-30DD311BA363> /Applications/Adobe InDesign CC/*/Span Columns Panel
           0x10e9d1000 -        0x10ea1dff7 +com.adobe.InDesign.Spelling Panel (9.0.0.244 - 0) <5003DC67-9AE6-3261-8577-D91DA1DF1455> /Applications/Adobe InDesign CC/*/Spelling Panel
           0x10ea37000 -        0x10ea4bff7 +com.adobe.InDesign.Story Panel (9.0.0.244 - 0) <B52F7C54-8E7A-3853-98CC-B3EF7EA96942> /Applications/Adobe InDesign CC/*/Story Panel
           0x10ea5f000 -        0x10eaa4ff7 +com.adobe.pip (7.0.0.1768) <F022E031-1429-354F-B718-70F001B342EF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x10eab0000 -        0x10eaccff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x10ead1000 -        0x10ead2ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10ead9000 -        0x10ead9fff +DTraceSupport.dylib (1) <E54DF20B-C169-68CF-A3F5-0470DEFF1C8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DTraceSupport.dylib
           0x10eadd000 -        0x10eb58ff7 +com.adobe.InDesign.Style Panel (9.0.0.244 - 0) <5D67389F-C634-36C3-8564-C5B2AEA159A1> /Applications/Adobe InDesign CC/*/Style Panel
           0x10eb80000 -        0x10eb8dff7 +com.adobe.InDesign.Text Color Panel (9.0.0.244 - 0) <D62B34BB-30BA-3165-9CB3-82FF2057CF3F> /Applications/Adobe InDesign CC/*/Text Color Panel
           0x10eb96000 -        0x10ebc2ff7 +com.adobe.InDesign.Text Frame Options (9.0.0.244 - 0) <85EAFB07-5AE8-34EC-84B8-7D77BFD4F701> /Applications/Adobe InDesign CC/*/Text Frame Options
           0x10ebd3000 -        0x10ec38fff +com.adobe.InDesign.Text Panel (9.0.0.244 - 0) <D85A6FE1-E185-3B5B-A5FE-6512189E9AC5> /Applications/Adobe InDesign CC/*/Text Panel
           0x10ec5b000 -        0x10ec7dfff +com.adobe.InDesign.Text Preferences (9.0.0.244 - 0) <BE239C6C-7F13-3063-90D6-A79EC186FB7B> /Applications/Adobe InDesign CC/*/Text Preferences
           0x10ec8d000 -        0x10ecb0ff7 +com.adobe.InDesign.Text Ruler (9.0.0.244 - 0) <10D862DA-F8A2-3D6F-A2E6-F2A40C2D87CC> /Applications/Adobe InDesign CC/*/Text Ruler
           0x10ecc1000 -        0x10ecf0ff7 +com.adobe.InDesign.CSXS (9.0.0.244 - 0) <1625F389-67BC-36F1-A7E9-2A2A7FA89383> /Applications/Adobe InDesign CC/*/CSXS
           0x10ed08000 -        0x10ed40ff7 +com.adobe.InDesign.Galley Preferences (9.0.0.244 - 0) <E13290AE-89E4-3E2C-BDF7-5AB4DC750BE2> /Applications/Adobe InDesign CC/*/Galley Preferences
           0x10ed5b000 -        0x10ed7cfff +com.adobe.InDesign.GapTool (9.0.0.244 - 0) <661756AC-1112-3BF2-BBD5-51D66F6D6AC3> /Applications/Adobe InDesign CC/*/GapTool
           0x10ed8c000 -        0x10ed97ff7 +com.adobe.InDesign.General Preferences Panel (9.0.0.244 - 0) <1F1B6C89-1BA6-3F8D-AA55-DB2C7AF93939> /Applications/Adobe InDesign CC/*/General Preferences Panel
           0x10eda2000 -        0x10edb5ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10edbc000 -        0x10edd8ff7 +com.adobe.InDesign.Performance UI (9.0.0.244 - 0) <C0BD9765-3830-3325-8BC7-9C70845D2FD0> /Applications/Adobe InDesign CC/*/Performance UI
           0x10eded000 -        0x10ee11ff7 +com.adobe.InDesign.SharedContentUI (9.0.0.244 - 0) <2595422B-527B-390D-B8AD-9264098D58B0> /Applications/Adobe InDesign CC/*/SharedContentUI
           0x10ee20000 -        0x10ee46fff +com.adobe.InDesign.Shortcut Editor Dialog (9.0.0.244 - 0) <8C33E2E0-CCCE-3AEE-8214-E07EAE8A3B9A> /Applications/Adobe InDesign CC/*/Shortcut Editor Dialog
           0x10ee5a000 -        0x1

    In future, please put your crash reports on pastebin.com and provide a link here. Thanks.
    Your crash indicates a problem in the Adobe Graphic Manager module, I think, but curiously the VM regions listed are not related to ID or any Adobe Product. One of them appears to be the video driver, and the other is Stackguard which I believe is most likely part of the OS.
    Is this happening with ALL CS6 files, or only one or two?

  • InDesign CS6 Crashes when opening any document from the network

    Below are my notes on this issue along with the useless crash reports that Adobe and Apple ignore.
    File location showing now special or reserved words in path: /Volumes/design/Design/Print/COLOR CARDS/Color Card-Country/INHOUSE
    After crash, reopens document from crash and reports no issues
    Same behavior even if ID is already open
    Same issue if files are on server share with or w/o oplocks
    Same crash issue if opening from desktop w/ all links local to desktop
    Reopen after crash from opening on desktop opens fine
    ID version 8.02 (CS6)
    OS X 10.9.4 same issue with OS 10.8.5
    I have removed and reinstalled ID CS6 and all patches
    This happens on ALL Macs in the office
    The server is a QNAP with access via SMB, all users logon as guest. NO AFP is in use. Only SMB. No errors reported at server.
    Crash report below with Mac info:
    Model Name: iMac
      Model Identifier: iMac11,1
      Processor Name: Intel Core i7
      Processor Speed: 2.8 GHz
      Number of Processors:  1
      Total Number of Cores:  4
      L2 Cache (per Core):  256 KB
      L3 Cache: 8 MB
      Memory: 16 GB
      Processor Interconnect Speed:
    4.8 GT/s
      Boot ROM Version: IM111.0034.B02
      SMC Version (system):  1.54f36
      Serial Number (system):  QP0280EJ5RU
      Hardware UUID: 00776F07-F1ED-51D5-8C91-CA415D8ECA74
    When opening the file it appears to want to ask about fonts but never redraws the screen then crashes:
    Process:         Adobe InDesign CS6 [928]
    Path:            /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Identifier:      com.adobe.InDesign
    Version:         8.0.2.413 (8020)
    Code Type:       X86 (Native)
    Parent Process:  launchd [223]
    Responsible:     Adobe InDesign CS6 [928]
    User ID:         62061693
    Date/Time:       2014-07-04 16:28:00.130 -0400
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000024
    VM Regions Near 0x24:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.BIB               
    0x00dd60bb 0xdd0000 + 24763
    1   com.adobe.BIB               
    0x00dd4755 0xdd0000 + 18261
    2   com.adobe.CoolType           
    0x00e62ac1 0xe20000 + 273089
    3   com.adobe.CoolType           
    0x00e63264 0xe20000 + 275044
    4   com.adobe.CoolType           
    0x00e64bd8 0xe20000 + 281560
    5   com.adobe.CoolType           
    0x00e65708 0xe20000 + 284424
    6   com.adobe.CoolType           
    0x00e55a62 0xe20000 + 219746
    7   com.adobe.CoolType           
    0x00e675e1 0xe20000 + 292321
    8   com.adobe.CoolType           
    0x00e5691c 0xe20000 + 223516
    9   com.adobe.CoolType           
    0x00f47f07 CTInit + 784415
    10  com.adobe.CoolType           
    0x00f75a29 CTInit + 971585
    11  com.adobe.CoolType           
    0x00f4cd8f CTInit + 804519
    12  com.adobe.CoolType           
    0x00f4cfa6 CTInit + 805054
    13  com.adobe.CoolType           
    0x00f4d09d CTInit + 805301
    14  com.adobe.CoolType           
    0x00ee84bc CTInit + 392660
    15  com.adobe.CoolType           
    0x00e7c17e 0xe20000 + 377214
    16  com.adobe.InDesign.Optical Kerning
    0x151e9d87 GetPlugIn + 29063
    17  com.adobe.InDesign.Optical Kerning
    0x151ebede GetPlugIn + 37598
    18  com.adobe.InDesign.Optical Kerning
    0x151e44f4 GetPlugIn + 6388
    19  com.adobe.InDesign.Optical Kerning
    0x151e2080 0x151dd000 + 20608
    20  com.adobe.InDesign.Optical Kerning
    0x151e0c1b 0x151dd000 + 15387
    21  com.adobe.InDesign.Optical Kerning
    0x151e0aaa 0x151dd000 + 15018
    22  com.adobe.InDesign.Optical Kerning
    0x151e1a25 0x151dd000 + 18981
    23  com.adobe.InDesign.Paragraph Composer
    0x18e8a857 TE::MarkerPositionOptions IDTEConvert<IFootnoteSettings::MarkerPositionOptions, TE::MarkerPositionOptions>(IFootnoteSettings::MarkerPositionOptions const&) + 39687
    24  com.adobe.InDesign.Paragraph Composer
    0x18e1d21a GetPlugIn + 81034
    25  com.adobe.InDesign.Paragraph Composer
    0x18e1d668 GetPlugIn + 82136
    26  com.adobe.InDesign.Paragraph Composer
    0x18e25398 GetPlugIn + 114184
    27  com.adobe.InDesign.Paragraph Composer
    0x18e525c6 GetPlugIn + 299062
    28  com.adobe.InDesign.Paragraph Composer
    0x18e5614c GetPlugIn + 314300
    29  com.adobe.InDesign.Paragraph Composer
    0x18e57985 GetPlugIn + 320501
    30  com.adobe.InDesign.Paragraph Composer
    0x18e597eb GetPlugIn + 328283
    31  com.adobe.InDesign.Paragraph Composer
    0x18e0afb3 GetPlugIn + 6691
    32  com.adobe.InDesign.Paragraph Composer
    0x18e0e0ca GetPlugIn + 19258
    33  com.adobe.InDesign.Paragraph Composer
    0x18e0990c GetPlugIn + 892
    34  com.adobe.InDesign.Text     
    0x1b95e90d GetPlugIn + 3701709
    35  com.adobe.InDesign.Text     
    0x1b778b6a GetPlugIn + 1711658
    36  com.adobe.InDesign.Text     
    0x1b765f96 GetPlugIn + 1634902
    37  com.adobe.InDesign.Text     
    0x1b7845e4 GetPlugIn + 1759396
    38  com.adobe.InDesign.Text     
    0x1b783e03 GetPlugIn + 1757379
    39  com.adobe.InDesign.Text     
    0x1b782e70 GetPlugIn + 1753392
    40  PublicLib.dylib             
    0x017ccb1a CShape::ProcessDrawShape(GraphicsData*, long) + 310
    41  com.adobe.InDesign.Text     
    0x1b6a704d GetPlugIn + 852749
    42  com.adobe.InDesign.Text     
    0x1b6a6ed3 GetPlugIn + 852371
    43  PublicLib.dylib             
    0x017ccb1a CShape::ProcessDrawShape(GraphicsData*, long) + 310
    44  PublicLib.dylib             
    0x017cd17a CShape::DrawHierarchy(GraphicsData*, long) + 354
    45  PublicLib.dylib             
    0x017cf1fd CGraphicFrameShape::DrawShape_Hierarchy(GraphicsData*, long) + 389
    46  PublicLib.dylib             
    0x017cee24 CGraphicFrameShape::DrawShape(GraphicsData*, long) + 130
    47  PublicLib.dylib             
    0x017ccb1a CShape::ProcessDrawShape(GraphicsData*, long) + 310
    48  com.adobe.InDesign.Layer     
    0x18753981 0x1874d000 + 27009
    49  com.adobe.InDesign.Generic Page Item
    0x17a17250 GetPlugIn + 142112
    50  com.adobe.InDesign.Layer     
    0x1875381d 0x1874d000 + 26653
    51  com.adobe.InDesign.Layer     
    0x18753203 0x1874d000 + 25091
    52  com.adobe.InDesign.Spread   
    0x1aa6bf4b 0x1aa5f000 + 53067
    53  com.adobe.InDesign.Spread   
    0x1aa6ef4d 0x1aa5f000 + 65357
    54  com.adobe.InDesign.Spread   
    0x1aa6b86e 0x1aa5f000 + 51310
    55  com.adobe.InDesign.AppFramework
    0x15ca2494 GetPlugIn + 89108
    56  PublicLib.dylib             
    0x018b6355 MultiThreadedWorkProgressBar::DoUpdate() + 11247
    57  PublicLib.dylib             
    0x018b7b3c SnapshotUtilsEx::Draw(long, unsigned long, PMReal const&, unsigned long, SnapshotUtils::Transparencies, IdleTimer*, std::map<IDType<ClassID_tag>, PMReal, std::less<IDType<ClassID_tag> >, std::allocator<std::pair<IDType<ClassID_tag> const, PMReal> > >*, unsigned long) + 102
    58  com.adobe.InDesign.Layout   
    0x189d977d GetPlugIn + 62253
    59  com.adobe.InDesign.Layout   
    0x189da35a GetPlugIn + 65290
    60  com.adobe.InDesign.AppFramework
    0x15cbae07 GetPlugIn + 189831
    61  com.adobe.InDesign.AppFramework
    0x15cb9739 GetPlugIn + 183993
    62  com.adobe.InDesign.AppFramework
    0x15c71196 0x15c63000 + 57750
    63  com.adobe.InDesign.AppFramework
    0x15c8f769 GetPlugIn + 12009
    64  com.adobe.InDesign           
    0x00001ec5 main + 341
    65  com.adobe.InDesign           
    0x00001d55 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib       
    0x96501992 kevent64 + 10
    1   libdispatch.dylib           
    0x97348899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib           
    0x97348532 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib     
    0x99683042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore
    0x9218e88d TSWaitOnConditionTimedRelative + 161
    4   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    5   PMRuntime.dylib             
    0x005bb581 SetVSizeBaseline(unsigned long) + 1473
    6   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib       
    0x964fbf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib       
    0x964fb16c mach_msg + 68
    2   com.apple.CoreServices.CarbonCore
    0x9218b52d TS_exception_listener_thread + 138
    3   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    4   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    5   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9218e682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore
    0x9218e8a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore
    0x9215acf2 MPWaitOnQueue + 199
    6   com.adobe.ACE               
    0x00609a69 0x5ca000 + 260713
    7   com.adobe.ACE               
    0x00608d99 0x5ca000 + 257433
    8   com.apple.CoreServices.CarbonCore
    0x9215b2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework
    0x15d62876 GetPlugIn + 876534
    4   com.adobe.InDesign.AppFramework
    0x15d5ec1f GetPlugIn + 861087
    5   com.adobe.InDesign.AppFramework
    0x15d5f6e5 GetPlugIn + 863845
    6   com.adobe.InDesign.AppFramework
    0x15d60cae GetPlugIn + 869422
    7   com.adobe.InDesign.AppFramework
    0x15d60d1a GetPlugIn + 869530
    8   com.adobe.InDesign.AppFramework
    0x15d60d86 GetPlugIn + 869638
    9   com.adobe.boost_threads.framework
    0x01c6f40d thread_proxy + 141
    10  libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    11  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    12  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework
    0x15d62876 GetPlugIn + 876534
    4   com.adobe.InDesign.AppFramework
    0x15d5ec1f GetPlugIn + 861087
    5   com.adobe.InDesign.AppFramework
    0x15d5f6e5 GetPlugIn + 863845
    6   com.adobe.InDesign.AppFramework
    0x15d60cae GetPlugIn + 869422
    7   com.adobe.InDesign.AppFramework
    0x15d60d1a GetPlugIn + 869530
    8   com.adobe.InDesign.AppFramework
    0x15d60d86 GetPlugIn + 869638
    9   com.adobe.boost_threads.framework
    0x01c6f40d thread_proxy + 141
    10  libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    11  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    12  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib       
    0x96500b76 __semwait_signal + 10
    1   libsystem_c.dylib           
    0x92bdbfb7 nanosleep$UNIX2003 + 219
    2   com.adobe.InDesign.Support for JavaScript
    0x1acddacb GetPlugIn + 317883
    3   com.adobe.InDesign.Support for JavaScript
    0x1acc2f79 GetPlugIn + 208489
    4   com.adobe.InDesign.Support for JavaScript
    0x1acdde38 GetPlugIn + 318760
    5   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    6   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    7   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib       
    0x96500a26 __recvfrom + 10
    1   libsystem_c.dylib           
    0x92bdc0c9 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib
    0x212ad733 Invoke + 47867
    3   ServiceManager-Launcher.dylib
    0x212ac846 Invoke + 44046
    4   ServiceManager-Launcher.dylib
    0x212ab988 Invoke + 40272
    5   ServiceManager-Launcher.dylib
    0x212aba0f Invoke + 40407
    6   ServiceManager-Launcher.dylib
    0x212a6baf Invoke + 20343
    7   ServiceManager-Launcher.dylib
    0x212a6ea7 Invoke + 21103
    8   ServiceManager-Launcher.dylib
    0x212a7685 Invoke + 23117
    9   ServiceManager-Launcher.dylib
    0x212a78f9 Invoke + 23745
    10  ServiceManager-Launcher.dylib
    0x212aa2a0 Invoke + 34408
    11  ServiceManager-Launcher.dylib
    0x212aa3fd Invoke + 34757
    12  ServiceManager-Launcher.dylib
    0x212aac91 Invoke + 36953
    13  ServiceManager-Launcher.dylib
    0x212aadb2 Invoke + 37242
    14  ServiceManager-Launcher.dylib
    0x2129d656 Login + 461
    15  ServiceManager-Launcher.dylib
    0x212a109a Login + 15377
    16  ServiceManager-Launcher.dylib
    0x212ab165 Invoke + 38189
    17  ServiceManager-Launcher.dylib
    0x212ad2eb Invoke + 46771
    18  libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    19  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    20  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support       
    0x10167eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support       
    0x1014b513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support       
    0x1014b25a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support       
    0x10167547 thread_proxy + 167
    7   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    8   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    9   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine         
    0x2ecf004f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine         
    0x2ea8162f APXGetHostAPI + 83439
    5   com.adobe.ape.engine         
    0x2ecf013e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine         
    0x2ecf01a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine         
    0x2ecf02c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    9   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    10  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine         
    0x2ecf004f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine         
    0x2ea8162f APXGetHostAPI + 83439
    5   com.adobe.ape.engine         
    0x2ecf013e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine         
    0x2ecf01a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine         
    0x2ecf02c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    9   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    10  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine         
    0x2ecf004f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine         
    0x2ea8162f APXGetHostAPI + 83439
    5   com.adobe.ape.engine         
    0x2ecf013e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine         
    0x2ecf01a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine         
    0x2ecf02c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    9   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    10  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine         
    0x2ecf004f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine         
    0x2ea8162f APXGetHostAPI + 83439
    5   com.adobe.ape.engine         
    0x2ecf013e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine         
    0x2ecf01a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine         
    0x2ecf02c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    9   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    10  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib     
    0x99683042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine         
    0x2ecf0017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine         
    0x2ed0920e APXGetHostAPI + 2736590
    5   com.adobe.ape.engine         
    0x2ecf013e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine         
    0x2ecf01a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine         
    0x2ecf02c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    9   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    10  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib     
    0x99683042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine         
    0x2ecf0017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine         
    0x2ee7e168 APXGetHostAPI + 4264232
    5   com.adobe.ape.engine         
    0x2ecf013e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine         
    0x2ecf01a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine         
    0x2ecf02c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    9   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    10  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 29:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib       
    0x964fbf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib       
    0x964fb16c mach_msg + 68
    2   com.apple.CoreFoundation     
    0x91361bf9 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation     
    0x913611d1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation     
    0x913609ea CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation     
    0x9136084b CFRunLoopRunInMode + 123
    6   com.apple.Foundation         
    0x9b052095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation         
    0x9b051f0e -[NSThread main] + 45
    8   com.apple.Foundation         
    0x9b051e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    10  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    11  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 30:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib       
    0x96500ace __select + 10
    1   com.apple.CoreFoundation     
    0x913b1ae6 __CFSocketManager + 1158
    2   libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    3   libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    4   libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib       
    0x965007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib     
    0x99682d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib     
    0x99684bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework
    0x15d62876 GetPlugIn + 876534
    4   com.adobe.InDesign.AppFramework
    0x15d5ec9a GetPlugIn + 861210
    5   com.adobe.InDesign.AppFramework
    0x15d5f6e5 GetPlugIn + 863845
    6   com.adobe.InDesign.AppFramework
    0x15d60cae GetPlugIn + 869422
    7   com.adobe.InDesign.AppFramework
    0x15d60d1a GetPlugIn + 869530
    8   com.adobe.InDesign.AppFramework
    0x15d60d86 GetPlugIn + 869638
    9   com.adobe.boost_threads.framework
    0x01c6f40d thread_proxy + 141
    10  libsystem_pthread.dylib     
    0x996805fb _pthread_body + 144
    11  libsystem_pthread.dylib     
    0x99680485 _pthread_start + 130
    12  libsystem_pthread.dylib     
    0x99685cf2 thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 33:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 34:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 35:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 36:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 37:
    0   libsystem_kernel.dylib       
    0x96501046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib     
    0x99681dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib     
    0x99685cce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00dd605e  ecx: 0xffffffff  edx: 0x00deefc0
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffb868  esp: 0xbfffb820
       ss: 0x00000023  efl: 0x00010246  eip: 0x00dd60bb   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000024
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
        0x1000 -     0x4ff7 +com.adobe.InDesign (8.0.2.413 - 8020) <26D9D0B7-6A29-A549-7EF5-E2E11360ED2A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
        0xb000 -     0xbff7 +InDesignModelAndUI (0) <2E042CB4-E42B-151B-E858-1352BF64CBA2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
        0xf000 -     0xfff7 +InDesignModel (0) <C9ABC1CF-850A-FCC7-2CEA-68B14F048036> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
       0x13000 -   0x1f3fef +WidgetBinLib.dylib (1) <D2AAB5B9-0694-32FA-38D5-F97FEE688C9D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/WidgetBinLib.dylib
      0x2a1000 -   0x480ffb +com.adobe.owl (AdobeOwl version 4.0.96 - 4.0.96) <B6B76E81-301D-D087-93F3-FDF9AB323665> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
      0x4ae000 -   0x548ff3 +com.adobe.owl-canvas (AdobeOwlCanvas version 3.6.05 - 3.6.05) <8E0CC5EB-E18A-20BD-BDC4-667D1CC43C12> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
      0x555000 -   0x55efff +ASLSupportLib.dylib (1) <000064CE-84C2-F397-BAB1-17055FA344EC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/ASLSupportLib.dylib
      0x565000 -   0x5a1ffb +TextPanelLib.dylib (1) <019DE080-1920-928F-57FB-F8FD8FCCA227> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/TextPanelLib.dylib
      0x5b8000 -   0x5c1ff3 +PMRuntime.dylib (1) <4144398F-56A5-BB9C-3FEB-E306BAA505A2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PMRuntime.dylib
      0x5ca000 -   0x746ff3 +com.adobe.ACE (AdobeACE 2.19.18.19553 - 2.19.18.19553) <2C680020-62C1-F45D-B48C-9D5AB8E99DCC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x755000 -   0xd1bfff +com.adobe.AGM (AdobeAGM 4.26.21.31374 - 4.26.21.31374) <1B7331D1-90F9-F1EF-3238-49CEED822CFD> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0xd8f000 -   0xdcaff7 +com.adobe.ARE (AdobeARE 1.5.02.19553 - 1.5.02.19553) <264C1354-0764-AFAB-5BB7-DA4B4EBEEFC1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0xdd0000 -   0xdedff3 +com.adobe.BIB (AdobeBIB 1.2.02.19553 - 1.2.02.19553) <D3D9FDCE-75B2-7FB3-71C8-D5DF313F6B0F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0xdf3000 -   0xe1aff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <34F46810-2864-0365-91CF-BF9C8503400A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0xe20000 -  0x1149fef +com.adobe.CoolType (AdobeCoolType 5.10.70.21235 - 5.10.70.21235) <1BF23DC8-AB4A-D0A8-622A-90A861016CF9> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1181000 -  0x157dfe7 +com.adobe.MPS (AdobeMPS 5.8.0.24821 - 5.8.0.24821) <79993F63-C04A-6158-62F1-50F368104552> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x15db000 -  0x1640ff3 +ObjectModelLib.dylib (1) <121426FD-C30A-48C4-98B2-8B610945C69C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/ObjectModelLib.dylib
    0x1658000 -  0x16b5feb +DataBaseLib.dylib (1) <F5ED35C9-1779-CF0D-BD50-0BC162D96A31> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/DataBaseLib.dylib
    0x16c5000 -  0x1b17ff7 +PublicLib.dylib (1) <FE41768D-FB5A-4216-E941-409BE23643CD> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PublicLib.dylib
    0x1c44000 -  0x1c5bffb +com.adobe.AFL (AdobeAFL 1.0.0 - 1.0) <3B7A1817-3CA4-BEAA-A44A-5A9B5D664E93> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1c6c000 -  0x1c78ff7 +com.adobe.boost_threads.framework (5.0.0 - 5.0.0.0) <56B14206-3221-D261-2B01-F91074D192FC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x1c95000 -  0x1c9dfef +libtbbmalloc.dylib (0) <7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x1caa000 -  0x1cc9fff +libtbb.dylib (0) <6EA19434-60D6-505D-CB6F-5CA562A0F2A7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/libtbb.dylib
    0x1cde000 -  0x1ce6fef +com.adobe.boost_date_time.framework (5.0.0 - 5.0.0.0) <088B6233-3B58-D51A-4609-1FF7F462B1D3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x1cfd000 -  0x1e3dfeb +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <6D085279-1185-E7F0-B0D8-FBADBA062516> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1eaf000 -  0x1eb2ffb +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120720) <A6503206-E545-4C47-B725-D6658C3E0BF5> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x1eba000 -  0x2bffff7 +libicudata.40.0.dylib (40) <015E6351-4F42-00C1-2096-BEE385B275B1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x2c12000 -  0x2d47fe7 +libicui18n.40.0.dylib (40) <8BE3FE71-0CE6-2B93-B5F2-B4F0DD274B91> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40. 0.dylib
    0x2dbb000 -  0x2eacfef +libicuuc.40.0.dylib (40) <4CF7066A-6E82-FF80-93E6-6849149FBB98> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x2ee9000 -  0x2f5bfef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <E4ADECD5-05B4-E78B-09D8-E45FD640E84D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2f68000 -  0x304aff3 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <808CABA8-E8E6-AC45-4905-A6AA59E8C41C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x3059000 -  0x3121fe7 +com.adobe.boost_regex.framework (5.0.0 - 5.0.0.0) <E124FC44-4A5C-A3C5-C7E2-0631F1D6E628> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x31c7000 -  0x31c8ff7 +com.adobe.boost_system.framework (5.0.0 - 5.0.0.0) <957930FC-D7B3-FAEA-0075-63C7B0E59070> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x31cf000 -  0x326dfe3 +libicucnv.40.0.dylib (40) <D11DC46F-D58E-B17C-9356-46F593D5A7CF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
    0x328f000 -  0x3296ffb +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <B711CAA7-29D6-D5CF-CE1B-A611896C8D87> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x9661000 -  0x9664ffa  libCGXType.A.dylib (599.25.10.1) <FAA0A87E-0E30-3787-88F0-D0CD8F5661A2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x966c000 -  0x966dffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x9673000 -  0x9674ff8  ATSHI.dylib (363.3) <62AF40CE-1110-31D5-931C-2B2AFB5C1A18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x96b3000 -  0x96c1fff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9a2c000 -  0x9a5efe3 +com.adobe.Reader for DOCX (Reader for DOCX 5.6.0.19506 - 5.6.0.19506) <BE1E7785-EB91-BA70-DFE5-6077B90E58AC> /Applications/Adobe InDesign CS6/*/Reader for DOCX
    0x9a67000 -  0x9af5ffb +com.adobe.AdobeSangamML (AdobeSangamML 5.6.0.19506 - 5.6.0.19506) <50915543-BBBF-63F6-05D1-28D484194BBD> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x9b16000 -  0x9b29ff7 +com.adobe.AdobeSFL (AdobeSFL 1.1.0.18561 - 1.1.0.18561) <5A153C87-DD7A-CE28-2E93-7DC120D4244F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x9bb6000 -  0x9bc8ffd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x9bcc000 -  0x9bd4ff7  libCGCM

    Turns out this is a known bug in InDesign 8.0.2.413.
    Awaiting a fix from Adobe

  • InDesign CS6 (Mac) will not package fonts

    I have hundreds of fonts on my machine and have never had any issues with packaging fonts until CS6. CS5.5 works great, even today with the same files that will not package in CS5.5. However, I cannot use 5.5 due to the other 7 designers all using CS6. None of them are having issues - they are also all on PCs with me being the only Mac user.
    "Cannot copy necessary fonts" is the error that I get when packaging anything that uses a font other than the default system fonts. Our primary font is Gotham, which we have 12 licenses for. Scala, also licensed, is another problem child. These all package fine in CS5.5.
    Machine specs:
    Macbook Pro
    OSX 10.7.5
    2.3 Ghz
    16 GB memory
    Fontbook is our font manager
    I have tried Fontnuke, Font doctor, resetting permissions, deleting InDesign prefs, copying the fonts in question into my Applications font folder, basically any solution that I could find online has been tried with the same error message presented at every package attempt.
    Any help would be seriously appreciated. Its embarrassing for the Sr. Art Director to be the only one on the team that cannot package correctly.
    Thank you

    I believe I have this problem, or very similar, in both CC and CS6. It happens on both machines I use, detailed below, when I convert from previous version InDesign files:
    Machine #1, Mac Pro:
    InDesign CS6 v8.0
    Mac OS 10.8.5 (12F45)
    3.06 GHz 6-Core Intel Xeon, 24GB RAM.
    Machine #2, iMac:
    InDesign CC v9.2.1
    Mac OS 10.9.2 (13C64)
    3.4 GHz Intel Core i7, 16GB RAM
    Example:
    1. I open a packaged inDesign file in InDesign CS6, converting it from the previous version (CS5 in this case, according to IDentify.jsx). The fonts are all working.
    2. I resave the file as a CS6 file, fonts are all still working as long as I don't reopen the file. (However, if I close the file and reopen it, it will show fonts missing.)
    3. I package the file from CS6, no font problems shown in packaging.
    NOTE: I do not get a "could not copy fonts" error at all.
    4. I open the new CS6 inDesign file inside the package folder. It will say "Fonts Missing: Calibri" or similar, showing some of the fonts missing, not all.
    5. I can easily manually copy the fonts from the old package into the new package and fix the issue. The fonts are not damaged, missing, locked, or have any visibly different permissions from the other font files when I get info.
    So for me the problem happens particularly with the resaving of files from older versions of InDesign, not necessarily with packaging them. If I open a CS5 file and resave as a CS6 file, then reopen that file, it typically has a few fonts missing. This happens to also effect packaging even though it will show all fonts present in the Package window and give no error message.
    Checking the CS5 fonts package, it contains both a AdobeFnt14.lst and a AdobeFnt13.lst. Not sure if this pertains to the problem or not, searching these files reveals that both contain the "Calibri" font that went missing on CS6 conversion.
    I have tried resaving and repackaging a CS6 file (not converting from CS5) with the same fonts that went missing in the conversion and they all were copied fine.
    Obviously this is devastating if I package and send a folder out only to find out it secretly didn't have all the fonts!
    I have tried "fix permissions" and "clear font caches" but this has no effect on the problem.

  • Indesign CS6 not so kosher

    Hello,
    Please could somebody help - this is driving me nuts.
    I am Running Indesign CS6.0.1 on an Imac (3ghz - 4gb Ram - Intel Core 2 Duo) using Lion 10.7.3.
    I have designed a Catalogue for my company which is 85 pages. This is the first catalogue I have produced on CS6, but have been using Indesign for many many years with no problems.
    The problem I am facing is that when I try to print the Book of the catalogue, it spools the first 40 odd pages with no problem, but then seems to randomly get stuck on subsequent pages. Like I said the page it gets stuck on is random, sometimes page 47, sometimes page 55 etc. I have gone into linked files and edited and fixed anything that I thought might be causing problems, to no avail.
    I tried to convert to PDF, to then print via Acrobat. The same problem arises. Randomly gets stuck on pages.
    I have now tried to split print the catalogue, ie first half, then second half.  The first half (33 pages), has printed with no problem, but the second half is now stuck on page 60.
    In addition to this. on certain occasions, it will just crash. This to seems to be random, as I have been busy with the exct same actions.
    I have deleted preferences & saved data, updated to latest version. I have tried to print on another colleague's Mac Pro (he has 6gb Ram - same OS & indesign version), still with no change in result.
    Other than reisntalling lower verson of Indesign, and coverting all my documents, I am at my wits end on how to solve this problem.
    If anybody could help - I would greatly appreciate it.
    Thanks
    Grant

    Hi Dov,
    Thank you for your quick response - it is greatly appreciated.
    To clarify a little - The problem is occurring when I try to print directly to the Printer from Indesign. But I have been unable to complete the PDF export, as the same problem occurs when exporting, as when printing. I.e. The progress gets stalled on random pages. So I have been unable to try and print form Acrobat, or to even view the PDF document. (incomplete export).
    The Printer we are using is a Canon iR ADV C5051 Laser printer.
    I completely agree with you on need or lack there of, of re-installing.
    I have just tried to split print the Book in 3 sections. To test if there are any problems in any particular parts of the book / documents, and whittle down the problem areas. This has spooled through & printed with no problems.  Unfortunately this is not a practical way forward for me, when it comes time for me to print these catalogues out in bulk. (I print several hundred catalogues).
    Please see below for the Link to the PDF catalogue. Again I have had to export the Book in sections and then combine it in Acrobat.
    Link: http://updates.musgrave.co.za/Musgrave/COMBINED_CATALOGUE.pdf
    Thanks again for your timeous response.

  • Hi, I am using Indesign CS6, How to set the page size in Inches.

    Hi, I am using Indesign CS6, How to set the page size in Inches.

    All fields in InDesign can be entered in any measurement system. So, if you want to make an 8"x10" document and go to File>New Document and the window looks like this:
    …you can type either 8 in or 8" into the Width field like this:
    …and when you move to the next field, it will convert the eight inches into the equivalent number in the unit of measure that it is using at the moment, like this:
    … (203.2 milimeters is the same as 8 inches). You can also enter a different measurement unit into other fields once the file is created, such as the width or height of a frame, or the position of an object in the X and Y coordinates.
    If you would rather just work in inches instead of having to type the inches mark or abbreviation, go to InDesign>Preferences>General and select the Units & Increments tab. There you will see Ruler Units for Horizontal and Vertical at the top of the window. Set them to Inches and all of the fields will display in inches. If you do that to an open document, you will change the unit of measure for that document. If you do it while no documents are open, it will change the unit of measure for any new documents you create. To change the unit of measure for existing documents, you will have to open each and make the change.

  • InDesign CS6 Plug-in development problem

    Hello,
    IDE:Visual Studio 2010
    Platform:Windows7-32
    Version:Indesign CS6
    Database:MySql-5.0.67-win32
    ODBC:ODBC-5.1
    The source code:
    URI uri("odbc://New/?table=jo_user#user_id,username,reset_key,activation,register_time,login_ count");//int,varchar,tinytext,tinyint,datetime,longtext
    SDKODBCWrapper odbc;
    if (ISDKODBCWrapper::ODBCNormal == odbc.Query(uri))
           int32 ColumnNum = odbc.GetNumberOfColumns();
           for(int32 cNum=0; cNum<ColumnNum; cNum++)
                ISDKODBCWrapper::ItemType retType = odbc.GetMthColumnInfo(cNum, std::string(""));
                if (retType == ISDKODBCWrapper::kIntegerType)
                    CAlert::InformationAlert("kIntegerType");
                else if (retType == ISDKODBCWrapper::kDoubleType)
                    CAlert::InformationAlert("kDoubleType");
                else if (retType == ISDKODBCWrapper::kStringType)
                    CAlert::InformationAlert("kStringType");
                else if (retType == ISDKODBCWrapper::kTimeStampType)
                    CAlert::InformationAlert("kTimeStampType");
                else
                    CAlert::InformationAlert("Others or NULL");
    else
        CAlert::InformationAlert("Link ODBC error");
    I have already successfully connect to the database,but why I can only get kIntegerType and kTimeStampType?
    why varchar tinytext tinyint longtext are show kIntegerType?
    someone please guide me...
    Thank you very much.
    消息编辑者为:IIASCII

    use ODBC-3.5.1  over

  • MojikumiElement Tagged Text export junk in InDesign CS6

    Hello,
    Our InDesign Tagged Text exports have suddenly been infested with large amounts of the following code, repeating over and over.  We've managed to munge it out on the other side of the process, but can't figure out how it got there in the first place.  It's making the files take much longer to process, but otherwise seems to have no effect whatsoever.  My understanding is that I shouldn't be seeing anything Mojikumi related unless I'm using the Japanese version of ID/CS, or embedding Japanese characters.
    Any ideas why this is happening and how to make it stop?
    <snip>
    <ASCII-MAC>
    <Version:8><FeatureSet:InDesign-Roman><ColorTable:=<Black:COLOR:CMYK:Process:0,0,0,1>>
    <DefineMojikumiStyle:kMojikumiDefaultName1=<MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><M ojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiEl ement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0 ,0,0,0><MojikumiElement:0,0,0,0,0><MojikumiElement:0,0,0,0,0>>
    </snip>
    TIA and much appreciated

    Hi Steve,
    I created a book in InDesign for traditional print. Now I need to convert it
    to a epub file for use on a ŒKindle¹.
    So my workflow is just in InDesign CS6, then I create a new document in the
    Œbook¹ format. Then I import the InDesign docs into the Œbook¹ dialogue
    window. You can choose the Œpreflight book¹ option in the Œbook¹ dialogue
    box and choose to see the errors as a PDF, which is what I¹ve been doing. I
    have errors on every page of the proposed Œepub¹ file.
    If I then drag that epub file to my ŒKindle preveiwer, it immediately says
    that it Œfailed to compile the book file¹, and there is nothing shown.
    Thanks,
    Nick.

  • InDesign CS6 colors to Corel Draw 12

    I've designed a logo and stationery for a small business customer. The logo has 2 Pantone colours. The offset printed letterhead has a 7% tint for a graphic element (curved stripes) printed in Pantone #137 (orange) as a large watermark on the page.
    I saved the vector graphic element separately as a 7% tint of #137. The files are a two colour EPS file and a PDF for my customer to import and bring into some of his documents. Which he did. He uses Corel Draw and prints on his office inkjet printer.
    The final graphic element output has a different tone than the original #137 orange. The printed graphic is pinkish and different than his letterhead.
    What's doing that?...
    Is Corel Draw changing my file from a spot color EPS to a CMYK file?
    I don't use Corel Draw and have no idea what suggestions to make to keep the Pantone orange true. Can I fix it on my end by saving or exporting the file differently, OR can my customer do something in Corel Draw?
    Mac OSX10.6.8, InDesign CS6.

    How is he getting the EPS into CD? CD can interpret the EPS and convert it
    all to CD objects or it can leave it alone, pretty much like placing it into
    an ID file
    As Bob mentions, CD, upon importing an EPS will give two options. The default is to open the EPS as editable objects, just like AI. This is exactly what you want them to do. Do not that also like AI, the objects will be grouped.
    I can gaurantee you that your client does not want to choose the second option in CD, which is to "Place as Encapsulated Postscript." If they do, the entire page size that you had in ID will come in, which is likely larger than the art itself. This same thing happens when placing the EPS in ID.
    BTW, the last thing I would even try doing is opening that file Illy. ID
    created EPS files don't do well in that situation.
    BTW, the last thing I would want to do is to not check the EPS with the tools I have.
    And for the PDF, you should be using Acrobat. Which will simply confirm that the Pantones are present at whatever tinit value you specify (which they will be).
    Take care, Mike

  • AutoCAD Graphics in InDesign CS6

    Real quick - I made a catalog about 12 years ago in Pagemaker 6.5 which used .dxf files from AutoCAD for the illustrations. I now have InDesign CS6 and need to convert my old .P65 documents. It says that the .dxf file type is not supported. I know they're only joking, so how do I use .dxf files (or other Autodesk files) in InDesign CS6? Thanks.

    With you on that, John! We received a detailed map of the USA as a .dxf file with every state AND county keylined. There were some counties which literally had over 100 identical half-point rules (in rich black, no less!) on top of one another. It was like an endless world of layers in Illustrator. It took Illustrator over 5 minutes to open and then the scary beachball for another 5 minutes while it redrew. Our solution was to immediately switch to wireframe mode to be able to work with removing the excess lines. Good luck!
    Cheers!
    -Mikey

Maybe you are looking for