Quark to InDesign CS5

Hi!
I have a product catalogue with almost 600 pages, that i want to convert to InDesign CS5.
Whats the best tool for this job?
Can you recommend any plug-ins that I will benefit from? Like automatic indexing, ect.
Frome this catalogue (A4), i create separate one-product-pdf's in letter format.
Is there any automatic way to do this? 
I will start converting soon, and hope that you guys have some tips for me!
Best regards
Anders

ID can open Quark 4 files directly. Any later version will require the Q2ID plugin from Markzware. Conversions of documents will anywhere from near perfect to useless, depending on how they were built to begin with. They will ALWAYS need careful examination and cleanup.
THere are a couple of (pricey) commercial plugins for building catalogs from a database. I don't know if they would help your workflow or not. Indexing is built into ID, but if the markers are not there already, there are some scripts that make life simpler. I've used IndexBrutal (http://marcautret.free.fr/geek/indd/indexbrut/) with success, and nearly anything is scriptable if you can define the problem in logical terms.
ID can, of course, alter the document size (and move and resize page elements using Layout Adjustment), but that may not be what you have in mind. Yo cannot scale during export to PDF, but you can place one ID file (or PDF) into another, and scale that while it is being placed. See InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files for a great script to do this.
For getting single pages, Scott zanelli also wrote an exporting script (http://indesignsecrets.com/page-exporter-utility-peu-5-script-updated-for-cs3.php) which appears not to have been updated recently, which probably means it still runs in CS5, or could be made to fairly easily. You could also export a multipage PDF and break it into individual pages in Acrobat.

Similar Messages

  • [AS] Beast of a script needs help converting from Quark 8 to InDesign CS5

    First off, THANK YOU for even reading this post. Here's the dilema. I work in a publishing company that used an AppleScript from Quark 8 to automate our pagination from set text we pull from our sales reps worksheets. About 8 months ago we switched fully to InDesign CS5, but have had to hold onto Quark 8 to be able to keep running our pagination. I'd like to see if the geniuses (yes, I've been trolling these forums looking to solve this myself and seen some great problems fixed) on these forums can help me figure out the proper conversion I would need to be able to leave Quark 8 in the rearview.
    Here's our current code... (I warned you it was a beast)
    set Ad_Props to {¬
         {Ad_Label:"SPREAD – ", Ad_Width:2.495, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"FULL – ", Ad_Width:1.225, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"SPREAD – ", Ad_Width:2.495, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"JUNIOR – ", Ad_Width:0.90625, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/2H – ", Ad_Width:1.225, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/2V – ", Ad_Width:0.5875, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/3V – ", Ad_Width:0.5875, Ad_Height:1.2025, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/4 – ", Ad_Width:0.5875, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/4 Strip – ", Ad_Width:0.26875, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/8H – ", Ad_Width:0.5875, Ad_Height:0.3675, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/8V – ", Ad_Width:0.26875, Ad_Height:0.785, Ad_Text_Angle:90}, ¬
         {Ad_Label:"Junior (GOLF) – ", Ad_Width:0.8, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/3V (GOLF) – ", Ad_Width:0.375, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/3sq. (GOLF) – ", Ad_Width:0.8, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/6V (GOLF) – ", Ad_Width:0.375, Ad_Height:0.785, Ad_Text_Angle:90}, ¬
         {Ad_Label:"Directory Listing Only – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"INSERT (# in notes) – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"Other (See Notes) – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"------------ – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}}
    set Position_Width to number
    set Position_Width to 11.375
    set Position_Height to number
    set Position_Height to 1.875
    set Jump_Height to number
    set Jump_Height to 0
    set Variable_Count to number
    set Variable_Count to 0
    set Variable_Height to number
    set Variable_Height to (1.875 + (1.62 * Variable_Count))
    set Last_Ad to number
    set Last_Ad to 0
    tell application "QuarkXPress"
         activate
         try
              display dialog "WARNING: This version of 'Dummy Square Maker' runs much slower than the last version, a confirmation will tell you when you are finished. Please be patient." & return & return & "Make sure to have the text box selected" buttons {"Cancel", "Accept"} default button 2 with icon caution
              set ThisBox to object reference of current box
              tell story 1 of ThisBox
                   set (every paragraph where it is return) to ""
                   set style sheet of every text to null
                   set style sheet of every text to "DUMMY TEXTS"
                   repeat with i from 1 to (count of paragraphs)
                        try
                             tell paragraph i
                                  set ThePage to my get_CurrentPage()
                                  try
                                       if it contains " – " then
                                            set style sheet to "AD SIZE"
                                            set Ad_Size to contents
                                            set {This_Width, This_Height, this_angle} to {"", "", ""}
                                            repeat with This_Ad in Ad_Props
                                                 if Ad_Size contains (Ad_Label of This_Ad) then
                                                      set This_Width to Ad_Width of This_Ad
                                                      set This_Height to Ad_Height of This_Ad
                                                      set this_angle to Ad_Text_Angle of This_Ad
                                                      exit repeat
                                                 end if
                                            end repeat
                                            set Ad_Box to my Make_Box(ThePage, {1.875, 10.875, This_Height + 1.875, This_Width + 10.875}, this_angle)
                                            duplicate contents to (end of Ad_Box)
                                       else if it contains "—" then
                                            set style sheet to "AD REP/PLACEMENT"
                                            duplicate contents to (end of Ad_Box)
                                       else if it starts with "©" then
                                            set style sheet to "AD REP/PLACEMENT"
                                            delete (character 1)
                                            duplicate contents to end of Ad_Box
                                            if Position_Width ≤ 19.75 then
                                                 set Jump_Height to Jump_Height + This_Height
                                                 (*_________________This is where Ad Boxes Stack_________________*)
                                                 if (Jump_Height ≤ 1.62) then
                                                      set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                      set Position_Height to Position_Height + This_Height
                                                      (*_________________This is where Ad Boxes more right_________________*)
                                                 else
                                                      set Position_Height to Variable_Height
                                                      (*set Position_Width to Position_Width + This_Width + 0.05*)
                                                      set Position_Width to Position_Width + Last_Ad + 0.05
                                                      set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                      set Jump_Height to This_Height
                                                      set Position_Height to Variable_Height + This_Height
                                                 end if
                                                 set Last_Ad to This_Width
                                                 (*_________________This is where New Row appears_________________*)
                                            else
                                                 set Position_Width to 11.375
                                                 set Variable_Count to Variable_Count + 1
                                                 set Variable_Height to (1.875 + (1.62 * Variable_Count))
                                                 set Position_Height to Variable_Height
                                                 set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                 set Position_Height to Position_Height + This_Height
                                                 set Jump_Height to This_Height
                                                 set Last_Ad to This_Width
                                            end if
                                       else
                                            duplicate contents to (end of Ad_Box)
                                       end if
                                  end try
                             end tell
                        on error errmsg number errnum
                             display dialog "There has been an error " & "[" & i & "] (" & errmsg & " [" & errnum & "])" buttons {"Okay"} default button 1 with icon stop
                        end try
                   end repeat
                   delete contents
                   set style sheet of every text to null
              end tell
              beep 2
              display dialog "Automation Finished" & return & return & "IMPORTANT NOTE: Color your Ad Squares according to Sales Rep, and select them all and 'BRING TO FRONT [F5]', this is VITAL." buttons {"Okay"} default button 1 with icon stop
         on error errmsg number errnum
              beep 3
              if errnum ≠ -128 then
                   beep
                   display dialog errmsg & " [" & errnum & "]" buttons {"OK"} default button 1 with icon stop
              end if
         end try
    end tell
    on Make_Box(ThePage, TheBounds, this_angle)
         local ThePage, TheBounds, this_angle
         tell application "QuarkXPress"
              tell page ThePage of document 1
                   set Ad_Box to make new text box at end with properties {bounds:TheBounds, vertical justification:centered, color:"Rep_Other", shade:100, opacity:10, text angle:this_angle, frame:{style:solid line, color:"Black", shade:60, width:0.1}}
              end tell
         end tell
         (*end tell*)
         return Ad_Box
    end Make_Box
    on get_CurrentPage()
         tell application "QuarkXPress"
              tell document 1
                   return page number of current page
              end tell
         end tell
    end get_CurrentPage

    Hi,
    I think with this, you can already make good progress in your work.
    Good luck!
    global mydocument
    tell application "Adobe InDesign CS5.5"
         set mydocument to active document
         tell mydocument
              set myParaStyle to paragraph style "DUMMY TEXTS"
              tell page 1
                   set TheBounds to {0, 0, 20, 50}
                   set Ad_Box to make text frame
                   tell Ad_Box
                        set geometric bounds to TheBounds
                        set vertical justification of text frame preferences to center align
                        set contents to "This is the contents"
                   end tell
                   set myStory to parent story of Ad_Box
                   set applied paragraph style of every paragraph of myStory to myParaStyle
              end tell
         end tell
    end tell
    Your two handlers then look like this:
    on Make_Box(ThePage, TheBounds, this_angle)
         local ThePage, TheBounds, this_angle
         tell application "Adobe InDesign CS5.5"
              tell page ThePage of mydocument
                   set Ad_Box to make text frame
                   tell Ad_Box
                        set geometric bounds to TheBounds
                        set vertical justification of text frame preferences to center align
                   end tell
              end tell
         end tell
         return Ad_Box
    end Make_Box
    on get_CurrentPage(CurrentTextFrame)
         tell application "Adobe InDesign CS5.5"
              tell mydocument
                   return name of parent page of parent page of CurrentTextFrame
              end tell
         end tell
    end get_CurrentPage
    Shorter version:
    on get_CurrentPage(CurrentTextFrame)
         tell mydocument of application "Adobe InDesign CS5.5"
              return name of parent page of parent page of CurrentTextFrame
         end tell
    end get_CurrentPage
    Ce message a été modifié par: OlivierBerquin

  • InDesign CS5 for Mac crashes on opening file. Have replaced References and all other suggestions.

    I am having a problem with InDesign CS5 crashing when I try to open a file that formerly opened just fine. Even restored versions from Time Machine or that I had a backup saved on an external hard drive will not open. I recently had to reconstruct a 90 page magazine for the same reason. I heard that Extensis Suitcase might be causing the problem so I disabled the plug-in, but still can't get the file open. The file in question is full of tables and would be a nightmare to redo. I am running Snow Leopard. It will open briefly and tell me that fonts are missing, then crash.
    This is the first part of the crash report:
    Process:         Adobe InDesign CS5 [3618]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.0.355 (7000)
    Code Type:       X86 (Native)
    Parent Process:  launchd [243]
    Date/Time:       2012-03-28 04:09:54.429 -0400
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          726303 sec
    Crashes Since Last Report:           21
    Per-App Interval Since Last Report:  644196 sec
    Per-App Crashes Since Last Report:   20
    Anonymous UUID:                      3E14D8F3-3E05-4DD3-AF05-C27CC15C3CA3
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread

    I have already disabled the Extensis plug-in and am activating the fonts
    manually from within Extensis. It's the very latest version, Suitcase
    Fusion 3, and it warps my chops that it doesn't play nice with InDesign.
    I got rid of the Mindsteam grammar plug-in also and sent a tersely
    worded letter to the vendor. When you pay nearly $200 for a plug-in, you
    expect it to work. I don't have time for this aggravation! I truly
    appreciate the help I've gotten here. This has certainly discouraged me
    from using any third-party plug-ins. I was ready to go back to Quark
    Xpress. For the moment, everything is behaving.

  • My Adobe InDesign keeps Crushing when I try to either package my document  or even try to export to pdf. This is the crush report: Process:         Adobe InDesign CS5 [2750] Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents

    Process:         Adobe InDesign CS5 [2750]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.0.355 (7000)
    Code Type:       X86 (Native)
    Parent Process:  launchd [114]
    Date/Time:       2012-10-20 18:55:00.942 +0300
    OS Version:      Mac OS X 10.7.4 (11E2617)
    Report Version:  9
    Interval Since Last Report:          95465 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  55570 sec
    Per-App Crashes Since Last Report:   19
    Anonymous UUID:                      498C85C8-4C43-4643-87AB-DF190AB2F2BE
    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 CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Application Specific Information:
    objc[2750]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0xacd47630 _XHNDL_trapback_instruction + 0
    1   ???                                     0xffffffff 0 + 4294967295
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x99f8390a kevent + 10
    1   libdispatch.dylib                       0x96b3fe10 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96b3e85f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92c11f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x984e03a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    5   PMRuntime.dylib                         0x00014130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    7   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    8   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x99f80c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x99f801f6 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x9856d0ec TS_exception_listener_thread + 90
    3   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    4   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9856ee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x984e037d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9856ee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x984e037d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9856ee62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x984e037d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9854267f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    10  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0ad8b126 C_AMTUISwitchSuppressUpdates + 16768
    4   com.adobe.amt.services                  0x0ad83db0 C_EULA_SetState + 2164
    5   com.adobe.amt.services                  0x0ad8b18c C_AMTUISwitchSuppressUpdates + 16870
    6   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    7   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   TINthread.dylib                         0x0d0f47a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                         0x0d0f483f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    6   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework          0x0b983ffa GetPlugIn + 1045098
    4   com.adobe.InDesign.AppFramework          0x0b97ff43 GetPlugIn + 1028531
    5   com.adobe.InDesign.AppFramework          0x0b98014c GetPlugIn + 1029052
    6   com.adobe.InDesign.AppFramework          0x0b983ac6 GetPlugIn + 1043766
    7   boost_threads                           0x01704fcd thread_proxy + 141
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x92bc242c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework          0x0b983ffa GetPlugIn + 1045098
    4   com.adobe.InDesign.AppFramework          0x0b97ff43 GetPlugIn + 1028531
    5   com.adobe.InDesign.AppFramework          0x0b98014c GetPlugIn + 1029052
    6   com.adobe.InDesign.AppFramework          0x0b983ac6 GetPlugIn + 1043766
    7   boost_threads                           0x01704fcd thread_proxy + 141
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x99f82bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x92bc27b9 nanosleep$UNIX2003 + 187
    2   com.adobe.InDesign.Support for JavaScript          0x105bbfab GetPlugIn + 344123
    3   com.adobe.InDesign.Support for JavaScript          0x1059f9c3 GetPlugIn + 227923
    4   com.adobe.InDesign.Support for JavaScript          0x105bc0b8 GetPlugIn + 344392
    5   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    6   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x99f82a9a __recvfrom + 10
    1   libsystem_c.dylib                       0x92bc24a2 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x18de26cf Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x18de176e Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x18de061f Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x18de0671 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x18de06fb Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x18ddaafe Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x18ddace7 Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x18ddb8c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x18ddb9c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x18ddedb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x18ddf059 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x18ddf687 Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x18ddf884 Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x18dd1826 Login + 1654
    16  ServiceManager-Launcher.dylib           0x18dd2c71 Login + 6849
    17  ServiceManager-Launcher.dylib           0x18ddfdf3 Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x18de2341 Invoke + 53977
    19  libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    20  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x99f80c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98542a96 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21f780f0 0x21f3e000 + 237808
    3   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    5   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x99f80c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98542a96 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21f780f0 0x21f3e000 + 237808
    3   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    5   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x99f80c76 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x98542a96 MPWaitOnSemaphore + 104
    2   MultiProcessor Support                  0x21f780f0 0x21f3e000 + 237808
    3   com.apple.CoreServices.CarbonCore          0x985435e0 PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    5   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x246a2d5f APXGetHostAPI + 2567887
    4   com.adobe.adobeswfl                     0x244441ef APXGetHostAPI + 82783
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92c11f7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x246a2d27 APXGetHostAPI + 2567831
    4   com.adobe.adobeswfl                     0x248180d8 APXGetHostAPI + 4096584
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92c11f7b pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x246a2d27 APXGetHostAPI + 2567831
    4   com.adobe.adobeswfl                     0x246bd6de APXGetHostAPI + 2676814
    5   com.adobe.adobeswfl                     0x246a2e4c APXGetHostAPI + 2568124
    6   com.adobe.adobeswfl                     0x246a2eb7 APXGetHostAPI + 2568231
    7   com.adobe.adobeswfl                     0x246a2f9b APXGetHostAPI + 2568459
    8   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    9   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 26:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 29:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 30:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 31:
    0   libsystem_kernel.dylib                  0x99f8302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x92c0fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x92c116fe start_wqthread + 30
    Thread 32:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99f82b42 __select + 10
    1   com.apple.CoreFoundation                0x97ab5e15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    3   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 33:
    0   libsystem_c.dylib                       0x92c0ec1e pthread_threadid_np + 38
    1   libsystem_c.dylib                       0x92c0c857 __mtx_droplock + 102
    2   libsystem_c.dylib                       0x92c0cc4c pthread_mutex_unlock + 320
    3   AdobeBIB                                0x00813c7c BIBInitialize2 + 40588
    4   AdobeBIB                                0x00806fe6 0x803000 + 16358
    5   AdobeBIB                                0x00806ec4 0x803000 + 16068
    6   AdobeBIBUtils                           0x0082d212 0x828000 + 21010
    7   AdobeBIBUtils                           0x0083501c 0x828000 + 53276
    8   AdobeBIBUtils                           0x0083258a 0x828000 + 42378
    9   AdobeBIBUtils                           0x008354df 0x828000 + 54495
    10  AdobeBIBUtils                           0x00833fe7 0x828000 + 49127
    11  AdobePDFSettings                        0x11432acf JoboptionsParserUtils::GetValue(char**) + 1179
    12  AdobePDFSettings                        0x11432f50 JoboptionsParserUtils::GetValue(char**) + 2332
    13  AdobePDFSettings                        0x11433158 JoboptionsParserUtils::GetValue(char**) + 2852
    14  AdobePDFSettings                        0x11432f50 JoboptionsParserUtils::GetValue(char**) + 2332
    15  AdobePDFSettings                        0x1142a543 PDFSettingsParser::Joboptions_To_CPOSDict(BIB_T_NMT::CBIBPositionableStream const&) + 1143
    16  AdobePDFSettings                        0x1142aac3 PDFSettingsParser::PDFSettingsParser(BIB_T_NMT::CBIBPositionableStream const&) + 67
    17  AdobePDFSettings                        0x1141fbf7 PDFSettingsImpl::PDFSettingsStream::ConvertJobOptionsToCPOSDict(BIB_T_NMT::CBIB PositionableStream const&, char const*) + 35
    18  AdobePDFSettings                        0x114224c1 _PDFSettingsNewFromStreamProc_NewFromStream + 157
    19  com.adobe.InDesign.PDF                  0x110f4929 GetPlugIn + 44953
    20  com.adobe.InDesign.PDF                  0x110f6a24 GetPlugIn + 53396
    21  com.adobe.InDesign.PDF                  0x110e9e6c GetPlugIn + 1244
    22  ObjectModelLib.dylib                    0x01063ccd 0x1038000 + 179405
    23  ObjectModelLib.dylib                    0x01070ec8 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 23784
    24  DataBaseLib.dylib                       0x010ce158 0x10c9000 + 20824
    25  com.adobe.InDesign.PDF                  0x111d580f GetPlugIn + 966271
    26  com.adobe.InDesign.PDF                  0x111ce09e GetPlugIn + 935694
    27  com.adobe.InDesign.PDF                  0x111cef9a GetPlugIn + 939530
    28  PublicLib.dylib                         0x011644d2 Command::DoImmediate(short) + 34
    29  com.adobe.InDesign.Utilities            0x0cb10aa3 0xcb0f000 + 6819
    30  com.adobe.InDesign.Utilities            0x0cb10ccc 0xcb0f000 + 7372
    31  com.adobe.InDesign.AppFramework          0x0b87a6e8 0xb860000 + 108264
    32  com.adobe.InDesign.AppFramework          0x0b86cfc1 0xb860000 + 53185
    33  PublicLib.dylib                         0x011655aa CmdUtils::ProcessScheduledCmds(ICommand::Priority) + 74
    34  ObjectModelLib.dylib                    0x01091255 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 155765
    35  PublicLib.dylib                         0x0143e571 ExecutionContextUtils::InitExecutionContext(boost::intrusive_ptr<IDatabaseSnaps hot>) + 353
    36  com.adobe.InDesign.AppFramework          0x0b980135 GetPlugIn + 1029029
    37  com.adobe.InDesign.AppFramework          0x0b983ac6 GetPlugIn + 1043766
    38  boost_threads                           0x01704fcd thread_proxy + 141
    39  libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    40  libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x99f8283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x92c11e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x92bb982a pthread_cond_wait + 48
    3   TINthread.dylib                         0x0d0f47a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                         0x0d0f483f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib                       0x92c0ded9 _pthread_start + 335
    6   libsystem_c.dylib                       0x92c116de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000005  ecx: 0x00000000  edx: 0x26707000
      edi: 0x00000000  esi: 0x00000100  ebp: 0xbfffbed8  esp: 0xbfffbab0
       ss: 0x00000023  efl: 0x00010246  eip: 0xacd47630   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 2
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign (7.0.0.355 - 7000) <95D99393-D179-BC50-386C-509F6FD0809A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        0xa000 -     0xafff +InDesignModel (??? - ???) <D054C2C9-F070-A1E1-2D78-BACDC9DCC960> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xe000 -     0xefff +InDesignModelAndUI (??? - ???) <770DFBFF-7C31-ECD4-88FE-BCFED53CFC33> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAnd UI
       0x12000 -    0x19ff3 +PMRuntime.dylib (??? - ???) <EC9AB7BF-B671-AE6F-5C9E-7A49F9C265BE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PMRuntime.dylib
       0x20000 -   0x134fff +AdobeACE (??? - ???) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x157000 -   0x67dfff +AdobeAGM (??? - ???) <6F8EB120-6F01-38AE-8363-BC941B8AE12E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7be000 -   0x7fafff +AdobeARE (??? - ???) <EF398654-5384-F84A-8B62-DA1F64E2FAD1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x803000 -   0x81efff +AdobeBIB (??? - ???) <CDFB3340-3A46-292A-121E-2820EC62D78E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x828000 -   0x849ff7 +AdobeBIBUtils (??? - ???) <482199DF-1251-ED75-4958-563C6E49CD6F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x855000 -   0xb47ff7 +AdobeCoolType (??? - ???) <2BF62C8A-D715-FDE8-650C-1984CFFCE33C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xbcf000 -   0xfa7ff7 +AdobeMPS (??? - ???) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x1038000 -  0x10a6ff7 +ObjectModelLib.dylib (??? - ???) <B71699FF-823E-D40E-A62F-2E9FD2FE9B56> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/ObjectModelLib.dylib
    0x10c9000 -  0x1123fe7 +DataBaseLib.dylib (??? - ???) <3FC5D05A-298D-654B-F235-C0579E0A347F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/DataBaseLib.dylib
    0x113c000 -  0x1553fff +PublicLib.dylib (??? - ???) <D0EB805F-5E47-2677-CA21-5C51D510234F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PublicLib.dylib
    0x16da000 -  0x16f1ff6 +AdobeAFL (??? - ???) <CFC0FF78-A748-AC45-2E62-8F20090D911C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1702000 -  0x170aff3 +boost_threads (??? - ???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threads
    0x1714000 -  0x1719ffd +ASLSupportLib.dylib (??? - ???) <D4BEF46E-063B-696F-FE83-DD943ABA838A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/ASLSupportLib.dylib
    0x171e000 -  0x171fff2 +libtbbmalloc.dylib (??? - ???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/libtbbmalloc.dylib
    0x1723000 -  0x1731fe7 +libtbb.dylib (??? - ???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/libtbb.dylib
    0x1739000 -  0x1871fe7 +WRServices (??? - ???) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x18b3000 -  0x18b7ffc +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
    0x18be000 -  0x226efff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36. 0
    0x2271000 -  0x233eff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libi cui18n.dylib.36.0
    0x23a1000 -  0x247bfef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36 .0
    0x24bb000 -  0x252bfeb +com.adobe.adobe_caps (adobe_caps 3.0.116.0 - 3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2536000 -  0x259cffb +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x25b2000 -  0x264bfef +boost_regex (??? - ???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x2690000 -  0x26cdfff  com.apple.vmutils (4.2.1 - 107) <C491B259-8C5C-3199-83A0-97422C59C4E2> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x26e7000 -  0x2794ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x27d9000 -  0x27dbffb +boost_system (??? - ???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x27e0000 -  0x297cfff +WidgetBinLib.dylib (??? - ???) <A653F189-2C78-4606-1921-350F81951C7C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2a5a000 -  0x2bf9fe7 +com.adobe.owl (AdobeOwl version 3.0.84 - 3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2c62000 -  0x2cdffff +AdobeOwlCanvas (??? - ???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2cfb000 -  0x2cfeff8 +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <FFDDAB7A-220F-7344-F12B-010CA0C41DAB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x697d000 -  0x6985fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x9abd000 -  0x9abeff3 +com.adobe.InDesign.Metadata Database Filter (7.0.0.355 - ???) <8153D24F-2DB5-B2AB-9717-70E7532E8B02> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x9ac2000 -  0x9addffb +com.adobe.InDesign.IME (7.0.0.355 - ???) <3510053A-A752-0311-B35B-14EBEAC6D18D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0x9aed000 -  0x9aeeff1 +com.adobe.InDesign.Global Preferences Panel (7.0.0.355 - ???) <DF2380A0-A851-5529-7A36-1A3973B89200> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x9af2000 -  0x9afaffc +com.adobe.InDesign.Workgroup Client UI (7.0.0.355 - ???) <282ADA7E-C3D6-ADF8-6FB8-466B5F074934> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0xad66000 -  0xadcdfea +com.adobe.amt.services (AMTServices 3.0.0.64 [BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00] - 3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xb1ec000 -  0xb225ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 1.0.0.64 - 1.0.0.64) <C64CCBDC-B8E9-45E8-53E7-8577CFE9F2F0> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNo tifications
    0xb3e5000 -  0xb3f9fff +AdobeSFL (??? - ???) <83D25893-376A-89D9-BA9B-078913B8D34F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0xb860000 -  0xb9effe3 +com.adobe.InDesign.AppFramework (7.0.0.355 - ???) <B180AD73-E11C-ADA9-619A-C963D23DFF5A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0xc277000 -  0xc3f2ff7 +com.adobe.InDesign.Layout UI (7.0.0.355 - ???) <37BB6E3D-6E3C-05D7-1EDB-F8D5D8171EA4> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0xc478000 -  0xc4b2ff7 +com.adobe.InDesign.Import Export UI (7.0.0.355 - ???) <9B259867-0C2E-6976-E3A3-431F92EC255A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0xc4d3000 -  0xc5a5ff7 +com.adobe.InDesign.Hyperlinks (7.0.0.355 - ???) <E1361CF8-1690-FD55-6D73-3CCA8296195F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0xc5ee000 -  0xc658ff7 +com.adobe.InDesign.Master Page (7.0.0.355 - ???) <326A0DCE-DEF8-19EB-D6D2-8B1B27E8D52C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0xc67e000 -  0xc80ffeb +com.adobe.InDesign.Text Walker (7.0.0.355 - ???) <6FF2466F-5761-CB4D-1CBA-B79F8AFFEED7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0xc8af000 -  0xc8f2ff7 +com.adobe.InDesign.Linguistics (7.0.0.355 - ???) <BF4F5396-52F8-68EA-AEFE-5A04BDB96DA6> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0xc912000 -  0xc960fff +com.adobe.InDesign.Text Panel (7.0.0.355 - ???) <B7A2C124-8C5A-F83F-10C1-1D092A258703> /Applications/Adobe InDesign CS5/*/Text Panel
    0xc980000 -  0xc9afff0 +TextPanelLib.dylib (??? - ???) <F7BEA3B0-B264-4ECA-C7C1-E161D2CDCE4F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/TextPanelLib.dylib
    0xc9cb000 -  0xca0bffc +com.adobe.InDesign.Spelling Panel (7.0.0.355 - ???) <96DE3DF1-C22F-AF2F-4278-FDAAE598E3D6> /Applications/Adobe InDesign CS5/*/Spelling Panel
    0xca2b000 -  0xcad3fff +com.adobe.InDesign.Text Editor (7.0.0.355 - ???) <93D5B8A9-827E-4E67-BD48-5F00BA9D4760> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0xcb0f000 -  0xcb33fef +com.adobe.InDesign.Utilities (7.0.0.355 - ???) <AD54DEC4-0286-5511-D508-43356FD1E899> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0xcb4b000 -  0xcd2cfff +com.adobe.InDesign.Package and Preflight (7.0.0.355 - ???) <A0C40C94-3677-DE71-82E5-458C6CAFDB58> /Applications/Adobe InDesign CS5/*/Package and Preflight
    0xcdba000 -  0xce12ff7 +AdobeXMP (??? - ???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xce21000 -  0xce47ff6 +AdobeAXE8SharedExpat (??? - ???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
    0xce4f000 -  0xcf25fef +com.adobe.InDesign.Color Management (7.0.0.355 - ???) <8BF046A2-C7F5-6DEB-8150-1646329874A8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0xd0af000 -  0xd0ddff2 +com.adobe.Reader for DOCX (Reader for DOCX 5.5.0.7351 - 5.5.0.7351) <DB73F46F-0AF2-85C4-7890-0607F6949AF8> /Applications/Adobe InDesign CS5/*/Reader for DOCX
    0xd0ed000 -  0xd0eeff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xd0f3000 -  0xd0f6fff +TINthread.dylib (??? - ???) /Library/Application Support/Adobe/*/TINthread.dylib
    0xd200000 -  0xd461feb +com.adobe.InDesign.Application UI (7.0.0.355 - ???) <E800160A-CD7D-ECCA-F435-E140ECDE929F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0xd562000 -  0xd5fafff +com.adobe.AdobeExtendScript (ExtendScript 4.1.15 - 4.1.15.6523) <6C362E34-C8F3-D0EE-E331-027382A19A68> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendS cript
    0xd638000 -  0xd6c5ff7 +com.adobe.AdobeScCore (ScCore 4.1.23 - 4.1.23.7519) <AF48351A-8019-EC04-BF85-CE117D1146E3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0xd6f7000 -  0xd74affb +com.adobe.headlights.LogSessionFramework (??? - 2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0xd787000 -  0xd914ffb +com.adobe.InDesign.Document Framework (7.0.0.355 - ???) <15B95422-2F2D-6CC7-5EB3-27A447C47036> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0xda0a000 -  0xdb1aff3 +com.adobe.InDesign.SangamServicer-Mapper (7.0.0.355 - ???) <932ACD2D-2394-61AC-D400-83D28700283D> /Applications/Adobe InDesign CS5/*/SangamServicer-Mapper
    0xdb65000 -  0xdbceffb +AdobeSangam (3.0.0 - compatibility 3.0.0) <4FF2270C-9417-1059-527B-68C99BF43EA9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0xdc18000 -  0xdce5fe7 +AdobeAXEDOMCore (??? - ???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCor e
    0xdd12000 -  0xddcbfff +AdobeAXSLE (??? - ???) <A8C8ECD6-9098-8EA6-EA22-3BCCCB81A29B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0xddf5000 -  0xde78ff2 +AdobeSangamML (??? - ???) <B0029614-553A-BEAB-21E1-0664E5481F68> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0xdea9000 -  0xdf0eff3 +com.adobe.Reader for Excel (Reader for Excel 5.5.0.7351 - 5.5.0.7351) <13A79647-FDEE-DA76-4D9D-AD328F170941> /Applications/Adobe InDesign CS5/*/Reader for Excel
    0xdf27000 -  0xdfaffff +com.adobe.Reader For PageMaker (Reader For PageMaker 5.5.0.7351 - 5.5.0.7351) <CB3DC121-77F5-1289-537F-D979E601407F> /Applications/Adobe InDesign CS5/*/Reader for PageMaker
    0xdfd1000 -  0xdff5ffb +PMFileReader.dylib (??? - ???) <5C6DA068-A794-2099-9E3B-7F51E5FC478E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PMFileReader.dylib
    0xdffa000 -  0xe0fafff +com.adobe.Reader for Quark (Reader for Quark 5.5.0.7351 - 5.5.0.7351) <A525EFDE-6074-8CA1-6145-76B57CB0F448> /Applications/Adobe InDesign CS5/*/Reader for Quark
    0xe11f000 -  0xe185ff4 +com.adobe.Reader for RTF (Reader for RTF 5.5.0.7351 - 5.5.0.7351) <735AD3FF-36DE-C1B9-7EEA-ECCF3E929D1A> /Applications/Adobe InDesign CS5/*/Reader for RTF
    0xe1a3000 -  0xe217ff4 +com.adobe.Reader for Word (Reader for Word 5.5.0.7351 - 5.5.0.7351) <6E36D3D4-6EB7-8C51-9021-3C9301A089E4> /Applications/Adobe InDesign CS5/*/Reader for Word
    0xe234000 -  0xe2a9fe2 +com.adobe.Reader for XLSX (Reader for XLSX 5.5.0.7351 - 5.5.0.7351) <4020D646-03F7-B2A1-D3D3-4EFB98472E1B> /Applications/Adobe InDesign CS5/*/Reader for XLSX
    0xe2d0000 -  0xe2d8ff7 +com.adobe.ZTextReader (ZTextReader 5.5.0.7351 - 5.5.0.7351) <851A0B77-2110-B419-A8EB-B051C6CB7653> /Applications/Adobe InDesign CS5/*/ZTextReader
    0xe35d000 -  0xe3c1ff7 +com.adobe.InDesign.XMLParser (7.0.0.355 - ???) <16D1BE18-BDC0-598D-3DD6-933CE96E818D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0xe3e7000 -  0xe5aefef +com.adobe.InDesign.XML (7.0.0.355 - ???) <9B37046A-48B2-C794-E572-E7DFADAF8A30> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0xe647000 -  0xe66bfff +com.adobe.InDesign.WorldReady (7.0.0.355 - ???) <0B2B29B2-1DF5-BA1C-3F0D-01E8B3988813> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
    0xe67d000 -  0xe6b1ffb +com.adobe.InDesign.Workgroup (7.0.0.355 - ???) <724EA9BC-EFD4-9710-E20E-4B1C74304C7D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0xe6c6000 -  0xe6e1fff +com.adobe.InDesign.Workgroup Client (7.0.0.355 - ???) <193F094B-02D9-988A-47E6-C7E502E9F716> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0xe6f0000 -  0xe804feb +com.adobe.InDesign.Widgets (7.0.0.355 - ???) <AE4D2421-4E04-1153-615A-78CEEC745C3E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
    0xe887000 -  0xe995fef +com.adobe.InDesign.Transparency (7.0.0.355 - ???) <7817B498-6756-5590-87B8-307C1B4422E8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0xe9e0000 -  0xf723fff +com.adobe.psl (AdobePSL 12.0.0.7524 - 12.0.0.7524) <CFBCB19A-03F7-D095-1F48-8D68F05A25C5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfa62000 -  0xfab4ff1 +com.adobe.InDesign.TOC (7.0.0.355 - ???) <9EDF02F0-E9A9-58F8-5E3E-7C9C1ADA9849> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0xfad2000 -  0xffc7fe7 +com.adobe.InDesign.Text (7.0.0.355 - ???) <6F8AF442-9D31-5CC3-7740-04539BA37EB8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x10133000 - 0x10198fff +com.adobe.InDesign.Text Wrap (7.0.0.355 - ???) <557851E0-6260-DE31-3AFA-8008B49FBCE2> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x101bc000 - 0x101e6fff +com.adobe.InDesign.Text Wrap Path (7.0.0.355 - ???) <9BFEF65A-3909-03F2-0501-CC32FAAABF5A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
    0x101f0000 - 0x101fffff +com.adobe.InDesign.Text Editor Model (7.0.0.355 - ???) <8E01C18E-4947-93AB-71CA-E017C80FB09C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x10209000 - 0x10252fff +com.adobe.InDesign.Text Attributes (7.0.0.355 - ???) <07B49878-E35A-C031-205F-A25256640FCA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0x10277000 - 0x102befff +com.adobe.InDesign.TableStyles (7.0.0.355 - ???) <59E0C1A1-4044-C145-6414-61CF041E9968> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
    0x102d5000 - 0x104cefff +com.adobe.InDesign.Table Model (7.0.0.355 - ???) <F13B1585-BAAD-4C84-07BE-6428CEDA35B3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x1055b000 - 0x105e5ff7 +com.adobe.InDesign.Support for JavaScript (7.0.0.355 - ???) <196259C9-B203-DD5B-0733-8D146FC78723> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
    0x1061e000 - 0x10662fff +com.adobe.InDesign.Support for AppleScript (7.0.0.355 - ???) <DEC65072-2AB5-9901-9CBC-6FED676B2B04> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
    0x1067b000 - 0x1074afe7 +com.adobe.InDesign.Graphics (7.0.0.355 - ???) <97D16769-E6A4-AA23-7907-BD845CB4D9AD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x10793000 - 0x107e2ffb +com.adobe.InDesign.Stroke and Fill (7.0.0.355 - ???) <42B4A176-B4DA-C638-A59F-94F3A3FFB416> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x107fe000 - 0x108e1ffb +com.adobe.InDesign.Spread (7.0.0.355 - ???) <9BF0ADE3-0354-1790-AA19-DD6E7E495384> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x1092d000 - 0x10972ff0 +com.adobe.InDesign.Spread UI (7.0.0.355 - ???) <6B9E2DAE-304A-1E95-E46E-D37CC49BEEA1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0x1098c000 - 0x109c8fff +com.adobe.InDesign.Spline (7.0.0.355 - ???) <55F1F2F2-0BB7-96C1-726C-6D3E47351086> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x109e4000 - 0x10a1dfff +com.adobe.InDesign.Spline UI (7.0.0.355 - ???) <B40249D1-919F-FFC8-8E6F-344A29CF063B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0x10a3b000 - 0x10a49fff +com.adobe.InDesign.Spelling Service (7.0.0.355 - ???) <DBB0C9F7-934B-15B5-5CF5-FBEEE83ACC99> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0x10a55000 - 0x10a62fff +com.adobe.InDesign.Sound (7.0.0.355 - ???) <15A968FB-7F7D-1022-9E99-70A3818AC346> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0x10a6d000 - 0x10a87ff2 +com.adobe.InDesign.Sections (7.0.0.355 - ???) <5AFD740D-904C-2F9B-DE71-375B2B948BCF> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0x10a96000 - 0x10b2fff7 +com.adobe.InDesign.Scripting (7.0.0.355 - ???) <6E2BCE6C-230C-1724-CC70-12522818EBC3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x10b60000 - 0x10b7afff +com.adobe.InDesign.Rulers (7.0.0.355 - ???) <2546DE05-52F1-033E-90D0-03ED797D585C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x10b89000 - 0x10cd4fff +com.adobe.InDesign.Print (7.0.0.355 - ???) <F6B4CCEF-06B9-5E17-9102-2B29A6713D6A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x10d33000 - 0x10d65ff7 +com.adobe.InDesign.PNG Import Filter (7.0.0.355 - ???) <2C6DDB20-C560-14DD-84DC-A2AB8B6C0793> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x10d6e000 - 0x10da1ff7 +com.adobe.InDesign.Photoshop Import Filter (7.0.0.355 - ???) <E31C18E9-8962-5D0C-7289-E5E02EA16AC9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x10db7000 - 0x10e0aff3 +com.adobe.InDesign.Book (7.0.0.355 - ???) <CF89E43A-02A5-8A0A-2AF8-B85117122C18> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x10e2d000 - 0x10f22fe7 +com.adobe.InDesign.Image (7.0.0.355 - ???) <6261B004-671B-9411-3EF0-CC84D91752BA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x10f70000 - 0x10f79ffb +com.adobe.InDesign.Group (7.0.0.355 - ???) <DCC2D180-2385-BED5-873A-FE87139634AF> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x10f82000 - 0x11066fef +com.adobe.InDesign.EPS Page Item (7.0.0.355 - ???) <1C272994-750B-D8D1-02B6-6BD2534FD04F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x110ac000 - 0x1127efff +com.adobe.InDesign.PDF (7.0.0.355 - ???) <B19F021E-5955-B381-2EB4-DB064290CDF7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x11306000 - 0x113e9fef +AdobePDFPort (??? - ???) <A3B34989-24B0-04AF-D9BC-2B2718803809> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x1141e000 - 0x11439ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetti ngs
    0x11453000 - 0x11601fff +com.adobe.InDesign.Generic Page Item (7.0.0.355 - ???) <84651032-F791-88BD-C15F-407A4032542D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x1168d000 - 0x116c6ffb +com.adobe.InDesign.Path Type (7.0.0.355 - ???) <7867A3AB-4925-CBF7-1877-7924AD7A732D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x116e1000 - 0x116e9ff3 +PathTypeLib.dylib (??? - ???) <F753ACE3-9AB5-

    Also try the adobe forums (and better to skip the crash report unless someone asks for it)
    http://forums.adobe.com/index.jspa

  • InDesign CS5.5 crashes as soon as I open document

    Hi All
    So when I open this particular document it crashes InDesign CS5.5 insantly. Could it just be the size of the file? I've never had it happen and I had the client send this file over twice now. I rather just find out what the heck it is. Below is the long and legnth error message that means nothing to me.
    thanks!
    Process:    
    Adobe InDesign CS5.5 [261]
    Path:       
    /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Identifier: 
    com.adobe.InDesign
    Version:    
    7.5.2.318 (7520)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [120]
    Date/Time:  
    2012-01-25 17:05:38.339 -0500
    OS Version: 
    Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:     
    60121 sec
    Crashes Since Last Report:      
    2
    Per-App Interval Since Last Report:  4537 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    04C899E6-3D83-406A-B016-614A81E18883
    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 CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    __TEXT            
    0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Application Specific Information:
    objc[261]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.InDesign.Hyperlinks
    0x0ea20ed2 GetPlugIn + 364802
    1   com.adobe.InDesign.Hyperlinks
    0x0ea2345c GetPlugIn + 374412
    2   com.adobe.InDesign.AppFramework
    0x0dd4225f GetPlugIn + 54943
    3   com.adobe.InDesign.AppFramework
    0x0dd42ae9 GetPlugIn + 57129
    4   com.adobe.InDesign.AppFramework
    0x0dd429dd GetPlugIn + 56861
    5   com.adobe.InDesign.Document Framework
    0x0fc58a90 0xfbfc000 + 379536
    6   com.adobe.InDesign.Document Framework
    0x0fc5e8d0 0xfbfc000 + 403664
    7   com.adobe.InDesign.Document Framework
    0x0fc09fac 0xfbfc000 + 57260
    8   com.adobe.InDesign.Document Framework
    0x0fc09eaf 0xfbfc000 + 57007
    9   com.adobe.InDesign.Document Actions
    0x15a187c6 0x15a16000 + 10182
    10  PublicLib.dylib          
    0x0124b1d2 Command::DoImmediate(short) + 34
    11  com.adobe.InDesign.Utilities 
    0x0bfabaa3 0xbfaa000 + 6819
    12  com.adobe.InDesign.Utilities 
    0x0bfabccc 0xbfaa000 + 7372
    13  com.adobe.InDesign.AppFramework
    0x0dd2a518 0xdd10000 + 107800
    14  PublicLib.dylib          
    0x0124c32b CmdUtils::ProcessCommand(ICommand*) + 59
    15  com.adobe.InDesign.Document Actions
    0x15a1e519 GetPlugIn + 2185
    16  com.adobe.InDesign.Open Place
    0x13e81eec GetPlugIn + 29948
    17  com.adobe.InDesign.Open Place
    0x13e83176 GetPlugIn + 34694
    18  com.adobe.InDesign.Open Place
    0x13e7a2f5 0x13e79000 + 4853
    19  com.adobe.InDesign.Open Place
    0x13e7b31b GetPlugIn + 2347
    20  PublicLib.dylib          
    0x0124b1d2 Command::DoImmediate(short) + 34
    21  com.adobe.InDesign.Utilities 
    0x0bfabaa3 0xbfaa000 + 6819
    22  com.adobe.InDesign.Utilities 
    0x0bfabccc 0xbfaa000 + 7372
    23  com.adobe.InDesign.AppFramework
    0x0dd2a518 0xdd10000 + 107800
    24  PublicLib.dylib          
    0x0124c32b CmdUtils::ProcessCommand(ICommand*) + 59
    25  com.adobe.InDesign.Import Export UI
    0x0e93a387 GetPlugIn + 9367
    26  PublicLib.dylib          
    0x0124b1d2 Command::DoImmediate(short) + 34
    27  com.adobe.InDesign.Utilities 
    0x0bfabaa3 0xbfaa000 + 6819
    28  com.adobe.InDesign.Utilities 
    0x0bfabccc 0xbfaa000 + 7372
    29  com.adobe.InDesign.AppFramework
    0x0dd2a518 0xdd10000 + 107800
    30  PublicLib.dylib          
    0x0124c32b CmdUtils::ProcessCommand(ICommand*) + 59
    31  com.adobe.InDesign.Document Actions
    0x15a2c158 GetPlugIn + 58568
    32  com.adobe.InDesign.Document Framework
    0x0fd362f4 GetPlugIn + 525748
    33  com.adobe.InDesign.AppFramework
    0x0dd78564 GetPlugIn + 276900
    34  com.adobe.InDesign.AppFramework
    0x0dd7c20d GetPlugIn + 292429
    35  com.adobe.InDesign.AppFramework
    0x0dd7de67 GetPlugIn + 299687
    36  PublicLib.dylib          
    0x01374372 CScriptProvider::HandleMethodOnObjects(IDType<ScriptID_tag>, IScriptRequestData*, adobe::version_1::vector<InterfacePtr<IScript>, adobe::version_1::capture_allocator<InterfacePtr<IScript> > > const&) + 706
    37  com.adobe.InDesign.Scripting 
    0x13122a54 GetPlugIn + 175284
    38  com.adobe.InDesign.Scripting 
    0x131249ce GetPlugIn + 183342
    39  com.adobe.InDesign.Scripting 
    0x1312526f GetPlugIn + 185551
    40  com.adobe.InDesign.Support for AppleScript
    0x12c73a57 GetPlugIn + 81063
    41  com.adobe.InDesign.Support for AppleScript
    0x12c744f5 GetPlugIn + 83781
    42  com.adobe.InDesign.Support for AppleScript
    0x12c74de5 GetPlugIn + 86069
    43  com.adobe.InDesign.Support for AppleScript
    0x12c3d812 0x12c3c000 + 6162
    44  com.apple.AE             
    0x923da045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    45  com.apple.AE             
    0x923c3b67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    46  com.apple.AE             
    0x923c3a54 aeProcessAppleEvent + 253
    47  com.apple.HIToolbox      
    0x9453cfea AEProcessAppleEvent + 103
    48  com.adobe.InDesign.Application UI
    0x0f7983f1 GetPlugIn + 299425
    49  com.adobe.InDesign.Application UI
    0x0f79595c GetPlugIn + 288524
    50  com.apple.HIToolbox      
    0x946b7920 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    51  com.apple.HIToolbox      
    0x94533803 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    52  com.apple.HIToolbox      
    0x94532c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCall Rec + 482
    53  com.apple.HIToolbox      
    0x94532a98 SendEventToEventTargetWithOptions + 75
    54  com.apple.HIToolbox      
    0x945486fe _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 3152
    55  com.apple.HIToolbox      
    0x94533cbe _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    56  com.apple.HIToolbox      
    0x94532c80 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCall Rec + 482
    57  com.apple.HIToolbox      
    0x94547aa9 SendEventToEventTarget + 76
    58  com.adobe.InDesign.AppFramework
    0x0dd12e65 0xdd10000 + 11877
    59  com.adobe.InDesign.AppFramework
    0x0dd3838a GetPlugIn + 14282
    60  com.adobe.InDesign       
    0x000028ab main + 187
    61  com.adobe.InDesign       
    0x000027c6 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x9329c90a kevent + 10
    1   libdispatch.dylib        
    0x9945ac58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib        
    0x994596a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x921b1f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore
    0x903ef5a3 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    5   PMRuntime.dylib          
    0x00016130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    7   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    8   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib   
    0x9329c02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x921afccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x921b16fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib   
    0x9329c02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x921afccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x921b16fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib   
    0x93299c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x932991f6 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore
    0x9047c1c0 TS_exception_listener_thread + 90
    3   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore
    0x9047df36 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore
    0x903ef579 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore
    0x90451755 MPWaitOnQueue + 200
    6   com.adobe.ACE            
    0x0005e309 0x23000 + 242441
    7   com.adobe.ACE            
    0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore
    0x904526b4 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    10  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x9215982a pthread_cond_wait + 48
    3   com.adobe.amt.services   
    0x0ad3d274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services   
    0x0ad36074 C_EULA_SetState + 2166
    5   com.adobe.amt.services   
    0x0ad3d2da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    7   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x9215982a pthread_cond_wait + 48
    3   TINthread.dylib          
    0x0aff37a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib          
    0x0aff383f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    6   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework
    0x0de34aea GetPlugIn + 1048362
    4   com.adobe.InDesign.AppFramework
    0x0de3093f GetPlugIn + 1031551
    5   com.adobe.InDesign.AppFramework
    0x0de30c3c GetPlugIn + 1032316
    6   com.adobe.InDesign.AppFramework
    0x0de345b6 GetPlugIn + 1047030
    7   boost_threads            
    0x017ecfcd thread_proxy + 141
    8   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    9   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib   
    0x9329b83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x921b1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x9216242c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework
    0x0de34aea GetPlugIn + 1048362
    4   com.adobe.InDesign.AppFramework
    0x0de3093f GetPlugIn + 1031551
    5   com.adobe.InDesign.AppFramework
    0x0de30c3c GetPlugIn + 1032316
    6   com.adobe.InDesign.AppFramework
    0x0de345b6 GetPlugIn + 1047030
    7   boost_threads            
    0x017ecfcd thread_proxy + 141
    8   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    9   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib   
    0x9329c02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x921afccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x921b16fe start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib   
    0x9329c02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x921afccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x921b16fe start_wqthread + 30
    Thread 19:
    0   libsystem_kernel.dylib   
    0x9329bbb2 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x921627b9 nanosleep$UNIX2003 + 187
    2   com.adobe.InDesign.Support for JavaScript
    0x12bd7fab GetPlugIn + 344123
    3   com.adobe.InDesign.Support for JavaScript
    0x12bbb9c3 GetPlugIn + 227923
    4   com.adobe.InDesign.Support for JavaScript
    0x12bd80b8 GetPlugIn + 344392
    5   libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    6   libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib   
    0x9329ba9a __recvfrom + 10
    1   libsystem_c.dylib        
    0x921624a2 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib
    0x199792d7 Invoke + 54887
    3   ServiceManager-Launcher.dylib
    0x19978376 Invoke + 50950
    4   ServiceManager-Launcher.dylib
    0x19977227 Invoke + 46519
    5   ServiceManager-Launcher.dylib
    0x19977279 Invoke + 46601
    6   ServiceManager-Launcher.dylib
    0x19977303 Invoke + 46739
    7   ServiceManager-Launcher.dylib
    0x19971706 Invoke + 23190
    8   ServiceManager-Launcher.dylib
    0x199718ef Invoke + 23679
    9   ServiceManager-Launcher.dylib
    0x199724cf Invoke + 26719
    10  ServiceManager-Launcher.dylib
    0x199725cd Invoke + 26973
    11  ServiceManager-Launcher.dylib
    0x199759b8 Invoke + 40264
    12  ServiceManager-Launcher.dylib
    0x19975c61 Invoke + 40945
    13  ServiceManager-Launcher.dylib
    0x1997628f Invoke + 42527
    14  ServiceManager-Launcher.dylib
    0x1997648c Invoke + 43036
    15  ServiceManager-Launcher.dylib
    0x1996811a Login + 1654
    16  ServiceManager-Launcher.dylib
    0x199696f7 Login + 7251
    17  ServiceManager-Launcher.dylib
    0x199769fb Invoke + 44427
    18  ServiceManager-Launcher.dylib
    0x19978f49 Invoke + 53977
    19  libsystem_c.dylib        
    0x921aded9 _pthread_start + 335
    20  libsystem_c.dylib        
    0x921b16de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xbfffc548  ebx: 0x0ea20d94  ecx: 0x00000000  edx: 0xffffffff
      edi: 0xbfffc570  esi: 0x22032bd8  ebp: 0xbfffc5c8  esp: 0xbfffc480
       ss: 0x00000023  efl: 0x00010286  eip: 0x0ea20ed2   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
    0x1000 -
    0x4ffb +com.adobe.InDesign (7.5.2.318 - 7520) <013E55D1-37F6-7BD8-3CDF-965BA14790A1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    0xa000 -
    0xafff +InDesignModel (??? - ???) <30F20A0C-431C-E52D-BDEF-DAF8C99E8BB4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
    0xf000 -
    0xffff +InDesignModelAndUI (??? - ???) <F70C26E5-8747-4B57-8849-78889B389510> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x14000 -
    0x1bff3 +PMRuntime.dylib (??? - ???) <FD895FC0-241A-7DC6-AB12-5B3491A9E624> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMRuntime.dylib
       0x23000 -   0x15eff2 +com.adobe.ACE (AdobeACE 2.18.00.12659 - 2.18.00.12659) <5BD496D2-2E2B-0411-779F-855603C5B2AE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x186000 -   0x6acfff +com.adobe.AGM (AdobeAGM 4.20.70.12659 - 4.20.70.12659) <F1616614-B565-4CC9-C2FA-459FBC857981> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7f6000 -   0x832fff +com.adobe.ARE (AdobeARE 1.5.02.12659 - 1.5.02.12659) <9AF30878-D3F4-7E85-0820-B674CED4558A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x83c000 -   0x857fff +com.adobe.BIB (AdobeBIB 1.2.02.12659 - 1.2.02.12659) <802FB4A6-C5FF-522C-89A5-83EB4C139B12> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x862000 -   0x883ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <6710FF23-871B-C9A2-306C-15EDBA2AADEA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x890000 -   0xb82ff7 +com.adobe.CoolType (AdobeCoolType 5.07.124.12659 - 5.07.124.12659) <0481471E-E075-0782-BA1C-C5A5E23C5565> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xc0f000 -   0xfe8ff7 +com.adobe.MPS (AdobeMPS 5.5.0.12783 - 5.5.0.12783) <D67E9F42-5C32-4E64-9AE8-B292565E1326> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x111f000 -  0x118dff7 +ObjectModelLib.dylib (??? - ???) <F86DAAB2-F4BE-172D-F8F8-D7277C2FF342> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ObjectModelLib.dylib
    0x11b0000 -  0x120afe7 +DataBaseLib.dylib (??? - ???) <38A6CBEA-2B32-6C69-38A4-182F96AA6643> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/DataBaseLib.dylib
    0x1223000 -  0x163bfff +PublicLib.dylib (??? - ???) <60A8784E-BFAA-1F93-445A-82E601BD0253> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PublicLib.dylib
    0x17c2000 -  0x17d9ff6 +AdobeAFL (??? - ???) <E8577122-D703-5A91-8171-2FEA80B63A22> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x17ea000 -  0x17f2ff3 +boost_threads (??? - ???) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threads
    0x17fc000 -  0x1801ffd +ASLSupportLib.dylib (??? - ???) <85A313EC-05FF-23C5-0EEB-C74D412645FF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ASLSupportLib.dylib
    0x1807000 -  0x1808ff2 +libtbbmalloc.dylib (??? - ???) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbbmalloc.dylib
    0x180c000 -  0x181afe7 +libtbb.dylib (??? - ???) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbb.dylib
    0x1822000 -  0x195afe7 +WRServices (??? - ???) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x199c000 -  0x19a0ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x19a6000 -  0x2356fff +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x2359000 -  0x2426ff3 +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.d ylib.36.0
    0x2489000 -  0x2563fef +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x25a3000 -  0x2613feb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x261e000 -  0x268cffb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x26a3000 -  0x273cfef +boost_regex (??? - ???) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x2781000 -  0x27befff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x27d8000 -  0x2885ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x28ca000 -  0x28ccffb +boost_system (??? - ???) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x28d1000 -  0x2a6ffff +WidgetBinLib.dylib (??? - ???) <BF0D4AF6-C502-352D-DA1D-5EFBCA827993> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2b53000 -  0x2cf2fe7 +com.adobe.owl (AdobeOwl version 3.0.84 - 3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2d5b000 -  0x2dd8fff +AdobeOwlCanvas (??? - ???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2df4000 -  0x2df7ffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x69ac000 -  0x69b4fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x69d6000 -  0x69d7ff3 +com.adobe.InDesign.Metadata Database Filter (7.5.0.142 - ???) <4BBF4896-D573-119F-F44E-2B647F9CA5BF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x69dc000 -  0x69ddff1 +com.adobe.InDesign.Global Preferences Panel (7.5.0.142 - ???) <85F380E9-DDB5-4671-4473-227A5DB8C5DB> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x69e2000 -  0x69e3ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xad18000 -  0xad83fe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xadcf000 -  0xadeaffb +com.adobe.InDesign.IME (7.5.0.142 - ???) <13C0D3D0-6290-FAFC-4B37-57835D92293C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0xafa9000 -  0xafe2ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <3A9CF871-6678-90BB-3770-CDBF56AF21D5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificati ons
    0xaff2000 -  0xaff5fff +TINthread.dylib (??? - ???) /Library/Application Support/Adobe/*/TINthread.dylib
    0xbbb0000 -  0xbbdfff0 +TextPanelLib.dylib (??? - ???) <0C3DE096-BEA9-5C37-1C4B-E597611FE756> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/TextPanelLib.dylib
    0xbfaa000 -  0xbfcefef +com.adobe.InDesign.Utilities (7.5.2.318 - ???) <E05F2385-A9F8-94C0-0506-FF261DD65B35> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0xbfe6000 -  0xbfeeffe +com.adobe.InDesign.Workgroup Client UI (7.5.0.142 - ???) <5DC4A3D0-12C1-A243-C697-AF4A0D1CF60D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0xbff5000 -  0xbff6ffd +com.adobe.InDesign.Help (7.5.0.142 - ???) <CEB5D662-51B7-241D-925B-4F35F5EF83D4> /Applications/Adobe InDesign CS5.5/*/Help
    0xdd10000 -  0xdea5ff3 +com.adobe.InDesign.AppFramework (7.5.2.318 - ???) <06296784-A932-D77A-2059-49950C6C0717> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0xe72f000 -  0xe8abff7 +com.adobe.InDesign.Layout UI (7.5.0.142 - ???) <BF79DE26-6FA5-F647-59F9-6492DA99BEF5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0xe934000 -  0xe988ff7 +com.adobe.InDesign.Import Export UI (7.5.0.142 - ???) <798A82C2-D58E-223D-424D-EA0EE1BE14C1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0xe9b3000 -  0xea86ff7 +com.adobe.InDesign.Hyperlinks (7.5.0.142 - ???) <E1142D20-690C-F71A-D488-DA475046CAE5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0xead2000 -  0xeb3cff7 +com.adobe.InDesign.Master Page (7.5.0.142 - ???) <D26C418D-DB9A-EBB4-4683-11788565F9FD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0xeb64000 -  0xecf5feb +com.adobe.InDesign.Text Walker (7.5.0.142 - ???) <CDABE946-9188-80C3-7647-B5A48721C698> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0xed99000 -  0xeddbff7 +com.adobe.InDesign.Linguistics (7.5.2.318 - ???) <3376F4F4-AE68-BF5A-7543-5B02E7409DBD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0xedfa000 -  0xee48fff +com.adobe.InDesign.Text Panel (7.5.0.142 - ???) <70374F1B-6312-E7E4-2463-0928185FCC04> /Applications/Adobe InDesign CS5.5/*/Text Panel
    0xee6a000 -  0xeea9ffc +com.adobe.InDesign.Spelling Panel (7.5.0.142 - ???) <0C30B312-6573-7EEE-9825-8D0CB3C64518> /Applications/Adobe InDesign CS5.5/*/Spelling Panel
    0xeecb000 -  0xef76fff +com.adobe.InDesign.Text Editor (7.5.0.142 - ???) <15A5DCF7-68CF-C655-0DC2-597344EFFBB1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0xefb4000 -  0xf195fff +com.adobe.InDesign.Package and Preflight (7.5.2.318 - ???) <90499FBD-FA46-2718-3229-175D89DD7525> /Applications/Adobe InDesign CS5.5/*/Package and Preflight
    0xf223000 -  0xf27bff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.2 -c 3 - 61.141987) <31B045A8-AA5F-AFDF-E2DD-71B418CD1707> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xf28b000 -  0xf2b1ff6 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.5.101.12783 - 3.5.101.12783) <C7FD5306-E881-A19A-0F40-0E3844278526> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0xf2c4000 -  0xf39afef +com.adobe.InDesign.Color Management (7.5.0.142 - ???) <E527C98F-07A4-27EA-CBA1-AAA6D9013FEE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0xf527000 -  0xf5b4ff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.13048) <68FB7168-645E-BD55-5EAA-007315B53997> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0xf700000 -  0xf963feb +com.adobe.InDesign.Application UI (7.5.2.318 - ???) <5FE624D6-F03D-A1DC-BBD8-4E713A15025B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0xfa64000 -  0xfafcfff +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.13048) <A9394CC7-8E48-FE0F-FDB5-37D0FE77435B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0xfb5d000 -  0xfbb3ffb +com.adobe.headlights.LogSessionFramework (??? - 2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0xfbfc000 -  0xfd8affb +com.adobe.InDesign.Document Framework (7.5.2.318 - ???) <5AB23C17-52D7-3A6C-5343-2346BD7C2EE8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0xfe80000 -  0xff91ff3 +com.adobe.InDesign.SangamServicer-Mapper (7.5.0.142 - ???) <825729F5-772E-9F27-2710-147A497256B5> /Applications/Adobe InDesign CS5.5/*/SangamServicer-Mapper
    0xffe0000 - 0x10049ffb +com.adobe.AdobeSangam (AdobeSangam 5.5.0.12783 - 5.5.0.12783) <EE734EB4-6DC9-A88E-F189-584CB3CC300F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0x10095000 - 0x100c3ff2 +com.adobe.Reader for DOCX (Reader for DOCX 5.5.0.12783 - 5.5.0.12783) <3EAC0912-78DA-D791-9A84-3D52A0EBAE24> /Applications/Adobe InDesign CS5.5/*/Reader for DOCX
    0x100d4000 - 0x101a1fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.5.101.12783 - 3.5.101.12783) <117ACA20-072D-0AB2-CCB9-0385FF43CB14> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x10213000 - 0x102ccfff +com.adobe.AXEXSLT (AdobeAXSLE 3.5.101.12783 - 3.5.101.12783) <4187300A-A810-B5AA-A037-791EABE98CAE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x10338000 - 0x103bbff2 +com.adobe.AdobeSangamML (AdobeSangamML 5.5.0.12783 - 5.5.0.12783) <6BB4FF8D-2121-CD9A-375E-3676D87B9FB9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x103ee000 - 0x10453ff3 +com.adobe.Reader for Excel (Reader for Excel 5.5.0.12783 - 5.5.0.12783) <4E274D61-9128-F37D-4837-26C0DE381677> /Applications/Adobe InDesign CS5.5/*/Reader for Excel
    0x1046e000 - 0x10482fff +com.adobe.AdobeSFL (AdobeSFL 1.1.0.12783 - 1.1.0.12783) <DF8BD226-F63C-17C9-3A48-1E9D8AC79353> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x10489000 - 0x10511fff +com.adobe.Reader For PageMaker (Reader For PageMaker 5.5.0.12783 - 5.5.0.12783) <107A2E69-B4B2-F522-D66D-1E12BCCD1045> /Applications/Adobe InDesign CS5.5/*/Reader For PageMaker
    0x10535000 - 0x10559ffb +PMFileReader.dylib (??? - ???) <067D798E-A885-F281-E9FC-64CD81688345> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMFileReader.dylib
    0x1055e000 - 0x1065efff +com.adobe.Reader for Quark (Reader for Quark 5.5.0.12783 - 5.5.0.12783) <DD4A9EBE-20F5-7469-E72F-EE90980741DF> /Applications/Adobe InDesign CS5.5/*/Reader for Quark
    0x10685000 - 0x106ebff4 +com.adobe.Reader for RTF (Reader for RTF 5.5.0.12783 - 5.5.0.12783) <984288A8-94B9-BC95-FBF0-6F365701DF96> /Applications/Adobe InDesign CS5.5/*/Reader for RTF
    0x1070b000 - 0x1077fff4 +com.adobe.Reader for Word (Reader for Word 5.5.0.12783 - 5.5.0.12783) <57375CEC-6E04-2571-D77B-060B13D28B82> /Applications/Adobe InDesign CS5.5/*/Reader for Word
    0x1079e000 - 0x10813fe2 +com.adobe.Reader for XLSX (Reader for XLSX 5.5.0.12783 - 5.5.0.12783) <47A05136-AB06-1EE4-DD81-10F102AAB3F3> /Applications/Adobe InDesign CS5.5/*/Reader for XLSX
    0x1083c000 - 0x10844ff7 +com.adobe.ZTextReader (ZTextReader 5.5.0.12783 - 5.5.0.12783) <6C5C3A2C-5754-C172-6F64-F6A6168CE2CA> /Applications/Adobe InDesign CS5.5/*/ZTextReader
    0x108cb000 - 0x1092fff7 +com.adobe.InDesign.XMLParser (7.5.0.142 - ???) <CBF3AAB0-86BB-BBF2-4D96-0A4A8110B4B5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0x10957000 - 0x10b21fef +com.adobe.InDesign.XML (7.5.2.318 - ???) <6ADB30FE-CEAC-C0F8-6564-BDB90893D0AC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0x10bba000 - 0x10bdefff +com.adobe.InDesign.WorldReady (7.5.0.142 - ???) <35E745DE-9201-7F54-E0DD-895C0000FA28> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
    0x10bf1000 - 0x10c25ffb +com.adobe.InDesign.Workgroup (7.5.0.142 - ???) <E3BA5C81-70E2-25BF-630A-E491CFE09952> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0x10c3b000 - 0x10c56fff +com.adobe.InDesign.Workgroup Client (7.5.0.142 - ???) <41839E06-2B38-2225-B7E6-82F7FB5C0CB2> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0x10c66000 - 0x10d79feb +com.adobe.InDesign.Widgets (7.5.0.142 - ???) <92D951DB-5262-E331-7123-2EF3CE1026C3> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
    0x10dfe000 - 0x10f0cfef +com.adobe.InDesign.Transparency (7.5.0.142 - ???) <5A43618F-5283-0522-27CA-DAC2C651D88B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0x10f5a000 - 0x11cebfeb +com.adobe.psl (AdobePSL 12.0.0.12659 - 12.0.0.12659) <03D5B098-AD3C-FB84-0D0D-7DE57C025F3F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x12053000 - 0x120a5ff1 +com.adobe.InDesign.TOC (7.5.0.142 - ???) <D735757B-674F-2B98-FE61-3DDB48CE19FA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0x120c5000 - 0x125cbff7 +com.adobe.InDesign.Text (7.5.0.142 - ???) <6E232C2A-7FAB-5A10-63D5-62C8986ACB4E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x12745000 - 0x127aafff +com.adobe.InDesign.Text Wrap (7.5.0.142 - ???) <E2EAC53B-4D2A-C445-970F-1210C2E4A614> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x127d0000 - 0x127fafff +com.adobe.InDesign.Text Wrap Path (7.5.0.142 - ???) <47423658-3254-F342-8C6D-303833490E38> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
    0x12805000 - 0x12814fff +com.adobe.InDesign.Text Editor Model (7.5.0.142 - ???) <A72F1E12-4B7F-EB06-9CF3-2438A9E7AAEE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x1281f000 - 0x12868fff +com.adobe.InDesign.Text Attributes (7.5.0.142 - ???) <97F3EF6E-346A-3B92-1E4C-2DCE6E451DEC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0x1288f000 - 0x128d6fff +com.adobe.InDesign.TableStyles (7.5.0.142 - ???) <1BC33831-E1AF-2617-746C-0175688A58A0> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
    0x128ef000 - 0x12ae9fff +com.adobe.InDesign.Table Model (7.5.2.318 - ???) <65649D15-D404-7279-8D30-8DF8B595C276> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x12b77000 - 0x12c01ff7 +com.adobe.InDesign.Support for JavaScript (7.5.0.142 - ???) <BEAE6DA2-21DF-2ED4-BD76-053F665A89C1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
    0x12c3c000 - 0x12c80fff +com.adobe.InDesign.Support for AppleScript (7.5.0.142 - ???) <72C25DCD-42B9-E9B8-14EB-F0E32F406606> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
    0x12c9b000 - 0x12d6bfe7 +com.adobe.InDesign.Graphics (7.5.0.142 - ???) <DCA66589-8A34-5595-2BD9-F8090563B762> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x12db7000 - 0x12e06ffb +com.adobe.InDesign.Stroke and Fill (7.5.0.142 - ???) <B7D31D36-C6B6-78CC-52A6-E5E4C3A65337> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x12e24000 - 0x12f07fff +com.adobe.InDesign.Spread (7.5.2.318 - ???) <1452FC7D-B8F8-D35B-4C28-B7E36B01FDB6> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x12f53000 - 0x12f98ff0 +com.adobe.InDesign.Spread UI (7.5.0.142 - ???) <712A1BE8-B8DE-7800-2528-714CC910369A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0x12fb4000 - 0x12ff0ffb +com.adobe.InDesign.Spline (7.5.2.318 - ???) <999B67EB-BB60-8451-FEE5-00EC1C74C1A1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x1300c000 - 0x13045fff +com.adobe.InDesign.Spline UI (7.5.0.142 - ???) <909F6496-5243-7E94-5A82-CBB7C30CFE89> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0x13065000 - 0x13073fff +com.adobe.InDesign.Spelling Service (7.5.0.142 - ???) <A65001B0-C39E-001C-FF9A-0C2F42F06F3D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0x13080000 - 0x1308dfff +com.adobe.InDesign.Sound (7.5.0.142 - ???) <12F9F083-586A-6C5E-5F74-B20F197352AC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0x13099000 - 0x130baff7 +com.adobe.InDesign.SharedContent (7.5.0.142 - ???) <1E9F595E-928D-03EB-7FDD-F2F91C7A8DCD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent
    0x130cd000 - 0x130e7ff2 +com.adobe.InDesign.Sections (7.5.0.142 - ???) <73FB3557-F4B5-1DA9-0FF5-5A8FFE4E91BA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0x130f7000 - 0x13190ff7 +com.adobe.InDesign.Scripting (7.5.0.142 - ???) <37732D36-D9CC-F7A1-989E-8A2B90BC4905> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x131c3000 - 0x131ddfff +com.adobe.InDesign.Rulers (7.5.0.142 - ???) <A0397830-63EC-4648-BDA6-D8A8B2B4A2B4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x131ee000 - 0x13338fff +com.adobe.InDesign.Print (7.5.2.318 - ???) <A6E7B766-EF13-3617-4D65-CAAC602322A6> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x13397000 - 0x133c9fe7 +com.adobe.InDesign.PNG Import Filter (7.5.2.318 - ???) <BB093D72-53E8-8066-1F88-74707FC94BE6> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x133d2000 - 0x13405ff7 +com.adobe.InDesign.Photoshop Import Filter (7.5.0.142 - ???) <2DD22890-FBF0-B6D8-82C9-3367B98E74E1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x1341d000 - 0x13470ff3 +com.adobe.InDesign.Book (7.5.2.318 - ???) <7DA521FA-5EBA-1B0B-0701-0662B8E1D87E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x13493000 - 0x13588fe7 +com.adobe.InDesign.Image (7.5.2.318 - ???) <8C73C920-8687-D95F-9242-5BA2E58D9F42> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x135d6000 - 0x135dfffb +com.adobe.InDesign.Group (7.5.0.142 - ???) <4109367F-5E27-881F-274E-2F9B96C61157> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x135ea000 - 0x136ceffb +com.adobe.InDesign.EPS Page Item (7.5.2.318 - ???) <3575B3AE-C64D-AE40-B4CD-EC561F12FC1A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x13714000 - 0x138f6fff +com.adobe.InDesign.PDF (7.5.2.318 - ???) <E3FA91D1-7814-2F56

    You have essentially received two files (being the same) crashing InDesign? It sounds like the file is corrupting via email. I would suggest having the sender compress the file in a folder, and send that.
    At this point, and you can try to salvage the file, or clean up InDesigns Recovery Folder.
    Under Preferences > File Handling note the path to the recovery folder. Move or delete all the contents.
    I wouldn't trash ID's preferences yet, as there seems to be a problem with only one file. But you might want to review its content.
    http://forums.adobe.com/thread/526990

  • How to Best Import QuarkXpress 8.0 Files into InDesign CS5

    Folks,
    Searched the forum, but I'm only finding info on older versions of Quark and InDesign.
    I've got a ton of end user documents in QuarkXpress 8.0 that I need to import into InDesign CS5.  (These are installation and operation manuals for data and telephony modems with lots of illustrations and diagrams in them.)  I just downloaded the trial version of InDesign CS5 and could use some help.
    The import procedure (for the older software) looked to be quite cumbersome.  I'm hoping that InDesign CS5 is more capable and efficient at importing QuarkXpress files.  I also read about Q2ID by Markzware.  Does that product work with InDesign CS5, or is it even necessary with InDesign CS5?
    Any advice and guidance will be appreciated.  Got to get started soon!
    Thanks for your help!

    Hello Joel,
    Thanks for your comments.  I've done enough conversions in the past 25+ years as a tech writer to know that I will be faced with some clean-up efforts after the import.
    My Quark template is pretty simple... one big text box on the right-hand side of each page (landscape), leaving the left-hand side of each page for my illustrations and graphics to be placed.
    I think my biggest conversion problem is going to involve these graphics.  Many of them have text callouts (in text boxes) with arrows (made with Quark graphics) pointing to the proper spot on the illustration or graphic.  I'm wondering how well those will all convert and import.  I do have them all grouped in Quark.  By that I mean that one graphic and all of its associated text callouts and arrows are grouped.
    I guess I'll find out!

  • Corrupted InDesign CS5 files

    Hi, I have a few corrupted indesign CS5 files - had to recover them from my laptop. However, now when I try to open them I get "corrupted file" "error 5".  Does anyone know how I can open these.
    I have tried opening as a copy etc, but to no avail. Thanks in advance.

    Error Code 5 is basically a flatline.
    You could try a service like Markzware, see if they recover your file by converting it to quark and back again (I know seems like a very wrong work flow).
    But I've heard of this working in the past. I think they'll do the conversion for you and if it works you will need to pay the going rate for the files back (not 100% sure on how they work but that's my understanding)

  • Why does indesign cs5.5 keep shutting down?

    Before i start - Im going to be honest im not great with computers. I'm using indesign cs5.5 (which im new too - to make things worse) im trying to delete a page that i have already worked on but no longer need but i keep getting theses messages -
    What am i doing wrong?? Its the first page of the doc as i want it to start with double page - hope this is making sense.
    thanks in advice

    this also came up
    Process:         Adobe InDesign CS5.5 [484]
    Path:            /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Identifier:      com.adobe.InDesign
    Version:         7.5.0.142 (7500)
    Code Type:       X86 (Native)
    Parent Process:  launchd [145]
    User ID:         501
    Date/Time:       2013-07-04 15:21:37.049 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          11201 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  42120 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      1BEF4F6C-79C0-9F9E-C213-38DFF34F498C
    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 CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
        __TEXT                 0000000000001000-0000000000005000 [   16K] r-x/rwx SM=COW  /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   PublicLib.dylib                         0x0128eb37 ProtectiveShutdown::~ProtectiveShutdown() + 279
    1   com.adobe.InDesign.AppFramework          0x0a97a0f3 0xa960000 + 106739
    2   PublicLib.dylib                         0x012500eb CmdUtils::ProcessCommand(ICommand*) + 59
    3   com.adobe.InDesign.Spread               0x0fd32e9c GetPlugIn + 345772
    4   com.adobe.InDesign.Spread               0x0fd3314d GetPlugIn + 346461
    5   com.adobe.InDesign.Spread               0x0fcd001f 0xfcbb000 + 86047
    6   PublicLib.dylib                         0x0124ef92 Command::DoImmediate(short) + 34
    7   com.adobe.InDesign.Utilities            0x0bd02aa3 0xbd01000 + 6819
    8   com.adobe.InDesign.Utilities            0x0bd02ccc 0xbd01000 + 7372
    9   com.adobe.InDesign.AppFramework          0x0a97a198 0xa960000 + 106904
    10  PublicLib.dylib                         0x012500eb CmdUtils::ProcessCommand(ICommand*) + 59
    11  PublicLib.dylib                         0x0124e841 CompoundSequenceCmd::Do() + 369
    12  PublicLib.dylib                         0x0124ef92 Command::DoImmediate(short) + 34
    13  com.adobe.InDesign.Utilities            0x0bd02aa3 0xbd01000 + 6819
    14  com.adobe.InDesign.Utilities            0x0bd02ccc 0xbd01000 + 7372
    15  com.adobe.InDesign.AppFramework          0x0a97a198 0xa960000 + 106904
    16  PublicLib.dylib                         0x012500eb CmdUtils::ProcessCommand(ICommand*) + 59
    17  com.adobe.InDesign.Pages Panel          0x14520ec6 GetPlugIn + 160998
    18  com.adobe.InDesign.Application UI          0x0c48d89a GetPlugIn + 256410
    19  com.adobe.InDesign.Application UI          0x0c485e9b GetPlugIn + 225179
    20  com.adobe.InDesign.Application UI          0x0c4859f3 GetPlugIn + 223987
    21  com.apple.HIToolbox                     0x9a3b6772 CarbonReceiveMapper + 116
    22  com.apple.HIServices                    0x99760d9e DoLegacyDropMessage + 120
    23  com.apple.HIServices                    0x99760c1e DoDropMessage + 43
    24  com.apple.HIServices                    0x99760bb7 SendDropMessage + 43
    25  com.apple.HIServices                    0x99764885 DragInApplication + 703
    26  com.apple.HIServices                    0x99763b84 CoreDragStartDragging + 517
    27  com.apple.HIToolbox                     0x9a3b5e9a TrackDrag + 634
    28  com.adobe.InDesign.Application UI          0x0c48816c GetPlugIn + 234092
    29  com.adobe.InDesign.Application UI          0x0c48b37e GetPlugIn + 246910
    30  com.adobe.InDesign.Pages Panel          0x144e85b1 0x144e2000 + 26033
    31  WidgetBinLib.dylib                      0x028ea114 PanelEventHandler::LButtonDn(IEvent*) + 116
    32  com.adobe.InDesign.Pages Panel          0x145012e2 GetPlugIn + 30978
    33  WidgetBinLib.dylib                      0x028ea114 PanelEventHandler::LButtonDn(IEvent*) + 116
    34  com.adobe.InDesign.Pages Panel          0x145012e2 GetPlugIn + 30978
    35  com.adobe.InDesign.Pages Panel          0x145312a5 GetPlugIn + 227525
    36  WidgetBinLib.dylib                      0x028ea114 PanelEventHandler::LButtonDn(IEvent*) + 116
    37  WidgetBinLib.dylib                      0x028ea114 PanelEventHandler::LButtonDn(IEvent*) + 116
    38  com.adobe.InDesign.Widgets              0x0da71063 GetPlugIn + 120659
    39  WidgetBinLib.dylib                      0x028ea114 PanelEventHandler::LButtonDn(IEvent*) + 116
    40  WidgetBinLib.dylib                      0x028ea114 PanelEventHandler::LButtonDn(IEvent*) + 116
    41  com.adobe.InDesign.Application UI          0x0c4fdd3e GetPlugIn + 716350
    42  WidgetBinLib.dylib                      0x0297c0f0 CDefaultEH::LButtonDn(IEvent*) + 48
    43  PublicLib.dylib                         0x0126f75e CEventDispatcher::DispatchToEventHandlers(IEvent*) + 222
    44  PublicLib.dylib                         0x0126f218 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 24
    45  com.adobe.InDesign.Application UI          0x0c497b76 GetPlugIn + 298102
    46  com.adobe.InDesign.Application UI          0x0c49560c GetPlugIn + 288524
    47  com.adobe.InDesign.Application UI          0x0c4d0450 GetPlugIn + 529744
    48  com.apple.HIToolbox                     0x9a3b99bb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    49  com.apple.HIToolbox                     0x9a241394 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    50  com.apple.HIToolbox                     0x9a240780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    51  com.apple.HIToolbox                     0x9a254655 SendEventToEventTarget + 88
    52  com.apple.HIToolbox                     0x9a2745c7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    53  com.apple.HIToolbox                     0x9a24183f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    54  com.apple.HIToolbox                     0x9a240780 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    55  com.apple.HIToolbox                     0x9a254655 SendEventToEventTarget + 88
    56  com.adobe.InDesign.AppFramework          0x0a962aff 0xa960000 + 11007
    57  com.adobe.InDesign.AppFramework          0x0a98800a GetPlugIn + 14282
    58  com.adobe.InDesign                      0x000028ab main + 187
    59  com.adobe.InDesign                      0x000027c6 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9677a9ae kevent + 10
    1   libdispatch.dylib                       0x954cdc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x954cd7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96b5f572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9562d6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x95579acb MPWaitOnQueue + 261
    5   PMRuntime.dylib                         0x00016130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore          0x95600a7b PrivateMPEntryPoint + 68
    7   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x967777d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x96776cb0 mach_msg + 68
    2   com.apple.CoreServices.CarbonCore          0x9562a35b TS_exception_listener_thread + 89
    3   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    4   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x96be5095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9562d492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9562d68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x95579acb MPWaitOnQueue + 261
    6   com.adobe.ACE                           0x0005e309 0x23000 + 242441
    7   com.adobe.ACE                           0x0005dd01 0x23000 + 240897
    8   com.apple.CoreServices.CarbonCore          0x95600a7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96becaf0 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x09dfe274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x09df7074 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x09dfe2da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96becaf0 pthread_cond_wait + 48
    3   TINthread.dylib                         0x11d7c7a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                         0x11d7c83f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    6   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x96779c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x96be4a55 nanosleep$UNIX2003 + 189
    2   com.adobe.InDesign.Support for JavaScript          0x0fa6efab GetPlugIn + 344123
    3   com.adobe.InDesign.Support for JavaScript          0x0fa529c3 GetPlugIn + 227923
    4   com.adobe.InDesign.Support for JavaScript          0x0fa6f0b8 GetPlugIn + 344392
    5   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    6   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x96779b3e __recvfrom + 10
    1   libsystem_c.dylib                       0x96be4bbf recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x168702d7 Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x1686f376 Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x1686e227 Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x1686e279 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x1686e303 Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x16868706 Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x168688ef Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x168694cf Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x168695cd Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x1686c9b8 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x1686cc61 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x1686d28f Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x1686d48c Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x1685f11a Login + 1654
    16  ServiceManager-Launcher.dylib           0x168606f7 Login + 7251
    17  ServiceManager-Launcher.dylib           0x1686d9fb Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x1686ff49 Invoke + 53977
    19  libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    20  libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96becaf0 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1eaab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x1e84453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x1eaab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x1eaab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x1eaab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96becaf0 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1eaab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x1e84453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x1eaab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x1eaab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x1eaab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x96777826 semaphore_timedwait_trap + 10
    1   com.apple.CoreServices.CarbonCore          0x95600810 MPWaitOnSemaphore + 106
    2   MultiProcessor Support                  0x1b73a0f8 ThreadFunction(void*) + 78
    3   com.apple.CoreServices.CarbonCore          0x95600a7b PrivateMPEntryPoint + 68
    4   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    5   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96b5f572 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1eaab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x1eac5e4e APXGetHostAPI + 2708990
    5   com.adobe.adobeswfl                     0x1eaab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x1eaab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x1eaab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x967798e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x96b5f2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96b5f572 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1eaab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x1ec22348 APXGetHostAPI + 4135672
    5   com.adobe.adobeswfl                     0x1eaab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x1eaab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x1eaab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x96b5a5b7 _pthread_start + 344
    9   libsystem_c.dylib                       0x96b44d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x9677a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x96b5d0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x96b5ce79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x96b44d2a start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x9677a0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x96b5d0ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x96b5ce79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x96b44d2a start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0128ea34  ecx: 0xffffffff  edx: 0x02f4b7f8
      edi: 0xbfffd6f4  esi: 0x0366b668  ebp: 0xbfffd748  esp: 0xbfffd690
       ss: 0x00000023  efl: 0x00010246  eip: 0x0128eb37   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign (7.5.0.142 - 7500) <C7B8B88C-A6B0-6D19-90C9-8D0DEF16C955> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Adobe InDesign CS5.5
        0xa000 -     0xafff +InDesignModel (0) <30F20A0C-431C-E52D-BDEF-DAF8C99E8BB4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
        0xf000 -     0xffff +InDesignModelAndUI (0) <F70C26E5-8747-4B57-8849-78889B389510> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
       0x14000 -    0x1bff3 +PMRuntime.dylib (1) <FD895FC0-241A-7DC6-AB12-5B3491A9E624> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMRuntime.dylib
       0x23000 -   0x15eff2 +com.adobe.ACE (AdobeACE 2.18.00.12659 - 2.18.00.12659) <5BD496D2-2E2B-0411-779F-855603C5B2AE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x186000 -   0x6acfff +com.adobe.AGM (AdobeAGM 4.20.70.12659 - 4.20.70.12659) <F1616614-B565-4CC9-C2FA-459FBC857981> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7f6000 -   0x832fff +com.adobe.ARE (AdobeARE 1.5.02.12659 - 1.5.02.12659) <9AF30878-D3F4-7E85-0820-B674CED4558A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x83c000 -   0x857fff +com.adobe.BIB (AdobeBIB 1.2.02.12659 - 1.2.02.12659) <802FB4A6-C5FF-522C-89A5-83EB4C139B12> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x862000 -   0x883ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <6710FF23-871B-C9A2-306C-15EDBA2AADEA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0x890000 -   0xb82ff7 +com.adobe.CoolType (AdobeCoolType 5.07.124.12659 - 5.07.124.12659) <0481471E-E075-0782-BA1C-C5A5E23C5565> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
      0xc0f000 -   0xfe8ff7 +com.adobe.MPS (AdobeMPS 5.5.0.12783 - 5.5.0.12783) <D67E9F42-5C32-4E64-9AE8-B292565E1326> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x111f000 -  0x118dff7 +ObjectModelLib.dylib (1) <CBC3A0F4-5567-AE0C-8E1A-886D0E4DEFF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ObjectModelLib.dylib
    0x11b2000 -  0x120cfe7 +DataBaseLib.dylib (1) <5825417D-9630-83F2-2A46-4A1E1F64406A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/DataBaseLib.dylib
    0x1227000 -  0x163efff +PublicLib.dylib (1) <C771D26E-109E-B663-A7B8-62B809C34629> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PublicLib.dylib
    0x17ce000 -  0x17e5ff6 +AdobeAFL (1) <CFC0FF78-A748-AC45-2E62-8F20090D911C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x17f6000 -  0x17feff3 +boost_threads (0) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boost_threads
    0x1808000 -  0x180dffd +ASLSupportLib.dylib (1) <85A313EC-05FF-23C5-0EEB-C74D412645FF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/ASLSupportLib.dylib
    0x1813000 -  0x1814ff2 +libtbbmalloc.dylib (0) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbbmalloc.dylib
    0x1818000 -  0x1826fe7 +libtbb.dylib (0) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/libtbb.dylib
    0x182e000 -  0x1966fe7 +WRServices (0) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x19a8000 -  0x19acffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x19b2000 -  0x2362fff +libicudata.dylib.36.0 (36) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x2365000 -  0x2432ff3 +libicui18n.dylib.36.0 (36) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.d ylib.36.0
    0x2495000 -  0x256ffef +libicuuc.dylib.36.0 (36) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x25af000 -  0x261ffeb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x262a000 -  0x2698ffb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x26af000 -  0x2748fef +boost_regex (0) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost_regex
    0x278d000 -  0x27c9ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x27e3000 -  0x288efff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x28d2000 -  0x28d4ffb +boost_system (0) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boost_system
    0x28d9000 -  0x2a77fff +WidgetBinLib.dylib (1) <BF0D4AF6-C502-352D-DA1D-5EFBCA827993> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2b5b000 -  0x2cfafe7 +com.adobe.owl (AdobeOwl version 3.0.84 - 3.0.84) <25884999-8A98-F8C9-699B-ED75261B6BFC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x2d63000 -  0x2de0fff +AdobeOwlCanvas (1) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2dfc000 -  0x2dffffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x3dc7000 -  0x3dccfff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <903097A8-3922-3BF8-8B82-8BD1D831F6E7> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x3df1000 -  0x3dfffff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x3e03000 -  0x3e15ffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x3e1b000 -  0x3e26fff  libGPUSupport.dylib (8.9.2) <01E0F852-CBB7-3EE7-A2CD-79CB4A3EF2B5> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0x3e2d000 -  0x3e58ff7  GLRendererFloat (8.9.2) <96FF25EA-1BC3-3FBA-85B6-08CC9F1D2077> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x3e61000 -  0x3e69ffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x3e70000 -  0x3e79ff7 +FastCore (???) <D6D6370C-7316-A804-FCF2-45FD60439834> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePSL.framework/PlugIns/FastCore.plugin/Contents/MacOS/F astCore
    0x9dd9000 -  0x9e44fe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x9e60000 -  0x9e68fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xa1dc000 -  0xa215ffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 2.0.0.15 - 2.0.0.15) <3A9CF871-6678-90BB-3770-CDBF56AF21D5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotificati ons
    0xa3d5000 -  0xa3d6ff3 +com.adobe.InDesign.Metadata Database Filter (7.5.0.142 - 0) <4BBF4896-D573-119F-F44E-2B647F9CA5BF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0xa3db000 -  0xa3dcff1 +com.adobe.InDesign.Global Preferences Panel (7.5.0.142 - 0) <85F380E9-DDB5-4671-4473-227A5DB8C5DB> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0xa3e1000 -  0xa3f5fff +com.adobe.AdobeSFL (AdobeSFL 1.1.0.12783 - 1.1.0.12783) <DF8BD226-F63C-17C9-3A48-1E9D8AC79353> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0xa960000 -  0xaaf4fe7 +com.adobe.InDesign.AppFramework (7.5.0.142 - 0) <8D408CDA-B256-926D-33BF-F9FE8BA6BF52> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0xb400000 -  0xb57cff7 +com.adobe.InDesign.Layout UI (7.5.0.142 - 0) <BF79DE26-6FA5-F647-59F9-6492DA99BEF5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0xb605000 -  0xb659ff7 +com.adobe.InDesign.Import Export UI (7.5.0.142 - 0) <798A82C2-D58E-223D-424D-EA0EE1BE14C1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0xb684000 -  0xb757ff7 +com.adobe.InDesign.Hyperlinks (7.5.0.142 - 0) <E1142D20-690C-F71A-D488-DA475046CAE5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0xb7a3000 -  0xb80dff7 +com.adobe.InDesign.Master Page (7.5.0.142 - 0) <D26C418D-DB9A-EBB4-4683-11788565F9FD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0xb835000 -  0xb850ffb +com.adobe.InDesign.IME (7.5.0.142 - 0) <13C0D3D0-6290-FAFC-4B37-57835D92293C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0xb862000 -  0xb9f3feb +com.adobe.InDesign.Text Walker (7.5.0.142 - 0) <CDABE946-9188-80C3-7647-B5A48721C698> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0xba97000 -  0xbad9ff7 +com.adobe.InDesign.Linguistics (7.5.0.142 - 0) <878DBFDF-7D69-35A8-2652-DE759858C21F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0xbafa000 -  0xbb48fff +com.adobe.InDesign.Text Panel (7.5.0.142 - 0) <70374F1B-6312-E7E4-2463-0928185FCC04> /Applications/Adobe InDesign CS5.5/*/Text Panel
    0xbb6a000 -  0xbb99ff0 +TextPanelLib.dylib (1) <0C3DE096-BEA9-5C37-1C4B-E597611FE756> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/TextPanelLib.dylib
    0xbbb7000 -  0xbbf6ffc +com.adobe.InDesign.Spelling Panel (7.5.0.142 - 0) <0C30B312-6573-7EEE-9825-8D0CB3C64518> /Applications/Adobe InDesign CS5.5/*/Spelling Panel
    0xbc18000 -  0xbcc3fff +com.adobe.InDesign.Text Editor (7.5.0.142 - 0) <15A5DCF7-68CF-C655-0DC2-597344EFFBB1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0xbd01000 -  0xbd25fef +com.adobe.InDesign.Utilities (7.5.0.142 - 0) <58F6C2A9-6DED-218C-8DCB-C93E1292BCFD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0xbd3e000 -  0xbf1ffff +com.adobe.InDesign.Package and Preflight (7.5.0.142 - 0) <CB1F2F8F-96BF-051F-C9B4-6333B4CAD819> /Applications/Adobe InDesign CS5.5/*/Package and Preflight
    0xbfb1000 -  0xc009ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.2 -c 3 - 61.141987) <31B045A8-AA5F-AFDF-E2DD-71B418CD1707> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xc019000 -  0xc03fff6 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.5.101.12783 - 3.5.101.12783) <C7FD5306-E881-A19A-0F40-0E3844278526> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0xc052000 -  0xc128fef +com.adobe.InDesign.Color Management (7.5.0.142 - 0) <E527C98F-07A4-27EA-CBA1-AAA6D9013FEE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0xc2b5000 -  0xc2e3ff2 +com.adobe.Reader for DOCX (Reader for DOCX 5.5.0.12783 - 5.5.0.12783) <3EAC0912-78DA-D791-9A84-3D52A0EBAE24> /Applications/Adobe InDesign CS5.5/*/Reader for DOCX
    0xc2f4000 -  0xc2f5ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xc2fa000 -  0xc2fbffd +com.adobe.InDesign.Help (7.5.0.142 - 0) <CEB5D662-51B7-241D-925B-4F35F5EF83D4> /Applications/Adobe InDesign CS5.5/*/Help
    0xc400000 -  0xc662feb +com.adobe.InDesign.Application UI (7.5.0.142 - 0) <6C7D1595-0A3F-F4CC-4A05-9AB25904E679> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0xc768000 -  0xc800fff +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.13048) <A9394CC7-8E48-FE0F-FDB5-37D0FE77435B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0xc861000 -  0xc8eeff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.13048) <68FB7168-645E-BD55-5EAA-007315B53997> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0xc935000 -  0xc98bffb +com.adobe.headlights.LogSessionFramework (2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0xc9d4000 -  0xcb61ffb +com.adobe.InDesign.Document Framework (7.5.0.142 - 0) <11303160-46A1-F578-AE66-926F1F903F72> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0xcc5b000 -  0xcd6cff3 +com.adobe.InDesign.SangamServicer-Mapper (7.5.0.142 - 0) <825729F5-772E-9F27-2710-147A497256B5> /Applications/Adobe InDesign CS5.5/*/SangamServicer-Mapper
    0xcdbb000 -  0xce24ffb +com.adobe.AdobeSangam (AdobeSangam 5.5.0.12783 - 5.5.0.12783) <EE734EB4-6DC9-A88E-F189-584CB3CC300F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0xce70000 -  0xcf3dfe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.5.101.12783 - 3.5.101.12783) <117ACA20-072D-0AB2-CCB9-0385FF43CB14> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0xcfaf000 -  0xd068fff +com.adobe.AXEXSLT (AdobeAXSLE 3.5.101.12783 - 3.5.101.12783) <4187300A-A810-B5AA-A037-791EABE98CAE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0xd0d4000 -  0xd157ff2 +com.adobe.AdobeSangamML (AdobeSangamML 5.5.0.12783 - 5.5.0.12783) <6BB4FF8D-2121-CD9A-375E-3676D87B9FB9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0xd18a000 -  0xd1efff3 +com.adobe.Reader for Excel (Reader for Excel 5.5.0.12783 - 5.5.0.12783) <4E274D61-9128-F37D-4837-26C0DE381677> /Applications/Adobe InDesign CS5.5/*/Reader for Excel
    0xd20a000 -  0xd292fff +com.adobe.Reader For PageMaker (Reader For PageMaker 5.5.0.12783 - 5.5.0.12783) <107A2E69-B4B2-F522-D66D-1E12BCCD1045> /Applications/Adobe InDesign CS5.5/*/Reader For PageMaker
    0xd2b6000 -  0xd2daffb +PMFileReader.dylib (1) <067D798E-A885-F281-E9FC-64CD81688345> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PMFileReader.dylib
    0xd2df000 -  0xd3dffff +com.adobe.Reader for Quark (Reader for Quark 5.5.0.12783 - 5.5.0.12783) <DD4A9EBE-20F5-7469-E72F-EE90980741DF> /Applications/Adobe InDesign CS5.5/*/Reader for Quark
    0xd406000 -  0xd46cff4 +com.adobe.Reader for RTF (Reader for RTF 5.5.0.12783 - 5.5.0.12783) <984288A8-94B9-BC95-FBF0-6F365701DF96> /Applications/Adobe InDesign CS5.5/*/Reader for RTF
    0xd48c000 -  0xd500ff4 +com.adobe.Reader for Word (Reader for Word 5.5.0.12783 - 5.5.0.12783) <57375CEC-6E04-2571-D77B-060B13D28B82> /Applications/Adobe InDesign CS5.5/*/Reader for Word
    0xd51f000 -  0xd594fe2 +com.adobe.Reader for XLSX (Reader for XLSX 5.5.0.12783 - 5.5.0.12783) <47A05136-AB06-1EE4-DD81-10F102AAB3F3> /Applications/Adobe InDesign CS5.5/*/Reader for XLSX
    0xd5bd000 -  0xd5c5ff7 +com.adobe.ZTextReader (ZTextReader 5.5.0.12783 - 5.5.0.12783) <6C5C3A2C-5754-C172-6F64-F6A6168CE2CA> /Applications/Adobe InDesign CS5.5/*/ZTextReader
    0xd64c000 -  0xd6b0ff7 +com.adobe.InDesign.XMLParser (7.5.0.142 - 0) <CBF3AAB0-86BB-BBF2-4D96-0A4A8110B4B5> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0xd6d8000 -  0xd8a1fef +com.adobe.InDesign.XML (7.5.0.142 - 0) <5189B06E-3EFC-E215-2932-C164CF316876> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0xd93e000 -  0xd962fff +com.adobe.InDesign.WorldReady (7.5.0.142 - 0) <35E745DE-9201-7F54-E0DD-895C0000FA28> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
    0xd975000 -  0xd9a9ffb +com.adobe.InDesign.Workgroup (7.5.0.142 - 0) <E3BA5C81-70E2-25BF-630A-E491CFE09952> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0xd9bf000 -  0xd9dafff +com.adobe.InDesign.Workgroup Client (7.5.0.142 - 0) <41839E06-2B38-2225-B7E6-82F7FB5C0CB2> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0xd9ea000 -  0xd9f2ffe +com.adobe.InDesign.Workgroup Client UI (7.5.0.142 - 0) <5DC4A3D0-12C1-A243-C697-AF4A0D1CF60D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0xd9f9000 -  0xdb0cfeb +com.adobe.InDesign.Widgets (7.5.0.142 - 0) <92D951DB-5262-E331-7123-2EF3CE1026C3> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
    0xdb91000 -  0xdc9ffef +com.adobe.InDesign.Transparency (7.5.0.142 - 0) <5A43618F-5283-0522-27CA-DAC2C651D88B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0xdced000 -  0xea7efeb +com.adobe.psl (AdobePSL 12.0.0.12659 - 12.0.0.12659) <03D5B098-AD3C-FB84-0D0D-7DE57C025F3F> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xede6000 -  0xedf5fff +com.adobe.InDesign.Text Editor Model (7.5.0.142 - 0) <A72F1E12-4B7F-EB06-9CF3-2438A9E7AAEE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0xef00000 -  0xef52ff1 +com.adobe.InDesign.TOC (7.5.0.142 - 0) <D735757B-674F-2B98-FE61-3DDB48CE19FA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0xef72000 -  0xf478ff7 +com.adobe.InDesign.Text (7.5.0.142 - 0) <6E232C2A-7FAB-5A10-63D5-62C8986ACB4E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0xf5f2000 -  0xf657fff +com.adobe.InDesign.Text Wrap (7.5.0.142 - 0) <E2EAC53B-4D2A-C445-970F-1210C2E4A614> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0xf67d000 -  0xf6a7fff +com.adobe.InDesign.Text Wrap Path (7.5.0.142 - 0) <47423658-3254-F342-8C6D-303833490E38> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
    0xf6b2000 -  0xf6fbfff +com.adobe.InDesign.Text Attributes (7.5.0.142 - 0) <97F3EF6E-346A-3B92-1E4C-2DCE6E451DEC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0xf722000 -  0xf769fff +com.adobe.InDesign.TableStyles (7.5.0.142 - 0) <1BC33831-E1AF-2617-746C-0175688A58A0> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
    0xf782000 -  0xf97cfff +com.adobe.InDesign.Table Model (7.5.0.142 - 0) <19A6AA46-B2FB-1914-08CC-C2DF1EE51CCE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0xfa0e000 -  0xfa98ff7 +com.adobe.InDesign.Support for JavaScript (7.5.0.142 - 0) <BEAE6DA2-21DF-2ED4-BD76-053F665A89C1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
    0xfad3000 -  0xfb17fff +com.adobe.InDesign.Support for AppleScript (7.5.0.142 - 0) <72C25DCD-42B9-E9B8-14EB-F0E32F406606> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
    0xfb32000 -  0xfc02fe7 +com.adobe.InDesign.Graphics (7.5.0.142 - 0) <DCA66589-8A34-5595-2BD9-F8090563B762> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0xfc4e000 -  0xfc9dffb +com.adobe.InDesign.Stroke and Fill (7.5.0.142 - 0) <B7D31D36-C6B6-78CC-52A6-E5E4C3A65337> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0xfcbb000 -  0xfd9efff +com.adobe.InDesign.Spread (7.5.0.142 - 0) <00386BD6-451D-A61B-9CE8-D8C121762D81> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0xfded000 -  0xfe32ff0 +com.adobe.InDesign.Spread UI (7.5.0.142 - 0) <712A1BE8-B8DE-7800-2528-714CC910369A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spread UI.InDesignPlugin/Spread UI
    0xfe4e000 -  0xfe8affb +com.adobe.InDesign.Spline (7.5.0.142 - 0) <8CEFB169-65C7-B546-734E-30CACF084E43> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0xfea8000 -  0xfee1fff +com.adobe.InDesign.Spline UI (7.5.0.142 - 0) <909F6496-5243-7E94-5A82-CBB7C30CFE89> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spline UI.InDesignPlugin/Spline UI
    0xff01000 -  0xff0ffff +com.adobe.InDesign.Spelling Service (7.5.0.142 - 0) <A65001B0-C39E-001C-FF9A-0C2F42F06F3D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
    0xff1c000 -  0xff29fff +com.adobe.InDesign.Sound (7.5.0.142 - 0) <12F9F083-586A-6C5E-5F74-B20F197352AC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0xff35000 -  0xff56ff7 +com.adobe.InDesign.SharedContent (7.5.0.142 - 0) <1E9F595E-928D-03EB-7FDD-F2F91C7A8DCD> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/SharedContent.InDesignPlugin/SharedContent
    0xff69000 -  0xff83ff2 +com.adobe.InDesign.Sections (7.5.0.142 - 0) <73FB3557-F4B5-1DA9-0FF5-5A8FFE4E91BA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
    0xff93000 - 0x1002cff7 +com.adobe.InDesign.Scripting (7.5.0.142 - 0) <37732D36-D9CC-F7A1-989E-8A2B90BC4905> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x1005f000 - 0x10079fff +com.adobe.InDesign.Rulers (7.5.0.142 - 0) <A0397830-63EC-4648-BDA6-D8A8B2B4A2B4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x1008a000 - 0x101d6fff +com.adobe.InDesign.Print (7.5.0.142 - 0) <23314410-A1CE-055A-F03A-74D9AB059111> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x10238000 - 0x1026afe7 +com.adobe.InDesign.PNG Import Filter (7.5.0.142 - 0) <BD12B7F4-90BF-91FA-18DD-E17F18541ABE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
    0x10275000 - 0x102a8ff7 +com.adobe.InDesign.Photoshop Import Filter (7.5.0.142 - 0) <2DD22890-FBF0-B6D8-82C9-3367B98E74E1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x102c0000 - 0x10313ff3 +com.adobe.InDesign.Book (7.5.0.142 - 0) <B4885AFB-B2D0-7334-1989-9524FD4FC6A4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
    0x10338000 - 0x1042dfe7 +com.adobe.InDesign.Image (7.5.0.142 - 0) <366DF110-9E72-A8BD-5600-DBD7408E9951> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x1047d000 - 0x10486ffb +com.adobe.InDesign.Group (7.5.0.142 - 0) <4109367F-5E27-881F-274E-2F9B96C61157> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0x10491000 - 0x10575fef +com.adobe.InDesign.EPS Page Item (7.5.0.142 - 0) <E2341852-4E4C-6880-CFC1-FC900BB4F6E4> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x105be000 - 0x107a0fff +com.adobe.InDesign.PDF (7.5.0.142 - 0) <75374F8F-15A2-6734-0002-9E3E4BA60536> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x10831000 - 0x10914fef +com.adobe.PDFPort (AdobePDFPort 2.1.0.12895 - 2.1.0.12895) <C7CDB72D-081A-E40C-3FF8-284D96F68E57> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x1094c000 - 0x10967ff9 +AdobePDFSettings (1) /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x10981000 - 0x10b46ff7 +com.adobe.InDesign.Generic Page Item (7.5.0.142 - 0) <5BC38A5B-0214-C072-9F58-FB9F32CDAAFE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x10bde000 - 0x10c17ffb +com.adobe.InDesign.Path Type (7.5.0.142 - 0) <8A3BD04D-2AB4-20B1-99D0-78BE61941918> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x10c34000 - 0x10c3cff3 +PathTypeLib.dylib (1) <8609265F-D811-48ED-CAEE-E20A68D4E6FE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/PathTypeLib.dylib
    0x10c43000 - 0x10d06fff +com.adobe.InDesign.Paragraph Composer (7.5.0.142 - 0) <F840479A-06BD-609C-095B-F39DD694D6E9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
    0x10d27000 - 0x10d5bfff +com.adobe.InDesign.Open Place (7.5.0.142 - 0) <4DBD079D-0A13-0D8B-419D-7FEB65FF7FCF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x10d75000 - 0x10d8afff +com.adobe.InDesign.Movie (7.5.0.142 - 0) <B9AB8E35-D4C9-0FFC-650A-718ABE17607A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
    0x10d9a000 - 0x10e17ff7 +com.adobe.InDesign.Metadata (7.5.0.142 - 0) <05C2EB44-E814-E70E-A17D-C99F81F52DE8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
    0x10e48000 - 0x10eeeff3 +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.2 -f 17 - 61.141987) <963C6B68-E97E-A983-A716-6A8FA37E9D2D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x10f2c000 - 0x10f7eff7 +com.adobe.InDesign.Media (7.5.0.142 - 0) <B6786555-0472-9E99-3BD2-FC9D16AE89F7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x10fa0000 - 0x110dfff7 +com.adobe.InDesign.Links (7.5.0.142 - 0) <7ECA5641-B4BD-E368-8962-B4044745BD4A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x11145000 - 0x11166ff3 +com.adobe.InDesign.Layout (7.5.0.142 - 0) <D3AC0213-DB4C-16C8-BEC4-DE89209A1EF8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x11178000 - 0x1119cfff +com.adobe.InDesign.Layer (7.5.0.142 - 0) <B35B106C-8EEA-3A91-52C6-CBB3D58BDAC1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
    0x111b1000 - 0x1126dfff +com.adobe.InDesign.INXCore (7.5.0.142 - 0) <7E5BEC36-0B3B-DCA6-1850-B74A6474B15A> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
    0x112b0000 - 0x11392ff7 +com.adobe.InDesign.Indexing (7.5.0.142 - 0) <FAAEC28E-8BE7-72C8-770C-CD680DB8604D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0x113d0000 - 0x1144eff3 +com.adobe.InDesign.InCopyWorkflow (7.5.0.142 - 0) <EC780277-4C3A-CA35-768B-C4D3873DFFE8> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0x1148b000 - 0x11495ff3 +com.adobe.InDesign.InCopySharedUI (7.5.0.142 - 0) <D473C4F5-2D25-B841-E5D9-028BF32BC555> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0x114a1000 - 0x11580fe7 +com.adobe.InDesign.InCopyShared (7.5.0.142 - 0) <3064A755-C8ED-7697-E670-AD641690BB27> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0x115d2000 - 0x1162bfef +com.adobe.InDesign.Image Filters (7.5.0.142 - 0) <BF3D1FD7-8F20-0839-3D80-4C2F2E25F158> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0x1163a000 - 0x11650fff +com.adobe.InDesign.Guides (7.5.0.142 - 0) <E4AEB43F-629D-AB80-13AD-48400DDD3770> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0x11660000 - 0x116bdffb +com.adobe.InDesign.Gradient Fill (7.5.0.142 - 0) <A41D8F17-419C-49F3-6579-A405EA311CA7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0x116e4000 - 0x116eeff7 +com.adobe.InDesign.GenericSettings (7.5.0.142 - 0) <A712DBF0-540D-6F78-BCD0-47820055989D> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0x116f7000 - 0x11805fff +com.adobe.InDesign.GalleyUI (7.5.0.142 - 0) <A23A3454-8582-CDC5-01C2-730CDC7E1FF1> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
    0x1184f000 - 0x118a1ffb +com.adobe.InDesign.Galley (7.5.0.142 - 0) <BAC0BFF4-6275-0B2C-2A14-D6E0F5740019> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0x118bf000 - 0x1193efff +com.adobe.InDesign.FormField (7.5.0.142 - 0) <04AA4221-098D-1F87-BB24-6B563A648B97> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0x11972000 - 0x11a6fff7 +com.adobe.InDesign.Font Manager (7.5.0.142 - 0) <C48F8BA3-8E6F-63AF-EE70-8D3B51038ADE> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0x11aac000 - 0x11acdfef +com.adobe.SING (12.0.4 - 12.0.4) <440244FD-6A2F-4128-B9BF-F1C804B1CB6F> /Library/Application Support/Adobe/*/SING.bundle/Contents/MacOS/SING
    0x11ae3000 - 0x11bacff1 +com.adobe.SINGCore (12.0.11 - 12.0.11) <87B1D0A5-E4F3-4239-A81E-BB5FA0B242D8> /Library/Application Support/Adobe/*/SINGCore.bundle/Contents/MacOS/SINGCore
    0x11d7b000 - 0x11d7efff +TINthread.dylib (1) /Library/Application Support/Adobe/*/TINthread.dylib
    0x11d85000 - 0x1204bfd3 +com.adobe.TIN (TIN 2.0.17 - 2.0.17) /Library/Application Support/Adobe/*/TIN.bundle/Contents/MacOS/TIN
    0x121de000 - 0x124f5ffd +com.adobe.InDesign.Dynamic Documents (7.5.0.142 - 0) <CBCE694B-97A9-7D4D-C799-05CBEB900FCC> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
    0x125d6000 - 0x126b7ff4 +com.adobe.AGMFL (AdobeAGMFL 2.1.0.12659 - 2.1.0.12659) <36E18AF4-44A0-8310-FA95-302E59206D56> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
    0x126ec000 - 0x1287dff3 +aflamingo (1) <C4136948-FE16-15C4-F1B9-040E014AF2CA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
    0x128c8000 - 0x128cefff +com.adobe.InDesign.Document UI (7.5.0.142 - 0) <E05C2C47-C7C1-7105-845E-A19E866C6582> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0x128d6000 - 0x128f4ffe +com.adobe.InDesign.Document Actions (7.5.0.142 - 0) <EA164F5E-9FF6-9C78-3304-BD0C44D6EF38> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0x12906000 - 0x12922ff3 +com.adobe.InDesign.Dialog Layout (7.5.0.142 - 0) <A7CF2212-1F92-7A3B-5EF1-689EC3F85846> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0x12933000 - 0x1297cff7 +com.adobe.InDesign.Conditional Text (7.5.0.142 - 0) <30CAB7B8-696D-2F18-5206-557F381C24CA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
    0x1299e000 - 0x129f4ff7 +com.adobe.InDesign.CompFontMgr (7.5.0.142 - 0) <306CB6D8-AF98-394F-971E-3E71D66B4D5E> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0x12a15000 - 0x12a87ffa +com.adobe.InDesign.CJKGrid (7.5.0.142 - 0) <1CECF746-B564-53C2-09A7-E88A68EC0B90> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0x12ab3000 - 0x12b3bffb +com.adobe.InDesign.CJK Text Attributes (7.5.0.142 - 0) <B04E8AE5-F801-D8E4-0C4B-C1C7477C12CF> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0x12b71000 - 0x12ba2fff +com.adobe.InDesign.CellStyles.rpln (7.5.0.142 - 0) <502EA752-4648-0FDE-CEDC-6BA8B14773E7> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln
    0x12bba000 - 0x12bc8fff +com.adobe.InDesign.Buzzword Access (7.5.0.142 - 0) <863BF7E8-CECA-DD5F-50B0-7682936AA058> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Buzzword Access.InDesignPlugin/Buzzword Access
    0x12bd3000 - 0x12c77fe1 +com.adobe.InDesign.BNCore (7.5.0.142 - 0) <578D6272-20A6-ED7F-2C78-63358CEE37CA> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0x12cad000 - 0x12cfeff7 +com.adobe.InDesign.Behavior (7.5.0.142 - 0) <10573684-DA3A-E5BB-FA1D-ED74D92CAF3B> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0x12d28000 - 0x12d59ffb +com.adobe.InDesign.Basic Tools (7.5.0.142 - 0) <824B5528-5647-C891-30B5-45656EF00CD6> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
    0x12d75000 - 0x12d9dff7 +com.adobe.InDesign.AWSUI (7.5.0.142 - 0) <E9203DE7-CD7C-B9C6-4D65-0425A1B82331> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0x12db5000 - 0x12df0ffb +com.adobe.InDesign.AWS (7.5.0.142 - 0) <0DC62D0E-284B-7306-BF47-F5CFD8E03BF9> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0x12e0e000 - 0x12e8ffe7 +com.adobe.InDesign.Assignments (7.5.0.142 - 0) <6B3E75B0-9182-FF85-D32C-E222EB250B6C> /Applications/Adobe InDesign CS5.5/Adobe InDesign CS5.5.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0x12ec3000 - 0x12ee3fff +com.adobe.I

  • Indesign CS5 crashing repeatedly.

    I've been using Indesign CS5 for about a year now, migrating from Quark. It's been remarkably stable, running on my iMac OSX10.6.8, 2.4 GHz Intel Core 2 Duo w/4 GB SDRAM. Then suddenly today, one particular file starated crashing repeatedly.  I ran Disc Utility off an other start-up drive, repaired permissions; everything checked out OK. Still crashing. I created new docs and dragged thumbnails page by page trying to ID the offending page, but every doc of this lineage crashes. (It would take a long time to rebuild from scratch.) The original doc became unrecoverable. The original crashing file had a couple rows of type on a circular path and I wondered if that was the problem.  I deleted my .plist. Finally, I uninstalled and reinstalled the entire Creative Suite5. Still crashing. Any ideas? I need to be up and running for my work. Many thanks, Dianne,

    Changing the font seemed to work... until it didn't and the crashes began again. They didn't generate any reports, however, so no clues there.
    Crashes occurred in the middle of packaging and exporting to pdfs. The process would never complete.
    After the crashes, I would get pop-up message when I reloaded ID, saying 'it couldn't find the file, did I want to recover later,' although the file would be open right behind that window. This happened repeatedly.
    It also occured to me that I have several other files using the original "offending" font (Nevis bold) that never crash at all, so I'm very doubtful it was the font. But, just to be sure, I had downloaded it again, deleted ALL copies on my machine and reinstalled it, before replacing it altogether.
    I suspect ID gets clugy with several discrete lines of type on differerent circular paths. That's what makes this file different.
    I haven't been so sidelined by a software program in a long time. Pity the poor printer who has to take this file from here. She's going to hate me.

  • Indesign CS5 freezing

    Help!
    I have a intel core imac with 4GB of ram and plenty of hard drive space, and I just upgraded my operating system to 10.6.4. At the same time I also installed CS5 standard suite on the computer as my company is making the switch from quark to indesign for its publication design. Anyways, I can run photoshop and illustrator with no problems - InDesign however refuses to let me work on any document. I can open the application, specify that I want a new document and within seconds of opening a document InDesign will freeze. Before opening the document I can open the various menu bar options and change default fonts or preferences but once I open a document it freezes. I've spent an entire day trying to fix this by reading various posts and can tell you that I've done the following:
    • Deleted and restored all the preferences.
    • Changed the default font option.
    • Uninstalled and reinstalled.
    • Checked permissions and added myself (as recommended) with read and write permissions.
    This is also a mutli-volume serial number upgrade with plans that I should be doing this upgrade to all the computers in our department. I can't afford to try this on another computer and see if it magically works for them and not for me. Any suggestions?
    Thanks.

    I'm having a similar issue... Indesign CS5 freezing when I click to open any file.
    However, I'm not on Snow Leopard. I'm still on Leopard.
    My machine is a MacBook Pro 3.06 Ghz Intel Core 2 Duo, OSX 10.5.8, with 8 GB  RAM. 500 GB HD with over 100 GB available.
    I placed a post this morning describing my problem in detail but have received no response.
    Have you found a solution? If so, please post. I've run out of ideas and don't know what my next step should be.
    Thanks!

  • Problem creating a 'used sources' list based on EXIF data in InDesign CS5

    Hello everyone,
    I recently started to use InDesign CS5 to work on school projects. These projects regularly require us to have a list of sources, not only for citations and referenced work, but also for images. As I sometimes make quite long documents, keeping track of what image is where, and where I got it from, gets tedious.
    I had the idea of generating a caption based on EXIF data, which I'd move to the pasteboard, and group it with the image. The text in the caption has a seperate, numbered paragraph style. On one of the last pages, I generate a table of contents, which the numbered paragraph style selected. I chose to display it using another paragraph style, without page numbers.
    What I want to have as the end result is:
    Table of contents
    1. <Title>. <Author> (<Creation Date>). Retrieved <Date Placed> through <Description>
    The captions display correctly, as shown above in the body of the table of contents. The table of contents itself however, shows only the numbering in front of it, and not the variables.
    I already tried converting the live captions to static captions, but that doesn't work. Does anyone have an idea how to solve this?

    Hello everyone,
    I recently started to use InDesign CS5 to work on school projects. These projects regularly require us to have a list of sources, not only for citations and referenced work, but also for images. As I sometimes make quite long documents, keeping track of what image is where, and where I got it from, gets tedious.
    I had the idea of generating a caption based on EXIF data, which I'd move to the pasteboard, and group it with the image. The text in the caption has a seperate, numbered paragraph style. On one of the last pages, I generate a table of contents, which the numbered paragraph style selected. I chose to display it using another paragraph style, without page numbers.
    What I want to have as the end result is:
    Table of contents
    1. <Title>. <Author> (<Creation Date>). Retrieved <Date Placed> through <Description>
    The captions display correctly, as shown above in the body of the table of contents. The table of contents itself however, shows only the numbering in front of it, and not the variables.
    I already tried converting the live captions to static captions, but that doesn't work. Does anyone have an idea how to solve this?

  • What is it about InDesign CS5 that someone would get this error message?

    Hi,
    What is is about the .swf file that is generated from the InDesign CS5 interactive workspace that someone would get the following error message when they go to view the site I created?
    "This file may contain newer information that this viewer can support. It may not open or display correctly. Adobe suggests that you upgrade to the latest versions of our Acrobat products blah blah blah."
    The site doesn't seem to work for four Mac users, but works fine for at least one PC user.
    I'm trying to figure out how to save the .swf file down to Flash Player 9, which I've done by exporting a .fla file, then adjusting the Publish setting in Flash CS5. But that throws a wrench into the works...all the animations go haywire by continuously looping and the scale of all the text elements on the first page is much larger than it should be.
    Thanks, Steve

    John Black3 wrote:
    Many of my songs in my iTunes Library no longer play.  I get this error message: "The song xxx could not be used because the original file could not be found. Would you like to locate it?
    this usually happens when a user moves or deletes files in the finder - a sure way to upset iTunes.
    did you move or delete files in the finder ?
    I cannot locate the song.
    if you let iTunes manage your library, all your content will be in <MacintoshHD>/users/<yourname>/music/iTunes/iTunes music (or media)/music. did you look there ? tried a spotlight search ?
    if the files are really gone, and have been purchased from the iTunes store, see Downloading past purchases from the App Store, iBookstore, and iTunes Store.

  • Unable to debug indesign cs5 plugin in windows

    Hi, again. Originaly posted here: http://forums.adobe.com/thread/766469?tstart=0
    We are having some problems with an indesign sc5 plugin, it works perfectly in macosx but in windows it causes indesign to crash. Anyway after some trouble shooting we tried running it in debug indesign. Problem is that the debug version of indesign wont even start, it fezzes in the splash screen on "Registering xxx plug-ins". It hangs before we can write anything in log files and thatching a debugger gives nothing. Closer inspections
    revealed that all the indesign treads is in "waiting" state. Waiting for what? Don't know. Killing one of the threads allows indesign to start but it will not have loaded the plugin and we are back on square one unable to debug.
    Anyway I installed the osx version of debug indesign and starting it gives an assert like: 
    No translation of key 'com.adobe.rc.operationalmessages' to British string. 
    BreakStrToDebugger
    ASSERT_FUNC
    Examining the stack of the indesign main thread in windows gives pretty much the same thing:
    0, ntkrnlpa.exe!KiDeliverApc+0xb3
    1, ntkrnlpa.exe!ZwYieldExecution+0x19ae
    2, ntkrnlpa.exe!NtWaitForSingleObject+0x9a
    3, ntkrnlpa.exe!KeReleaseInStackQueuedSpinLockFromDpcLevel+0xb14
    4, ntdll.dll!KiFastSystemCallRet
    5, kernel32.dll!WaitForSingleObject+0x12
    6, PMRuntime.dll!ClientShowAssert+0x8d
    7, PMRuntime.dll!BreakStrToDebugger+0x15
    8, PMRuntime.dll!ASSERT_FUNC+0x117
    9, NETAPI32.dll+0xbe86972
    (as reported by the ProcessHacker process viewer)
    So the win version is trying to show an assert window but fails, locking indesign in the splash screen? Stoping indesign before any plugin execution?
    As we cant get any debug information out we don really know what the problem is, making it rather hard to debug. We have triple checked the build and linking options. Studied the plugin exports. Inserted an ridiculous amount of trace statements in the code, doesn't work in the debug version but anyway.
    Have anyone had a problem like this or know what might cause it?
    What happens in the indesign startup process, what does the “Registering plug-ins” actually do? It's not executing any plugin functions and the the initialization of the plugins doesn't happen until later.

    You are correct in that none pf the plug-in code is executed during the "Registering ### plug-ins" phase. What is done here is simply loading the plugins by reading from their resource definitions. For example, if you try to load a CS4 plug-in in InDesign CS5 or if you try to load a release plug-in in debug version you will get errors and popups here and your plugin will not load and be available (these are just example errors and may not be relevant to your case). As far as I know InDesign should not crash just because there is a problem with your plugin, but there could be bugs.
    I would recommend:
    1. Remove your plugins and verify that InDesign debug starts properly without any 3rd party extensions.
    2. Compile one of the SDK sample plugins (debug target) and make sure that InDesign still starts properly.
    3. Create a new project using DollyXs, compile it and make sure it loads in InDesign.
    4. Remove the template files and add your own source files except the basic .fr file and make sure it still loads in InDesign.
    5. Keep changing things one at a time in your .fr file and verify it still loads until it looks exactly like your original .fr file.
    Good luck.
    Note: "No translation of key 'XXX' to British string." errors is in general quite harmless. It's only a problem with the string translation and should only affect string output in menus/dialogs etc. They should of course be fixed, but can generally be ignored for a while unless an infinite ASSERT loop prevents you from debugging.

  • Cross reference or hyperlinking not working for InDesign CS5 Book to ePub

    I cannot get hyperlinks or cross reference links to work when generating an ePub from InDesign CS5. (7.0.0.355, Mac OS 10.6.2)
    Here's how to recreate a simple test demonstrating the issue.
    1. Create a new InDesign Book (File -> New -> Book)
    2. Create document one (File -> New -> Document)
    3. Create a text box and type "Table of Contents"
    4. Create document two (File -> New -> Document)
    5. Create a text box in it and type "Story One"
    6. Create a new paragraph style and assign it to the Story One text
    7. Save document 2. I just kept the name Untitled-2.xhtml
    8. Back in document 1, add a cross-reference and select document 2, the style you created, and then "Story One". "Story One" should now appear under the previously typed Table of Contents text, and when highlighed, should show it is an active cross reference in the Hyperlinks panel.
    9. Save document 1. I just kept the name Untitled-1.xhtml
    10. Add both documents to the Book and save the book.
    11. From the Book panel, select Export Book to EPUB...
    12. Save the epub file and open it in Adobe Digital Editions.
    Note that the text "Story One" appears as a hyperlink but when clicked does not switch to the document 2. It does nothing apparent when clicked.
    Looking at the XHTML source for the first document, it is immediately evident why. The filename for document 2.thml is missing.  It looks like this: <a href="#anchor-anchor">
    When it should be : <a href="Untitled-2.xhtml#anchor-anchor">
    The same thing works if you create a hyperlink instead of a cross reference.
    I note then when I use the option to go to the destinate reference in the Cross Link (hyperlink) panel, it does switch to the second InDesign docuemtn. So the cross reference is functioning (in InDesign). But the link is broken in the ePub for the above mentioned reason.
    Bug? Something I'm overlooking?
    Entire source of Untitled-1.xhtml:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Untitled-1.xhtml</title>
    <link href="template.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="untitled-1">
    <div class="generated-style">
    <p class="basic-paragraph" xml:lang='en-us'><span class="no-style-override">Table of Contents</span></p>
    <p class="basic-paragraph" xml:lang='en-us'><span class="no-style-override"><a href="#anchor-anchor">“story one”</a></span></p>
    </div>
    </div>
    </body>
    </html>

    As far as I can tell, it has NOT yet been fixed in CS5.5.  I'm having the same problem.  I have about 90 hyperlinks to fix.
    And the explanation that Teus Dejong gives indicates it's not going to be that helpful:  "we have found that only the links in documents split by the CS5 exporter will be fixed. For books the script does only work for references to earlier documents in the book, not for forward references. This means in practice that for most books the script will not repair the links and should be seen as a means to add the year only. At the moment I see no way to repair this, because the book epub output of InDesign does not contain sufficient information to repair links referencing forward to others documents in a book."
    It's pretty discouraging.

  • InDesign CS5 file won't open

    At my work, we are working on formatting a book in InDesign. We are using the same base template for each file. I created a front matter document with a table of contents (TOC), list of figures (LOF), list of tables (LOT), acronyms, and glossary using that base template. Everything worked fine; I was able to generate the TOC, LOF, and LOT, and could work with the file with no problem. Then I saved and closed the file. Later that day, I was unable to open the file.
    The message I get includes the statement, "You may not have permission or the file may be open already."
    No one else had opened it and there are no lock files. The other person using InDesign also cannot open it. I made a copy of the file and saved it in another location and still could not open it.
    The files are all on our network. We are using InDesign CS5 and Windows7 (64-bit). The only difference between this file and the others are the modifications that I made to some TOC paragraph styles so two paragraphs could be displayed side-by-side in the TOC (i.e., Chapter 1 Introduction all on one line, where Chapter 1 comes from one paragraph and Introduction comes from another by having no leading on one paragraph style).
    Can anyone suggest a solution for this? This is rather urgent as the client needs the book by the end of next week.
    Thank you so much for your help.
    regards,
    Marina Michaels

    Yes:  The message I get says, "Cannot open (file path and name). You may not have permission or the file may be open already."
    Thanks!

Maybe you are looking for

  • Time Capsule vs Airport Extreme?

    I want to buy a better (n) base station and also have the ability of mass storage away from my main study. Seems like either AExtreme + hard drive OR TC. Is the wi-fi coverage and penetration of the TC compromised because of the extra gadgetry in the

  • LiveCycle ES3 installation-BootstrapException: ALC-TTN-104-002

    Hi Guys, On trying turnkey, partial turnkey options of LiveCycle ES3 installation, we get an error while running configuration manager. We were stuck at "Configuring LiveCycle ES3 EAR's", unable to merge EARs.The reason being Jboss not started. Since

  • Swap Space Query for Oracle 11.1.0.6 installation - why so much?

    In process of installing 11.1.0.6 DB on RHE Ver 4 with 8GB of RAM. The installation notes state that for platforms of between 2-8GB of RAM - the swap file should be set to the same as the RAM. Is it not the case that the more RAM you have, the less s

  • Sharing across different subnets

    I have successfully connected a remote PC to my WRV54G using QuickVPN.  That remote PC can ping computers across the VPN and those computers can likewise ping the remote PC.  I have even successfully connected with Remote Desktop from that remote PC

  • Where are my discussions on this new layout?

    where are my discussions on this new layout?