Script Versioning InDesign CS5 (INX-Export)

Dear all,
I am currently encountering a problem with Script Versioning or -- perhaps I don't understand the purpose of Script Versioning...
In CS4 I wrote a Visual Basic Script (see below) that exports INX of the current document to disk. Since CS5 no longer supports INX I thought to use Script Versioning to "simulate" CS4, but obviously that doesn't seem to work. As I have several Scripts to be converted to CS5 I am interested in the constraints using Script Versioning concerning the object model.
Thanks for any help.
Best Regards,
Jochen
    Dim myInDesign As InDesign.Application
    Dim myPub As InDesign.Document
    Set myInDesign = CreateObject("InDesign.Application.CS5")
    myInDesign.ScriptPreferences.Version = 6
    Set myPub = myInDesign.Documents.FirstItem
    myPub.Export "InDesign Interchange-Format", "D:\test.inx"
    myInDesign.ScriptPreferences.Version = 7

The reason inx doesn't work, is because it's not a supported feature any more. It has nothing to do with the scripting DOM specifically. Versioning only effects how the scripting DOM interacts with the C++ layer. It can't add missing features...
Think of it as a translation dictionary.
Harbs

Similar Messages

  • InDesign CS5.5 Exporting PDF master page hyperlinks only work on first 2 pages

    We recently upgraded from CS5 to CS5.5 and now our hyperlinks that go to different pages in the PDF only are working on the first 2 pages of each document in the book.  We have about 30 documents wrapped up in a indesign book.  On the master page we have hyperlinks that allow users to quickly go to the index in the back of the book.  After the CS5.5 upgrade the hyperlinks only work the the first 2 pages of each document.  We export to PDF(print) with hyperlinks enabled.
    I have tried the below:
    - I have tried 2 different computers
    - Deleted and re-created the indesign preference file
    - deleted and re-created the hyperlinks

    Can you recommendd the best way to manage the following:
    I'm on a Mac. Created an enewsletter for a client in Indesign CS5 with 7 "click here"s throughout the document. The hyperlinks are to connect w other PDF documents not URLs.
    Where will I have the best luck creating the hyperlinks - Indesign or in the PDF I export? I have Acrobat Pro if I need to create the hyperlinks in the PDF.
    Except I can't figure out how to create the links in either program as far as what name to designate and where do the PDFs reside so people can link to  them? And do I enter the file name of the PDF connected to the particular "click here."

  • InDesign CS5.5 Export to PDF fails how to fix?

    Using InDesign CS5 to creat a portfolio, all layed out and ready to print but when I export to PDF it takes a long time and then fails.
    What am I doing wrong?

    Is the issue with the one file only or with multiple file, if it is with the one file only then there could be some component like Image , font that could be causing the issue,
    And if it with the multiple file then you can try this article:- kb2.adobe.com/cps/878/cpsid_87876.html

  • InDesign CS5 PDF export status

    It seems that now with CS5 we no longer receive a pdf export status bar. Export is running in background. When exporting large files, the only way I know it's still working or exporting is the error message when I try and close document... Saying task running in BKG.
    In Cs3 and 4 there was a status bar that displayed progress. Is this a preference that can be turned on or off?
    Annoying when exporting large files with many pages...
    Any help?
    Thanks

    OK, well, here we go. I hope people find it useful -- if so, I'l make an announcement thread so people are more inclined to see it.
    You can also download it from here.  See How to Install InDesign Scripts for installation instructions. If you save it in the
    Startup Scripts folder, it will run automatically when InDesign is started. Running it a second time disables it.
    // exportPop.jsx -- pops up Background Tasks when you start an export
    //   and a modal dialog when an export finishes.
    // Beta version. Please post feedback at
    //   http://forums.adobe.com/thread/822192
    // John Hawkinson, 17 March 2011
    // Save in STARTUP SCRIPTS folder to start automatically.
    #targetengine session
    (function() {
        var
            old1 = app.eventListeners.itemByName("exportPop1"),
            old2 = app.eventListeners.itemByName("exportPop2");
        if (old1.isValid || old2.isValid) {
            if (old1.isValid) { old1.remove(); }
            if (old2.isValid) { old2.remove(); }
            alert("Export pop up window removed.\n"+
                "Indesign will behave as normal.");
            return;
        app.addEventListener("beforeExport", function() {
            var
                tasksPanel = app.panels.itemByName("Background Tasks");
            if (tasksPanel) { tasksPanel.visible=true; }
        }).name = "exportPop1";
        app.addEventListener("afterExport", function(ev1) {
            var task, listener;
            task = app.idleTasks.add({ name: "exportPop", sleep: 1000});
            listener = task.addEventListener(IdleEvent.ON_IDLE,
                function(ev2) {
                    listener.remove();
                    task.remove();
                    alert(ev1.format+" export complete of "
                        +ev1.fullName+" at "+ev1.timeStamp);
        }).name = "exportPop2";
        alert("Export pop up window installed\n"+
            "Background Tasks will appear the start of an export\n"+
            "and a dialog will appear after each export complete.");

  • Cannot print directly from InDesign CS5, must export to PDF

    My co-worker and I have not been able to print to our Ricoh Aficion SP C811DN from InDesign since upgraded to CS5. We both experience similar errors (ERROR: undefined, OFFENDING COMMAND: o [or C, or some other letter] and then STACK: XXX). We are both running Windows XP, I am 64-bit, she is not. The only workaround thus far is exporting to PDF and printing from there.
    I have tried printing single random pages and omitting graphics but neither of these seems to work. I did create a new document and inserted a single black box with white text and that printed just fine, but anything more complicated won't print.
    Thanks for your help in advance.

    Honestly, that’s the general advice anyway.
    I never print from InDesign. It’s just not that efficient.
    BTW, Windows XP64 is completely unsupported. Time to move to Windows 7.
    Bob

  • InDesign CS5.5 Export Error: Small fonts

    When exporting to a PDF I get a Background Task alert:
    Small Fonts: This font could not be embedded because it is missing its font outline file. Adobe Acrobat requires the outline file to be installed for correct viewing and printing of this file.
    Can anyone tell me what this means and how to fix it.
    When viewing the PDF that is exported part of my background from my Master Pages is missing however, it prints fine.

    Congratulations! You managed to dupe InDesign to use one of the system bitmap fonts that come with Windows since (about) v.3.
    "Small Fonts" is a for-screen-only bitmap font, intended to be used at a typical size of 3 to 6 PIXELS. It's a real legacy thing, just like the other bitmap-only-fonts "Microsoft Sans", "System", and maybe a few others. ("Microsoft Sans" is nowadays silently replaced by the system with Arial, I believe.) Those are the real bitmap deal -- designed to be used at their design size, for bitmap purposes only.
    The strange thing is that, honestly, *every* self-respecting DTP software programmer *knows* to steer well clear from these ancient relics; and under normal circumstances they are simply not available as a font selection. Let alone, to attempt to include rhem in something as modern (and pixel-font free) as a PDF. Now *somehow* you got a PDF where someone else apparently not only used software that *did* allow him to "use" this font but write it to a PDF as well! Of course that didn't work; this person sent you his PDF, still containing the reference of the font but not the font itself; you placed this PDF called "financial info (etc).pdf" into your law-abiding, top notch modern version of InDesign ... that *is* smart enough not to check just the fonts YOU used in your document but also those inside PLACED PDFs.
    There you are, now: you cannot use this PDF because it has a missing font; and this font is one that no sensible piece of software will ever allow you to embed.
    Only two options left, here: ask the responsible party for a replacement PDF *without* using this font, or use Acrobat Pro to try and select the text in this font and assign another one (or possibly you have to use something like PitStop).

  • Indesign CS5 and Export to PDF

    Hi Group!
    Got a weird one here...
    I've searched high and low for this but, I have a user who i just recently upgraded to CS5 (company still on CS4 for internal reasons), and noticed a strange anomaly when exporting to PDF. For whatever reason, somewhere within the operating system and/or application(s) when the IDCS5 file is exported to PDF, as soon at the PDF hits the desktop, or where ever the PDF file is saved to, Acrobat opens the file immediately after. Even before the PDF has finished ripping. Where do you suppose this setting is to open PDFs automatically like this? Anyone seen this? Thanks!

    Hi Bob,
    Maybe you can help with the CS5 problem that sends Acrobat to the background after automatically opening the pdf I just created with the "view pdf after exporting" box checked. In all previous versions, and in Illustrator, the pdf opens nicely in Acrobat and stays in the foreground so I can look at it, and send it as an attachment, etc.

  • Problems previewing InDesign CS5.5 exported EPUBs in Apple iBooks, on an iOS device.

    I have EPUB Creation problems when I use my InDesign CS 5.5 document from my first EPUB book, as a template to create my other two EPUB books.
    My customer gave me a job that forced me to learn how to do EPUBs – and I'm still learning.  I created three books in Design CS 5.5, for fixed page PDF, with interactive table of contents and for exporting to a regular EPUB, with auto-reflow formatting and automated table of contents. These books were not created for print. 
    After I created the first one and successfully exported to an EPUB, that previewed fine in free Adobe Additions, I used the first InDesign CS 5.5 document as a template to create the other two publications.  These books were around a hundred pages, or less, with little or no placed jpeg images except on the three books' covers, so I did not create a Book.indb for each publication.  Each book is completed in single InDesign files with their own unique front cover art on their first page.
    When my customer previewed the three books on his iPad, in iBooks, all three books show the cover of the first book, when you see them on the iBooks library shelf.  Then when you open them, you see the correct cover for that specific book and the correct interior pages.
    When I open each InDesign file and open the File Information tabbed dialog, I have a different document title entered for each of the three different books.  When I export to EPUB, the EPUB Export Option dialog pops up and I have selected "Include Document Metadata."  I entered the Publisher name and a separate Unique Identifier for each book, when I export.
    After I emailed the three EPUBs to my iPod Touch, all three showed up in my iBooks library but when you see them on the library shelf they have the first book's cover on all three.  So I have a redundant cover preview on the library bookshelf icons, in the iBooks app, running in Apple iOS.
    I have two books by Elizabeth Castro about Creating EPUBs with InDesign.  I'm going to read them some more, especially the part about preparing your EPUB for Apple iBooks, on iOS.  But, I thought I would share my problem here to see if anyone has a solution for me.  Thanks.

    I often end up answering my own questions but I will do so again, this time, so that others can learn.  When you are exporting to EPUB in InDesign CS 5.5, an EPUB Export Options diolog appears.  Under "EPUB Cover," select "Use Existing Image file" and choose the actual file that was used on on the first page of the InDesign document, for the new book's cover.
    This feature can cause inbedded human error if you use a completed Indesign book as a template to create other books because even though you placed a new cover at the beginning of the book, the Export options still has the cover file selected for the previous book you worked on.
    I actually got the answer to my problem with the InDesign Help Menu, when InDesign CS 5.5 is launched.

  • Blank Preflight and Script Panel Indesign CS5

    This problem has reocurred - started after I first installed CS5 with a blank Preflight panel only, but has been stable for many months (actually stable is not a word I associate with CS5). Both the Preflight and the Script panel are now blank - when yesterday they were fully functioning. Can anyone help with this. If any more wheels fall off my CS5 I am going to bite the bullet and revert to CS4.
    Thanks.

    Just updated CS to latest and
    everything is working.

  • Indesign CS4 scripts versus Indesign CS5 scripts...

    All Ind. CS4 scripts run on Ind. CS5...?????
    Thanks

    Hey!
    Unfortunately there isn't a way to do that!
    tomaxxi
    http://indisnip.wordpress.com/
    http://inditip.wordpress.com/

  • Indesign CS5 - Problems with PDF-Export

    Hello community,
    we do have a problem with Indesign CS5 and exporting data into PDF. It is about that logo on that white surface, which doesnt come along with the rest after the pdf-export. What we did was: We created that white surface in Indesign itself, put an effect on it with the Indesign effect gallery and then imported the logo in the surface ... the logo itself is .psd data. So, if we export it into pdf like that, it is just dissapeared. Does anyone have had a similar problem and what can be done about it?
    By the way ... if you put, for example, a simple backgroundshadow on a picture ... done also with the Indesign effect gallery, then you get just a white surface instead of the shadow, after the export into pdf. It does maybe correlate with the other problem ... not sure. Any suggestions?
    Thank you very much for your help and kind regards ...

    I would create the entire logo, including the white background, in Illustrator, save as PDF and place that in ID.

  • InDesign CS5 crashes on opening in Mavericks

    Hi.
    I migrated my User account to a brand new iMac this weekend with OS 10.9.2. All CS5 apps work fine except for InDesign. It always crashes after "Initializing plug-ins" stage. The last of many crash reports is at the end of this message. I've searched online and a lot of people have had similar problems put they haven't resolved the issue:
    1) I updated Java for OS X 2013-005. No change.
    2) I've tried dumping the InDesign Defaults & SavedData files as suggested, but this doesn't help either. Interestingly, the SavedData file was recreated but InDesign Defaults never gets replaced. I had the same issue with InDesign a couple of years ago when I upgrade the OS to 10.6 and this resolved the situation then.
    3) I've resolved any font conflicts.
    4) As my older iMac is sat next to this new one and it still has my original user account and had I upgraded the the OS to 10.9.2 in preperation of giving it to my partner, I decided to do a comparison. I opened InDesign to see if it crashed too. After a long time, it opened! It opens files and I can save. I've even copied the entire en_GB folder within Library/Preferences/Adobe InDesign and used that on my new Mac, but this doesnt help. (By the way there is a Version 4.0 folder there as well as a Version 7.0. Could this cause issues?)
    So, does this point to an issue with the brand new iMac? It's a 27" iMac 3.2 GHz Intel Core i5 with 12GB preinstalled, so it has had 4GB added to the standard 8GB by the retailer (costco).
    I would appreciate any help resolving this issue. Thank You.
    Here is the last crash report:
    Process:         Adobe InDesign CS5 [2686]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.4.553 (7040)
    Code Type:       X86 (Native)
    Parent Process:  launchd [191]
    Responsible:     Adobe InDesign CS5 [2686]
    User ID:         501
    Date/Time:       2014-04-08 08:36:31.138 +0100
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  BEA65817-1B32-83C0-5494-E72D47AA481E
    Sleep/Wake UUID: 6C86D3E4-D918-4DD8-8A2D-39D2AE368ADF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000002c
    VM Regions Near 0x2c:
    --> __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
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x8fe66105 ImageLoader::isLinked() const + 11
    1   dyld                                    0x8fe63883 NSLinkModule + 103
    2   libdyld.dylib                           0x903ca146 NSLinkModule + 88
    3   com.adobe.InDesign.Font Manager          0x1101fbc8 TINglue_version + 792
    4   com.adobe.InDesign.Font Manager          0x110205cf TIN_Startup + 177
    5   com.adobe.InDesign.Font Manager          0x10fa6109 GetPlugIn + 17705
    6   ObjectModelLib.dylib                    0x010511b1 0x1038000 + 102833
    7   ObjectModelLib.dylib                    0x01051acb 0x1038000 + 105163
    8   ObjectModelLib.dylib                    0x01060386 0x1038000 + 164742
    9   ObjectModelLib.dylib                    0x01070c0d ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 23101
    10  ObjectModelLib.dylib                    0x0106c234 ShuksanInit(IStartupScreen* (*)(), IPlugIn*) + 4196
    11  com.adobe.InDesign                      0x00002822 main + 82
    12  com.adobe.InDesign                      0x000027a6 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x91a53992 kevent64 + 10
    1   libdispatch.dylib                       0x900a98ad _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x900a9546 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x91a527ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x94e44d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x94e45042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9904788d TSWaitOnConditionTimedRelative + 161
    4   com.apple.CoreServices.CarbonCore          0x99013cf2 MPWaitOnQueue + 199
    5   PMRuntime.dylib                         0x00014130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore          0x990142ce PrivateMPEntryPoint + 68
    7   libsystem_pthread.dylib                 0x94e425fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x94e42485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x94e47cf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x91a4df7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x91a4d16c mach_msg + 68
    2   com.apple.CoreServices.CarbonCore          0x9904452d TS_exception_listener_thread + 138
    3   libsystem_pthread.dylib                 0x94e425fb _pthread_body + 144
    4   libsystem_pthread.dylib                 0x94e42485 _pthread_start + 130
    5   libsystem_pthread.dylib                 0x94e47cf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x91a527ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x94e44d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x94e46bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x99047682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x990478a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x99013cf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x990142ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x94e425fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x94e42485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x94e47cf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x91a527ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x94e44d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x94e46bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x99047682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x990478a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x99013cf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x990142ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x94e425fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x94e42485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x94e47cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x91a527ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x94e44d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x94e46bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x99047682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x990478a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x99013cf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x990142ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x94e425fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x94e42485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x94e47cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x91a527ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x94e44d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x94e46fa3 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0b866126 C_AMTUISwitchSuppressUpdates + 16768
    4   com.adobe.amt.services                  0x0b85edb0 C_EULA_SetState + 2164
    5   com.adobe.amt.services                  0x0b86618c C_AMTUISwitchSuppressUpdates + 16870
    6   libsystem_pthread.dylib                 0x94e425fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x94e42485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x94e47cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x91a53046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x94e43dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x94e47cce start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000006  ecx: 0x000000f8  edx: 0x00038d00
      edi: 0x15a82010  esi: 0x8fe6382a  ebp: 0xbfffe3d8  esp: 0xbfffe3d8
       ss: 0x00000023  efl: 0x00210246  eip: 0x8fe66105   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0000002c
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
        0x1000 -     0x4ff7 +com.adobe.InDesign (7.0.4.553 - 7040) <495B1B76-6091-6009-EAAD-0F3DDD8D029B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
        0xa000 -     0xafff +InDesignModel (0) <D054C2C9-F070-A1E1-2D78-BACDC9DCC960> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignMod el
        0xe000 -     0xefff +InDesignModelAndUI (0) <770DFBFF-7C31-ECD4-88FE-BCFED53CFC33> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesi gnModelAndUI
       0x12000 -    0x19ff3 +PMRuntime.dylib (1) <EC9AB7BF-B671-AE6F-5C9E-7A49F9C265BE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PMRuntime.dylib
       0x20000 -   0x134fff +AdobeACE (1) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x157000 -   0x67dfff +AdobeAGM (1) <6F8EB120-6F01-38AE-8363-BC941B8AE12E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0x7be000 -   0x7fafff +AdobeARE (1) <EF398654-5384-F84A-8B62-DA1F64E2FAD1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0x803000 -   0x81efff +AdobeBIB (1) <CDFB3340-3A46-292A-121E-2820EC62D78E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0x828000 -   0x849ff7 +AdobeBIBUtils (1) <482199DF-1251-ED75-4958-563C6E49CD6F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeB IBUtils
      0x855000 -   0xb47ff7 +AdobeCoolType (1) <E688E020-77C0-9353-7DB6-A86E8C4F0D14> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeC oolType
      0xbcf000 -   0xfa7ff7 +AdobeMPS (1) <42F2B26A-9D1D-06D9-6FB1-FDDB36B8D916> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x1038000 -  0x10a6ff7 +ObjectModelLib.dylib (1) <F9B6E987-1A09-6A01-96CA-C696022CDBF5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/ObjectModelLib.dylib
    0x10c9000 -  0x1123fe7 +DataBaseLib.dylib (1) <3FC5D05A-298D-654B-F235-C0579E0A347F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/DataBaseLib.dylib
    0x113c000 -  0x1553fff +PublicLib.dylib (1) <B22C524D-7A5A-CE35-2DC8-49FD402908DD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PublicLib.dylib
    0x16da000 -  0x16f1ff6 +AdobeAFL (1) <CFC0FF78-A748-AC45-2E62-8F20090D911C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1702000 -  0x170aff3 +boost_threads (0) <B00C0C9E-7175-B6D2-E58B-7278E0EB8863> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_threads.framework/Versions/1_37/boo st_threads
    0x1714000 -  0x1719ffd +ASLSupportLib.dylib (1) <D4BEF46E-063B-696F-FE83-DD943ABA838A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/ASLSupportLib.dylib
    0x171e000 -  0x171fff2 +libtbbmalloc.dylib (0) <A1EAB5E4-3F88-5E37-7068-7A35A3EC69DE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/libtbbmalloc.dylib
    0x1723000 -  0x1731fe7 +libtbb.dylib (0) <FFA49B03-C516-D23D-B535-B64D7CD35ECE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/libtbb.dylib
    0x1739000 -  0x1871fe7 +WRServices (0) <9E3A36AD-71F1-B9C7-AC3F-30A7E63C8B57> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/WRServices.framework/Versions/A/WRService s
    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/A dobeCrashReporter
    0x18be000 -  0x226efff +libicudata.dylib.36.0 (36) <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) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUInternationalization.framework/Version s/3.6/libicui18n.dylib.36.0
    0x23a1000 -  0x247bfef +libicuuc.dylib.36.0 (36) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuu c.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_cap s
    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 (0) <462635B6-7AF0-B43D-74D6-4AC15ACBC66A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_regex.framework/Versions/1_37/boost _regex
    0x2690000 -  0x26ccff7  com.apple.vmutils (4.2.1 - 108) <37A7D6A9-0BA7-39D9-A203-7123124A18B0> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutil s
    0x26e6000 -  0x26e8ffb +boost_system (0) <FBD2BBDA-A758-FFCE-ABBA-7FDAB09FAF0F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/boost_system.framework/Versions/1_37/boos t_system
    0x26ed000 -  0x2889fff +WidgetBinLib.dylib (1) <09B35AE1-8F5E-4F05-BEBA-2C9CF72C9CAA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2967000 -  0x2b06fe7 +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
    0x2b6f000 -  0x2becfff +AdobeOwlCanvas (1) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/Adobe OwlCanvas
    0x2c08000 -  0x2c0bff8 +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
    0x4f7b000 -  0x4f7fffd  libFontRegistryUI.dylib (127) <C207DFF5-0C48-3831-B9F1-2363D9A7A365> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/A TS.framework/Resources/libFontRegistryUI.dylib
    0x4fb5000 -  0x4fbdfff +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
    0xb39c000 -  0xb3d5ffb +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 /UpdaterNotifications
    0xb421000 -  0xb426ff1 +com.adobe.InDesign.Data Services UI (7.0.0.355 - 0) <85782AE8-BCF3-0AB4-6AEF-445B7A7E762E> /Applications/Adobe InDesign CS5/*/Data Services UI
    0xb42c000 -  0xb42efff +com.adobe.InDesign.SimpleTextImportFilter (7.0.0.355 - 0) <CCE5A524-7B2E-FED1-C328-3B1D0F24DFBA> /Applications/Adobe InDesign CS5/*/SimpleTextImportFilter
    0xb841000 -  0xb8a8fea +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/amtservi ces
    0xba6e000 -  0xba75ffc +com.adobe.InDesign.Data Services (7.0.0.355 - 0) <3CF976FD-E9C0-46B5-4F3E-9907456210C8> /Applications/Adobe InDesign CS5/*/Data Services
    0xba7b000 -  0xba87ff9 +com.adobe.InDesign.DTTransform (7.0.0.355 - 0) <6955E68F-367C-2BA2-34A6-A83F957FDC04> /Applications/Adobe InDesign CS5/*/DTTransform
    0xba8f000 -  0xbabffff +com.adobe.InDesign.Dictionary Editor Dialog (7.0.0.355 - 0) <C2684EAE-503F-BD50-5F74-35258860FE8D> /Applications/Adobe InDesign CS5/*/Dictionary Editor Dialog
    0xbade000 -  0xbae1fff +com.adobe.InDesign.PNG Import Filter UI (7.0.0.355 - 0) <A1D2B2F7-09A2-F22B-5C0C-D812205CEC40> /Applications/Adobe InDesign CS5/*/PNG Import Filter UI
    0xbae6000 -  0xbaf3fed +com.adobe.InDesign.Tagged Text Filters UI (7.0.0.355 - 0) <E012A998-0698-1E89-1ECF-B38019417D31> /Applications/Adobe InDesign CS5/*/Tagged Text Filters UI
    0xbafa000 -  0xbafbfff +com.adobe.InDesign.Help (7.0.0.355 - 0) <6E875143-BA05-093F-B1AE-385ADE146CC5> /Applications/Adobe InDesign CS5/*/Help
    0xbe10000 -  0xbe3fff0 +TextPanelLib.dylib (1) <F7BEA3B0-B264-4ECA-C7C1-E161D2CDCE4F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/TextPanelLib.dylib
    0xbe5b000 -  0xbe7cff3 +com.adobe.InDesign.LILO (7.0.4.553 - 0) <37DDBF19-31B7-8B93-E958-ED094E50793F> /Applications/Adobe InDesign CS5/*/LILO
    0xbe8b000 -  0xbee2ff7 +com.adobe.InDesign.Media Import Filter (7.0.0.355 - 0) <43FF7304-FC36-DDEF-BA27-CA094389A50E> /Applications/Adobe InDesign CS5/*/Media Import Filter
    0xc000000 -  0xc51cfe3 +com.blurb.BlurbBookCreator (2.5.0.20 - 0) <2E7D6C15-DFE3-D3FF-BC8B-AC35C30DC015> /Applications/Adobe InDesign CS5/*/BlurbBookCreator
    0xc710000 -  0xc7d2fe7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <968AEC66-0A7D-0556-7AF8-F9556B2092DE> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/Adob eLinguistic
    0xc7fc000 -  0xc81dffb +com.adobe.InDesign.Sangam Preferences UI (7.0.0.355 - 0) <302FAF9E-15D3-4D3E-C229-96BA5175C49A> /Applications/Adobe InDesign CS5/*/Sangam Preferences UI
    0xc832000 -  0xc89bffb +AdobeSangam (3) <4FF2270C-9417-1059-527B-68C99BF43EA9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSan gam
    0xc8e5000 -  0xc935ff3 +com.adobe.InDesign.SangamExport (7.0.0.355 - 0) <E73EA3D8-498E-C597-BB23-6CAEEA5C0AA3> /Applications/Adobe InDesign CS5/*/SangamExport
    0xc955000 -  0xca65ff3 +com.adobe.InDesign.SangamServicer-Mapper (7.0.0.355 - 0) <932ACD2D-2394-61AC-D400-83D28700283D> /Applications/Adobe InDesign CS5/*/SangamServicer-Mapper
    0xcab0000 -  0xcac2fff +com.adobe.InDesign.SaveBack (7.0.0.355 - 0) <6EC7D91A-6360-09E3-6488-27159FE3B95D> /Applications/Adobe InDesign CS5/*/SaveBack
    0xcace000 -  0xcb8ffff +com.adobe.InDesign.Tagged Text Attributes (7.0.0.355 - 0) <71A7A664-EE9C-2C9B-54C7-2C95200EDDA3> /Applications/Adobe InDesign CS5/*/Tagged Text Attributes
    0xcbdc000 -  0xcc8ffeb +com.adobe.InDesign.Tagged Text Filters (7.0.4.553 - 0) <968F54B0-3857-5317-12AA-911FC49703EE> /Applications/Adobe InDesign CS5/*/Tagged Text Filters
    0xccb5000 -  0xcd26fe3 +com.adobe.InDesign.FontExplorer X for InDesign CS5 (3.3.0 - 0) <448E2A44-EDED-0E35-E8D1-BC4E624C0BC3> /Applications/Adobe InDesign CS5/*/FontExplorer X for InDesign CS5
    0xcdc8000 -  0xcdd1ff3 +com.adobe.InDesign.Clipping Path Dialog (7.0.0.355 - 0) <AB110EC2-9F7D-2A23-E18D-69BC22ED2EC9> /Applications/Adobe InDesign CS5/*/Clipping Path Dialog
    0xcddc000 -  0xce0fff7 +com.adobe.InDesign.Color Management UI (7.0.0.355 - 0) <3CC153FD-7CD5-427C-0AD2-1D8303011D1E> /Applications/Adobe InDesign CS5/*/Color Management UI
    0xce23000 -  0xce86ff0 +com.adobe.InDesign.Color Picker Panel (7.0.0.355 - 0) <F312F57F-9627-B487-9AE2-78F4EEE4548E> /Applications/Adobe InDesign CS5/*/Color Picker Panel
    0xceb2000 -  0xcedefef +com.adobe.InDesign.CS Review Support (7.0.0.355 - 0) <34AE47F8-3486-D597-3081-E1B49C5C2E41> /Applications/Adobe InDesign CS5/*/CS Review Support
    0xcef4000 -  0xcf5aff0 +com.adobe.InDesign.DynamicDocumentsUI (7.0.4.553 - 0) <E9DDB305-A4B8-47C0-0E14-5F81EA3AD610> /Applications/Adobe InDesign CS5/*/DynamicDocumentsUI
    0xcf88000 -  0xcf91fff +com.adobe.InDesign.EPS UI (7.0.0.355 - 0) <ED45C884-B8DF-A5A9-102D-AD61C85266F7> /Applications/Adobe InDesign CS5/*/EPS UI
    0xcf9a000 -  0xcfa2ff7 +com.adobe.InDesign.Generic Style Editor (7.0.0.355 - 0) <6AC91CE1-CFDC-973A-13EF-E0B7F057EE2C> /Applications/Adobe InDesign CS5/*/Generic Style Editor
    0xcfad000 -  0xcfd8ff3 +com.adobe.InDesign.Gradient Panel (7.0.0.355 - 0) <EA933872-A548-67F3-42AE-F0D2E30DE522> /Applications/Adobe InDesign CS5/*/Gradient Panel
    0xcfee000 -  0xd04dfff +com.adobe.InDesign.Graphic Panels (7.0.0.355 - 0) <B4C5A5D0-B0B5-E845-6779-94155D1BD072> /Applications/Adobe InDesign CS5/*/Graphic Panels
    0xd078000 -  0xd07dff8 +com.adobe.InDesign.JPEG Export UI (7.0.0.355 - 0) <3E847C08-6DEF-FB2F-E324-22E355949280> /Applications/Adobe InDesign CS5/*/JPEG Export UI
    0xd084000 -  0xd09bfff +com.adobe.InDesign.JPEG Export (7.0.0.355 - 0) <51B47CE6-CCE6-5DC1-6308-6D2F1B7FE59E> /Applications/Adobe InDesign CS5/*/JPEG Export
    0xd0aa000 -  0xd0eeff7 +com.adobe.InDesign.Output Preview (7.0.0.355 - 0) <F9B49624-445D-C68E-9F79-827F427F8FF1> /Applications/Adobe InDesign CS5/*/Output Preview
    0xd10b000 -  0xd11dffc +com.adobe.InDesign.OutputMiscUI (7.0.0.355 - 0) <3DF40045-E72F-04A3-A22F-208DBDA660D8> /Applications/Adobe InDesign CS5/*/OutputMiscUI
    0xd12c000 -  0xd19bfe3 +com.adobe.InDesign.PDF UI (7.0.0.355 - 0) <E1B95B73-03DB-3920-61BF-01583910437D> /Applications/Adobe InDesign CS5/*/PDF UI
    0xd1c7000 -  0xd21fff7 +AdobeXMP (0) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xd22e000 -  0xd241ff7 +com.adobe.InDesign.Printer Styles (7.0.0.355 - 0) <4F3B1382-6ADB-9387-50AA-280EEB3B21FC> /Applications/Adobe InDesign CS5/*/Printer Styles
    0xd24e000 -  0xd304fef +com.adobe.InDesign.PrintUI (7.0.0.355 - 0) <D9B408FA-2FC6-2CF0-3985-D4DC0B97C5CA> /Applications/Adobe InDesign CS5/*/PrintUI
    0xd33d000 -  0xd34aff0 +com.adobe.InDesign.PS Import UI (7.0.0.355 - 0) <C23DDE3F-A747-0EE7-A022-264E95F17ACF> /Applications/Adobe InDesign CS5/*/PS Import UI
    0xd356000 -  0xd36ffff +com.adobe.InDesign.Swatch Library Panel (7.0.4.553 - 0) <D51D1831-9F50-7C82-8745-D4243D7247D2> /Applications/Adobe InDesign CS5/*/Swatch Library Panel
    0xd37d000 -  0xd410ff0 +com.adobe.InDesign.Swatches Panel (7.0.0.355 - 0) <03D6A3CE-263D-1EC5-CF79-46C89371E9DA> /Applications/Adobe InDesign CS5/*/Swatches Panel
    0xd450000 -  0xd4e4ff8 +com.adobe.InDesign.Transparency UI (7.0.0.355 - 0) <E7961C20-0F04-A7E7-9D27-12662275B9EF> /Applications/Adobe InDesign CS5/*/Transparency UI
    0xd521000 -  0xd572fff +com.adobe.InDesign.Assignment UI (7.0.0.355 - 0) <68E8A061-DC76-683D-474F-73B130A96910> /Applications/Adobe InDesign CS5/*/Assignment UI
    0xd599000 -  0xd5b2fe8 +com.adobe.InDesign.InCopy Bridge UI (7.0.0.355 - 0) <15AF9B70-96E3-5AF1-C23E-ACD683E4635D> /Applications/Adobe InDesign CS5/*/InCopy Bridge UI
    0xd5bf000 -  0xd5f2ffb +com.adobe.InDesign.InCopy Bridge (7.0.0.355 - 0) <F17AC175-6EDE-B9BF-2D97-8C244B37FF4B> /Applications/Adobe InDesign CS5/*/InCopy Bridge
    0xd607000 -  0xd60dff0 +com.adobe.InDesign.InCopyExport (7.0.0.355 - 0) <5487C2CD-11DE-2CF7-5900-5536F0A976CA> /Applications/Adobe InDesign CS5/*/InCopyExport
    0xd614000 -  0xd618ff3 +com.adobe.InDesign.InCopyExportUI (7.0.0.355 - 0) <A1A145E5-8F29-9AD0-7957-8A82CC60D440> /Applications/Adobe InDesign CS5/*/InCopyExportUI
    0xd61e000 -  0xd623fff +com.adobe.InDesign.InCopyImport (7.0.0.355 - 0) <3D65253B-A744-2ECD-497C-D1718C83CAEB> /Applications/Adobe InDesign CS5/*/InCopyImport
    0xd629000 -  0xd62eff7 +com.adobe.InDesign.InCopyWorkflow UI (7.0.0.355 - 0) <2876EEC1-3E44-25CD-7F8E-09D68574C0A3> /Applications/Adobe InDesign CS5/*/InCopyWorkflow UI
    0xd635000 -  0xd67cff7 +com.adobe.InDesign.Note (7.0.0.355 - 0) <37279281-F00F-B241-9F74-9C1212BA41A6> /Applications/Adobe InDesign CS5/*/Note
    0xd69e000 -  0xd6a7fff +com.adobe.InDesign.NotePref (7.0.0.355 - 0) <8E6B6D6A-3E5A-4586-E870-CF81708CF293> /Applications/Adobe InDesign CS5/*/NotePref
    0xd6b3000 -  0xd6b6ff3 +com.adobe.InDesign.Username UI (7.0.0.355 - 0) <3514A459-610A-EDE6-7509-927DB9C72BD8> /Applications/Adobe InDesign CS5/*/Username UI
    0xd6bc000 -  0xd73fff7 +com.adobe.InDesign.ButtonUI (7.0.0.355 - 0) <C14894D9-84A8-65B4-04BD-DB42FCCA9ADA> /Applications/Adobe InDesign CS5/*/ButtonUI
    0xd77b000 -  0xd794fff +com.adobe.InDesign.MediaUI (7.0.0.355 - 0) <AB2CF690-DE65-3EFE-E77D-6B8A54366A44> /Applications/Adobe InDesign CS5/*/MediaUI
    0xd7a5000 -  0xd7b1fff +com.adobe.InDesign.Alignment Panel (7.0.0.355 - 0) <0F05821E-3992-DB42-C38B-A45AE2BB8B66> /Applications/Adobe InDesign CS5/*/Alignment Panel
    0xd7bb000 -  0xd7f3ff6 +com.adobe.InDesign.Asset Library Panel (7.0.0.355 - 0) <D84FFB9D-DF4A-AA2A-46FF-706F701A6A96> /Applications/Adobe InDesign CS5/*/Asset Library Panel
    0xd815000 -  0xd86ffff +com.adobe.InDesign.Asset PubLibrary (7.0.0.355 - 0) <19B25A88-E10E-0870-FC5C-CD6BB714DBE0> /Applications/Adobe InDesign CS5/*/Asset PubLibrary
    0xd897000 -  0xd8d5ff5 +com.adobe.InDesign.Book Panel (7.0.0.355 - 0) <FDA8F072-64B8-5F96-120F-B4C0F072A62F> /Applications/Adobe InDesign CS5/*/Book Panel
    0xd8f8000 -  0xd90effb +com.adobe.InDesign.Bookmark Panel (7.0.0.355 - 0) <C76A1A09-83E8-B539-CE25-02A689DABAA0> /Applications/Adobe InDesign CS5/*/Bookmark Panel
    0xd91f000 -  0xd955ffd +com.adobe.InDesign.Control Panel (7.0.0.355 - 0) <D89A65CF-DE0C-7121-8FE8-F3F9E35BC64C> /Applications/Adobe InDesign CS5/*/Control Panel
    0xd971000 -  0xd977fff +com.adobe.InDesign.Create Guides Dialog (7.0.0.355 - 0) <46D55BA1-16A3-9508-AC91-D43359EB8950> /Applications/Adobe InDesign CS5/*/Create Guides Dialog
    0xd97e000 -  0xd9b0fff +com.adobe.InDesign.Eyedropper Tool (7.0.0.355 - 0) <4C2B3351-5BDA-8A29-C4AD-FD8FCA130CD4> /Applications/Adobe InDesign CS5/*/Eyedropper Tool
    0xd9c3000 -  0xda2fff8 +com.adobe.InDesign.Hyperlinks Panel (7.0.0.355 - 0) <7DA181EC-3AB9-4B9B-3066-51BFB1DD6A36> /Applications/Adobe InDesign CS5/*/Hyperlinks Panel
    0xda5c000 -  0xdad0ff1 +com.adobe.InDesign.Index Panel (7.0.0.355 - 0) <242B3354-F869-77CB-E5B8-190E19FD2150> /Applications/Adobe InDesign CS5/*/Index Panel
    0xdaf9000 -  0xdb06fff +unihan (1) <21D02D03-821D-1E92-C99E-919CD21883A0> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
    0xdb11000 -  0xdb60fff +com.adobe.InDesign.Info Panel (7.0.0.355 - 0) <92DF0684-9C32-D4C2-4D09-8EFF4B9D558A> /Applications/Adobe InDesign CS5/*/Info Panel
    0xdb81000 -  0xdc6dfff +com.adobe.InDesign.Knowledge Base (7.0.0.355 - 0) <F28544D6-4836-E99B-9AF0-8C205FB83D6B> /Applications/Adobe InDesign CS5/*/Knowledge Base
    0xdc73000 -  0xdcb0fff +com.adobe.InDesign.Layers Panel (7.0.0.355 - 0) <54CEC2F9-8DE7-687D-23DE-52EE13AE299B> /Applications/Adobe InDesign CS5/*/Layers Panel
    0xdcd1000 -  0xdcd3ff7 +com.adobe.InDesign.Layout Adjustment Panel (7.0.0.355 - 0) <9F50B241-88F7-06D2-28EB-BD55F67645CE> /Applications/Adobe InDesign CS5/*/Layout Adjustment Panel
    0xdcd8000 -  0xdcf3fff +com.adobe.InDesign.Layout Adjustment (7.0.4.553 - 0) <8E21E2C6-8381-5B61-5060-27D03B63FF13> /Applications/Adobe InDesign CS5/*/Layout Adjustment
    0xdd00000 -  0xdd3afff +com.adobe.InDesign.Links UI (7.0.4.553 - 0) <B9CE79EF-DF9E-181B-7A2B-186CEA86C33A> /Applications/Adobe InDesign CS5/*/Links UI
    0xdd5a000 -  0xdde0ffc +com.adobe.InDesign.ObjectStylesUI (7.0.0.355 - 0) <AB925026-A7EF-0E0B-265F-CA671F6BB1C0> /Applications/Adobe InDesign CS5/*/ObjectStylesUI
    0xde1b000 -  0xde35ffb +com.adobe.InDesign.Page Setup Dialog (7.0.0.355 - 0) <8DAD7DD1-709A-5411-62C8-425666A2FF9F> /Applications/Adobe InDesign CS5/*/Page Setup Dialog
    0xde40000 -  0xdeccfec +com.adobe.InDesign.Pages Panel (7.0.0.355 - 0) <738734CC-9DDC-901C-C3CC-085919A2D091> /Applications/Adobe InDesign CS5/*/Pages Panel
    0xdf05000 -  0xdf10ff8 +com.adobe.InDesign.Sections UI (7.0.0.355 - 0) <03CC83C4-3642-7D33-4578-812796388DE8> /Applications/Adobe InDesign CS5/*/Sections UI
    0xdf18000 -  0xdf1fffc +com.adobe.InDesign.StepRepeat (7.0.0.355 - 0) <10F09DA9-5EC1-37A2-853E-1A2474D4F865> /Applications/Adobe InDesign CS5/*/StepRepeat
    0xdf27000 -  0xdf5cff7 +com.adobe.InDesign.Text Wrap Panel (7.0.0.355 - 0) <9EED4BC1-D58E-021A-3C51-3574D08672AF> /Applications/Adobe InDesign CS5/*/Text Wrap Panel
    0xdf75000 -  0xdfa8ff0 +com.adobe.InDesign.TOC UI Dialog (7.0.0.355 - 0) <F4F33165-5526-14D3-A67F-0930DB1A9BD7> /Applications/Adobe InDesign CS5/*/TOC UI Dialog
    0xdfc1000 -  0xdfedff4 +com.adobe.InDesign.Transform Panel (7.0.0.355 - 0) <FE711509-818D-ED28-E592-F31E8DD53838> /Applications/Adobe InDesign CS5/*/Transform Panel
    0xe002000 -  0xe019ff3 +com.adobe.InDesign.Image Import UI (7.0.0.355 - 0) <EC696635-FAC6-CA59-AA74-388639C0BC6A> /Applications/Adobe

    Thanks for the swift reply Peter.
    I was just about to start uninstalling InDesign when your reply came.
    Solution 1: Clear the SING Datastore folder - didn't work
    Solution 2: Remove the SING component - this worked!
    I'll spend the afternoon doublechecking everything works.
    Thanks Andrew

  • Problem in creating PDF with InDesign CS5.5

    Problem in creating PDF with InDesign CS5.5:
    exporting a file in pdf, setting "Press Quality" or "PDF/X-1a: 2001" and selecting "Crop Marks" and the surplus of xx mm, the elements contained in the MASTER page move from the original position or disappear at random.
    Can you help me, please?
    Thanks a lot.

    Try Remove minor corruption by exporting

  • Is there a script for CS5 to export a multi-page InDesign Document to single page InDesign documents

    Hello,
    I am having trouble finding a script or utility that would allow me to export each page of an InDesign CS5 document as multiple single page InDesign documents. I have found one script that does this for CS3, but nothing for CS5. Thank you for any help.

    Generally speaking, if a script doesn't run in a later version, you can put it in a subfolder withteh correct version number as the name and it will work. For CS3 that would be "Version 5.0 Scripts" without the quotes.
    That said, if you have Acrobat pro, it's probably easier to use the extract pages command...

  • How to save down from InDesign Creative Cloud version to CS5? Have exported as .idml file but still get messages that plug-ins are missing although CS5 confirms it is fully updated.

    How to save down from InDesign Creative Cloud version to CS5? Have exported as .idml file but still get messages that plug-ins are missing although CS5 confirms it is fully updated.

    Yes. Thanks. I misled myself based on another post. Successfully did this by selecting "File," "Save a copy ..." then choosing "for CS4 or later (IDML)"
    It required some patience and several tries, but I think that was due to hardware (memory) being overloaded by CC Cloud version or something. It was a 50 MB, 500-page file and took 17 minutes to convert/save,
    Re-capping: from CCloud to CS5, don't use "Export" (to IDML); use "Save as" or "Save a copy" and select "for CS4 or later (IDML)".
    Advice much appreciated.

Maybe you are looking for