Enfocus Switch and indesign Script (JavaScript CS5.5)

I was on here last night asking for help with a center all images/graphics code and got terrific feedback.
Now I have a new problem with the same scrpit, Below is a script that I wrote for relinking broken links. It works like a champ exept when the orignal image/graphic is not the same size of the existing new link. So I added a new part to the code (what i had help with last night) I have bolded the sectioin. 
When I run the scrpit in Indd everything works great. But, when I run the script throught Enfocus Switch the program stalls
AnyIdeas or sugestions are greatly appreciated.
//////Code Starts Here//////////
app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
var docs = app.documents;
for (var i = 0; i < docs.length; i++) {
     UpdateAllOutdatedLinks(docs[i]);
function UpdateAllOutdatedLinks(doc) {
     for (var d = doc.links.length-1; d >= 0; d--) {
          var link = doc.links[d];
          if (link.status == LinkStatus.linkOutOfDate) {
               link.update();
app.activeDocument.pages.everyItem().rectangles.everyItem().images[0]. fit(FitOptions.CEN TER_CONTENT);
//////// Code Ends Here ////////

Hi again Paul,
I don't know what you mean by "Enfocus Switch " do you mean throw the ESTK script editors run?
If so you probably have it set to ExtendedScript Tool Kit.
You can change it manually, or better to include this line at the begging of the script
#target indesign
After rereading your post I highly doubt that this is the solution, but you can try and if not then you can clarify what you mean by the enfocus script.
See also annotations below
app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT;
var docs = app.documents;
for (var i = 0; i < docs.length; i++) { // this "docs" is for all the open documents
     UpdateAllOutdatedLinks(docs[i]);
function UpdateAllOutdatedLinks(doc) { // You have not declared "doc" without the "s"
     for (var d = doc.links.length-1; d >= 0; d--) {
          var link = doc.links[d];
          if (link.status == LinkStatus.linkOutOfDate) {
               link.update();
app.activeDocument.pages.everyItem().rectangles.everyItem().images[0]. fit(FitOptions.CEN TER_CONTENT);
// this is the active document
Regards
Trevor

Similar Messages

  • Yosemite and InDesign - scripting through the OS / ScriptEditor

    Anyone familiar with how to create a new InDesign document in javascript using script editor in Yosemite?

    Sorry for the slow response. My Mac wouldn't boot following a failed Yosemite update. I've since reinstalled Yosemite but the exact same problem persists. My Mac is standalone and not on a managed network.
    Thank you for the troubleshooting link. I've tried the recommended fix for the -60 error but it doesn't appear to be possible to download the trial version of Illustrator or InDesign for CC editions. They just trigger the Creative Cloud installer and shortly after the -60 error again.
    The problem is still specific to Illustrator and InDesign and I've tried uninstalling all Creative Cloud applications and reinstalling. Every reinstalls except InDesign and Illustrator.

  • Need help in Indesign scripting - Javascript

    Hi
    I have few questions during the indesign scripting.
    Please help me to answer those
    1. Targetting two engines.
    How to target Illustrator engine when the javascripts is running in indesign engine.
    2. Creating text in textframe
    How to create a text in textframe and uniquely identifying it for further updation of content of text.
    3. Creating form fields in Indesign
    How to create form fields in indesign through javascript so that after exporting to PDF it can be modified.
    4. Access method
    How to access methods defined in start up script from the our own cript folder.
    Thanks
    Karthik B

    1. I have No Idea what you mean. Do you want an InDesign script "target" illustrator? Try Brigdetalk.
    2. Described in the Javascript Tools guide.
    3. No amount of scripting will make #3 possible. [*] If you "desperately" need this, write a plugin for it.
    4. I'm not sure, but as far as I know nothing special is needed for that. At least, not if your own script shares the same engine. If it doesn't, then there is no way because that's how it is supposed to work, and no amount of scripting can work around that.
    [*] Apart from writing a complete PDF engine in Javascript, that is. Based on your other questions, it's a fair bet that's not going to happen any time soon.

  • Can I transfer an InDesign script from CS5.5 to CC?

    In CS5.5, I had added a series of custom .jsx scripts (to set opacity using keys 1-9) to the folder user/Library/Preferences/Adobe Indesign/Version 7.5/en_US/Scripts/Scripts Panel. The scripts looked as follows:
    app.selection[0].transparencySettings.blendingSettings.opacity=10;
    However, when I copy and paste the .jsx files into the Version 10 (Creative Cloud) Scripts folder, the script doesn’t work.
    Any assistance?

    I would approach this like so:
    var scriptName = "Set opacity - 10",
    doc, sel;
    PreCheck();
    //===================================== FUNCTIONS ======================================
    function Main() {
        try {
            sel.transparencySettings.blendingSettings.opacity = 10;
        catch(err) {
            alert(err.message + ", line: " + err.line, scriptName, true);
    function PreCheck() {
        if (app.documents.length == 0) ErrorExit("Please open a document and try again.", true);
        doc = app.activeDocument;
        if (!app.activeDocument.saved) ErrorExit("The current document has not been saved since it was created. Please save the document and try again.", true);
        if (app.selection.length == 0) {
            ErrorExit("Nothing is selected. Please select an object and try again.", true);
        else if (app.selection.length == 1) {
            sel = app.selection[0];
        else {
            ErrorExit("Only one object should be selected.", true);
        Main();
    function ErrorExit(error, icon) {
        alert(error, scriptName, icon);
        exit();
    The error above is most probably because nothing is selected so I'd suggest to do some pre-check before the main part of the script is executed: if a document is selected, had been saved, something is selected.
    I also enclosed the string in a try-catch block so if something goes wrong, you'll get an error message. For example, if you select some text and run the script, you'll get this because the command is unavailable in current context:

  • Update IDML with indesign script?

    Hello,
    In an Indesign Script (javascript), after I loop through the page items and find the text frame I wish to edit, I am wondering if it is possible get the IDML from that TextFrame, and then update it, and replace its current IDML with the updated version.
    I only will need to update one of the Story.xml files within the IDML package. Is this possible?
    Thanks in advance!
    -Lloyd

    @Lloyd: by thinking more deeply of your task, it seems to me, that you will go the following route:
    You start with an existing IDML file you want to manipulate (you stated so by choosing the title of this thread by "Update IDML"), no need to change the source:
    1. Unpack the IDML file with scripting (see "unpackageUCF (ucfFile: File, destinationFolder: File)" in the documentation)
    2. Do your stuff
    2.1 search all story.xml files for your text string and it's parent story you want to change or by identifying your story using "idmlComponentName" on the source
    2.2 do the change by reading and writing the xml-file
    3. Repackage the IDML file and give it a new name (see "packageUCF (sourceFolder: File, ucfFile: File)" in the documentation)
    However, if you want to place an updated snippet, you can use the place command as usual; be aware that there are additional options in preferences to export and place a snippet to confirm to its IDML-format during export and there is a "place in original location" option for placing:
    DocumentPreferences: snippetImportUsesOriginalLocation
    application: snippetExportFormat: SnippetExportFormats.INX_EXPANDED_FORMAT (for generating an IDML-snippet instead of an INX-snippet)
    Uwe

  • InDesign CS5 and CS6 Scripting Changes/Incompatibilities

    I'm new to InDesign scripting and need to write a very complex Javascript for InDesign using the Toolkit. My concerns are if CS5/5.5 users will be able to run the script written for CS6. Are there known incompatibilities with the different releases? If so, where can I find a document to compare the differences. I will probably need to support both CS5 and CS6 (and anything in between), so a possibly solution may be to build for CS5, but if I do, will I be missing out on any key new features of CS6?

    There are differences from 1 DOM version to another and they can and will break your script if you haven't designed it to handle them. For example:
    If you want to use script labels like me (because they are awesome) the following will break if you use CS5 or later:
    app.activeDocument.pageItems.item("myLabel").remove();
    So you'd have to force the DOM to V6.0. But when doing so remember to revert back to the original version after you're done or you'll create bigger problems. This can be done like this:
    app.scriptPreferences.version = 6.0; // CS4's DOM version
    app.activeDocument.pageItems.item("myLabel").remove();
    app.scriptPreferences.version = 10.2; // Current CC DOM version
    This is very inconvenient (for me at least), so I wrap functions that require DOM changes with a custom version changer to handle this for me. In regards to a list of incompatibilities? Not sure, maybe someone here has one, I know Jongware has a website with all the DOM changes from 1 version to another. This can be found here:
    Indesign JavaScript Help
    Hope this helps.
    Brett

  • CS5 PS & IL Text Tool and InDesign Start-up Crashes

    Starting Indesign: crash immediately upon start-up
    Photoshop & Illustrator: crash when applying text tool
    I am assuming since I had a book I am designing up in InDesign when this bizarre crash thing happened that because it is trying to access that file that it is crashing as soon as it gets to the point where it has to access the fonts for that file. Currently using Palatino as my main font but also have an Asian font for half the book.  I wanted to get this book to the printer next week and book layout is a good bit of my income so it is very important that this gets fixed.
    I did download a couple of third-party fonts about a week ago but did not use them. 
    What I have done:
    Read through all the forums here
    Removed fonts I just downloaded last week
    Purchased Font Doctor (for $70 ouch): ran diagnosis, fixed things and cleared cache
    Reset preferences
    Uninstalled and reinstalled the entire CS5 suite
    Followed all the font validation steps from this site and removed offending fonts.
    Run Font Doctor again
    It feels like there is something saved or cached somewhere that I am not aware of.  I noticed that even after the uninstall/reinstall that Illustrator pulled up the book cover that I was designing.  Not sure what makes Illustrator remember that I had that open even after I uninstalled the entire program.
    I do have an indexing plug-in that I have not unplugged yet. That is my next step in troubleshooting but thought I would get this out here.
    Here is the report from the InDesign crash. 
    Process:         Adobe InDesign CS5 [271]
    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 [115]
    Date/Time:       2013-12-14 00:09:36.708 -0800
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          1970 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  17 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      98BE5344-B82C-4EFA-91BD-F2B2DB517C9E
    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[271]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0xac345630 _XHNDL_trapback_instruction + 0
    1   com.adobe.linguistic.LinguisticManager          0x0a55e301 devtech::ITokenizer::createInstance(std::string const&) + 45585
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9b88690a kevent + 10
    1   libdispatch.dylib                       0x990c0e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x990bf853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9b88583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9b709e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9b709f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x92f573a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x92fb967f MPWaitOnQueue + 200
    5   PMRuntime.dylib                         0x00014130 MemUtils::GetAvailMem() + 288
    6   com.apple.CoreServices.CarbonCore          0x92fba5e0 PrivateMPEntryPoint + 68
    7   libsystem_c.dylib                       0x9b705ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9b7096de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9b88602e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b707ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b7096fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x9b88602e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b707ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b7096fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x9b883c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b8831f6 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x92fe40ec TS_exception_listener_thread + 90
    3   libsystem_c.dylib                       0x9b705ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x9b7096de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9b88583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9b709e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9b6ba42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92fe5e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x92f5737d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x92fb967f MPWaitOnQueue + 200
    6   AdobeACE                                0x0005a6f1 0x20000 + 239345
    7   AdobeACE                                0x0005a0ed 0x20000 + 237805
    8   com.apple.CoreServices.CarbonCore          0x92fba5e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x9b705ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9b7096de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9b88583e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9b709e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9b6b182a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x03f83126 C_AMTUISwitchSuppressUpdates + 16768
    4   com.adobe.amt.services                  0x03f7bdb0 C_EULA_SetState + 2164
    5   com.adobe.amt.services                  0x03f8318c C_AMTUISwitchSuppressUpdates + 16870
    6   libsystem_c.dylib                       0x9b705ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9b7096de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0a521ea4  ecx: 0x00000000  edx: 0x0000000c
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffd7a8  esp: 0xbfffd620
       ss: 0x00000023  efl: 0x00010246  eip: 0xac345630   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 1
    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/InDesignModelAndUI
       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/AdobeCrashReporter
    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/libicui18n.dyl ib.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) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /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
    0x2ff2000 -  0x2ffafff +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
    0x3f5e000 -  0x3fc5fea +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
    0x99f3000 -  0x9a2cffb +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/UpdaterNotification s
    0x9eef000 -  0x9ef4ff1 +com.adobe.InDesign.Data Services UI (7.0.0.355 - ???) <85782AE8-BCF3-0AB4-6AEF-445B7A7E762E> /Applications/Adobe InDesign CS5/*/Data Services UI
    0x9efa000 -  0x9efcfff +com.adobe.InDesign.SimpleTextImportFilter (7.0.0.355 - ???) <CCE5A524-7B2E-FED1-C328-3B1D0F24DFBA> /Applications/Adobe InDesign CS5/*/SimpleTextImportFilter
    0xa0b0000 -  0xa0b7ffc +com.adobe.InDesign.Data Services (7.0.0.355 - ???) <3CF976FD-E9C0-46B5-4F3E-9907456210C8> /Applications/Adobe InDesign CS5/*/Data Services
    0xa0bd000 -  0xa0c9ff9 +com.adobe.InDesign.DTTransform (7.0.0.355 - ???) <6955E68F-367C-2BA2-34A6-A83F957FDC04> /Applications/Adobe InDesign CS5/*/DTTransform
    0xa0d1000 -  0xa0f0fff +com.adobe.InDesign.LILO (7.0.0.355 - ???) <00B57FD8-D39B-9BDF-9657-ABBF6A3327AB> /Applications/Adobe InDesign CS5/*/LILO
    0xa360000 -  0xa390fff +com.adobe.InDesign.Dictionary Editor Dialog (7.0.0.355 - ???) <C2684EAE-503F-BD50-5F74-35258860FE8D> /Applications/Adobe InDesign CS5/*/Dictionary Editor Dialog
    0xa3af000 -  0xa3deff0 +TextPanelLib.dylib (??? - ???) <F7BEA3B0-B264-4ECA-C7C1-E161D2CDCE4F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/TextPanelLib.dylib
    0xa3fa000 -  0xa3fbfff +com.adobe.InDesign.Help (7.0.0.355 - ???) <6E875143-BA05-093F-B1AE-385ADE146CC5> /Applications/Adobe InDesign CS5/*/Help
    0xa500000 -  0xa5c2fe7 +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/AdobeLinguistic
    0xa5ec000 -  0xa643ff7 +com.adobe.InDesign.Media Import Filter (7.0.0.355 - ???) <43FF7304-FC36-DDEF-BA27-CA094389A50E> /Applications/Adobe InDesign CS5/*/Media Import Filter
    0xa65f000 -  0xa662fff +com.adobe.InDesign.PNG Import Filter UI (7.0.0.355 - ???) <A1D2B2F7-09A2-F22B-5C0C-D812205CEC40> /Applications/Adobe InDesign CS5/*/PNG Import Filter UI
    0xa667000 -  0xa688ffb +com.adobe.InDesign.Sangam Preferences UI (7.0.0.355 - ???) <302FAF9E-15D3-4D3E-C229-96BA5175C49A> /Applications/Adobe InDesign CS5/*/Sangam Preferences UI
    0xa69d000 -  0xa706ffb +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
    0xa750000 -  0xa7a0ff3 +com.adobe.InDesign.SangamExport (7.0.0.355 - ???) <E73EA3D8-498E-C597-BB23-6CAEEA5C0AA3> /Applications/Adobe InDesign CS5/*/SangamExport
    0xa7c0000 -  0xa8d0ff3 +com.adobe.InDesign.SangamServicer-Mapper (7.0.0.355 - ???) <932ACD2D-2394-61AC-D400-83D28700283D> /Applications/Adobe InDesign CS5/*/SangamServicer-Mapper
    0xa91b000 -  0xa92dfff +com.adobe.InDesign.SaveBack (7.0.0.355 - ???) <6EC7D91A-6360-09E3-6488-27159FE3B95D> /Applications/Adobe InDesign CS5/*/SaveBack
    0xa939000 -  0xa9fafff +com.adobe.InDesign.Tagged Text Attributes (7.0.0.355 - ???) <71A7A664-EE9C-2C9B-54C7-2C95200EDDA3> /Applications/Adobe InDesign CS5/*/Tagged Text Attributes
    0xaa47000 -  0xaa54fed +com.adobe.InDesign.Tagged Text Filters UI (7.0.0.355 - ???) <E012A998-0698-1E89-1ECF-B38019417D31> /Applications/Adobe InDesign CS5/*/Tagged Text Filters UI
    0xaa5b000 -  0xab0efeb +com.adobe.InDesign.Tagged Text Filters (7.0.0.355 - ???) <F4AF5B39-33CA-BC3A-0361-D27F75D672ED> /Applications/Adobe InDesign CS5/*/Tagged Text Filters
    0xab34000 -  0xab3dff3 +com.adobe.InDesign.Clipping Path Dialog (7.0.0.355 - ???) <AB110EC2-9F7D-2A23-E18D-69BC22ED2EC9> /Applications/Adobe InDesign CS5/*/Clipping Path Dialog
    0xab48000 -  0xab7bff7 +com.adobe.InDesign.Color Management UI (7.0.0.355 - ???) <3CC153FD-7CD5-427C-0AD2-1D8303011D1E> /Applications/Adobe InDesign CS5/*/Color Management UI
    0xab8f000 -  0xabf2ff0 +com.adobe.InDesign.Color Picker Panel (7.0.0.355 - ???) <F312F57F-9627-B487-9AE2-78F4EEE4548E> /Applications/Adobe InDesign CS5/*/Color Picker Panel
    0xac1e000 -  0xac4afef +com.adobe.InDesign.CS Review Support (7.0.0.355 - ???) <34AE47F8-3486-D597-3081-E1B49C5C2E41> /Applications/Adobe InDesign CS5/*/CS Review Support
    0xac60000 -  0xacc6ff0 +com.adobe.InDesign.DynamicDocumentsUI (7.0.0.355 - ???) <D15A870E-FD3C-508E-9CB7-67955A8AFB74> /Applications/Adobe InDesign CS5/*/DynamicDocumentsUI
    0xacf4000 -  0xacfdfff +com.adobe.InDesign.EPS UI (7.0.0.355 - ???) <ED45C884-B8DF-A5A9-102D-AD61C85266F7> /Applications/Adobe InDesign CS5/*/EPS UI
    0xad06000 -  0xad0eff7 +com.adobe.InDesign.Generic Style Editor (7.0.0.355 - ???) <6AC91CE1-CFDC-973A-13EF-E0B7F057EE2C> /Applications/Adobe InDesign CS5/*/Generic Style Editor
    0xad19000 -  0xad44ff3 +com.adobe.InDesign.Gradient Panel (7.0.0.355 - ???) <EA933872-A548-67F3-42AE-F0D2E30DE522> /Applications/Adobe InDesign CS5/*/Gradient Panel
    0xad5a000 -  0xadb9fff +com.adobe.InDesign.Graphic Panels (7.0.0.355 - ???) <B4C5A5D0-B0B5-E845-6779-94155D1BD072> /Applications/Adobe InDesign CS5/*/Graphic Panels
    0xade4000 -  0xade9ff8 +com.adobe.InDesign.JPEG Export UI (7.0.0.355 - ???) <3E847C08-6DEF-FB2F-E324-22E355949280> /Applications/Adobe InDesign CS5/*/JPEG Export UI
    0xadf0000 -  0xae07fff +com.adobe.InDesign.JPEG Export (7.0.0.355 - ???) <51B47CE6-CCE6-5DC1-6308-6D2F1B7FE59E> /Applications/Adobe InDesign CS5/*/JPEG Export
    0xae16000 -  0xae5aff7 +com.adobe.InDesign.Output Preview (7.0.0.355 - ???) <F9B49624-445D-C68E-9F79-827F427F8FF1> /Applications/Adobe InDesign CS5/*/Output Preview
    0xae77000 -  0xae89ffc +com.adobe.InDesign.OutputMiscUI (7.0.0.355 - ???) <3DF40045-E72F-04A3-A22F-208DBDA660D8> /Applications/Adobe InDesign CS5/*/OutputMiscUI
    0xae98000 -  0xaf07fe3 +com.adobe.InDesign.PDF UI (7.0.0.355 - ???) <E1B95B73-03DB-3920-61BF-01583910437D> /Applications/Adobe InDesign CS5/*/PDF UI
    0xaf33000 -  0xaf8bff7 +AdobeXMP (??? - ???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xaf9a000 -  0xafadff7 +com.adobe.InDesign.Printer Styles (7.0.0.355 - ???) <4F3B1382-6ADB-9387-50AA-280EEB3B21FC> /Applications/Adobe InDesign CS5/*/Printer Styles
    0xafba000 -  0xb070fef +com.adobe.InDesign.PrintUI (7.0.0.355 - ???) <D9B408FA-2FC6-2CF0-3985-D4DC0B97C5CA> /Applications/Adobe InDesign CS5/*/PrintUI
    0xb0a9000 -  0xb0b6ff0 +com.adobe.InDesign.PS Import UI (7.0.0.355 - ???) <C23DDE3F-A747-0EE7-A022-264E95F17ACF> /Applications/Adobe InDesign CS5/*/PS Import UI
    0xb0c2000 -  0xb0dbfff +com.adobe.InDesign.Swatch Library Panel (7.0.0.355 - ???) <64A0FEA7-CFB4-9AC2-F783-6B05669DD07C> /Applications/Adobe InDesign CS5/*/Swatch Library Panel
    0xb0e9000 -  0xb17cff0 +com.adobe.InDesign.Swatches Panel (7.0.0.355 - ???) <03D6A3CE-263D-1EC5-CF79-46C89371E9DA> /Applications/Adobe InDesign CS5/*/Swatches Panel
    0xb1bc000 -  0xb250ff8 +com.adobe.InDesign.Transparency UI (7.0.0.355 - ???) <E7961C20-0F04-A7E7-9D27-12662275B9EF> /Applications/Adobe InDesign CS5/*/Transparency UI
    0xb28d000 -  0xb2defff +com.adobe.InDesign.Assignment UI (7.0.0.355 - ???) <68E8A061-DC76-683D-474F-73B130A96910> /Applications/Adobe InDesign CS5/*/Assignment UI
    0xb305000 -  0xb31efe8 +com.adobe.InDesign.InCopy Bridge UI (7.0.0.355 - ???) <15AF9B70-96E3-5AF1-C23E-ACD683E4635D> /Applications/Adobe InDesign CS5/*/InCopy Bridge UI
    0xb32b000 -  0xb35effb +com.adobe.InDesign.InCopy Bridge (7.0.0.355 - ???) <F17AC175-6EDE-B9BF-2D97-8C244B37FF4B> /Applications/Adobe InDesign CS5/*/InCopy Bridge
    0xb373000 -  0xb379ff0 +com.adobe.InDesign.InCopyExport (7.0.0.355 - ???) <5487C2CD-11DE-2CF7-5900-5536F0A976CA> /Applications/Adobe InDesign CS5/*/InCopyExport
    0xb380000 -  0xb384ff3 +com.adobe.InDesign.InCopyExportUI (7.0.0.355 - ???) <A1A145E5-8F29-9AD0-7957-8A82CC60D440> /Applications/Adobe InDesign CS5/*/InCopyExportUI
    0xb38a000 -  0xb38ffff +com.adobe.InDesign.InCopyImport (7.0.0.355 - ???) <3D65253B-A744-2ECD-497C-D1718C83CAEB> /Applications/Adobe InDesign CS5/*/InCopyImport
    0xb395000 -  0xb39aff7 +com.adobe.InDesign.InCopyWorkflow UI (7.0.0.355 - ???) <2876EEC1-3E44-25CD-7F8E-09D68574C0A3> /Applications/Adobe InDesign CS5/*/InCopyWorkflow UI
    0xb3a1000 -  0xb3e8ff7 +com.adobe.InDesign.Note (7.0.0.355 - ???) <37279281-F00F-B241-9F74-9C1212BA41A6> /Applications/Adobe InDesign CS5/*/Note
    0xb40a000 -  0xb413fff +com.adobe.InDesign.NotePref (7.0.0.355 - ???) <8E6B6D6A-3E5A-4586-E870-CF81708CF293> /Applications/Adobe InDesign CS5/*/NotePref
    0xb41f000 -  0xb422ff3 +com.adobe.InDesign.Username UI (7.0.0.355 - ???) <3514A459-610A-EDE6-7509-927DB9C72BD8> /Applications/Adobe InDesign CS5/*/Username UI
    0xb428000 -  0xb4abff7 +com.adobe.InDesign.ButtonUI (7.0.0.355 - ???) <C14894D9-84A8-65B4-04BD-DB42FCCA9ADA> /Applications/Adobe InDesign CS5/*/ButtonUI
    0xb4e7000 -  0xb500fff +com.adobe.InDesign.MediaUI (7.0.0.355 - ???) <AB2CF690-DE65-3EFE-E77D-6B8A54366A44> /Applications/Adobe InDesign CS5/*/MediaUI
    0xb511000 -  0xb51dfff +com.adobe.InDesign.Alignment Panel (7.0.0.355 - ???) <0F05821E-3992-DB42-C38B-A45AE2BB8B66> /Applications/Adobe InDesign CS5/*/Alignment Panel
    0xb527000 -  0xb55fff6 +com.adobe.InDesign.Asset Library Panel (7.0.0.355 - ???) <D84FFB9D-DF4A-AA2A-46FF-706F701A6A96> /Applications/Adobe InDesign CS5/*/Asset Library Panel
    0xb581000 -  0xb5dbfff +com.adobe.InDesign.Asset PubLibrary (7.0.0.355 - ???) <19B25A88-E10E-0870-FC5C-CD6BB714DBE0> /Applications/Adobe InDesign CS5/*/Asset PubLibrary
    0xb603000 -  0xb641ff5 +com.adobe.InDesign.Book Panel (7.0.0.355 - ???) <FDA8F072-64B8-5F96-120F-B4C0F072A62F> /Applications/Adobe InDesign CS5/*/Book Panel
    0xb664000 -  0xb67affb +com.adobe.InDesign.Bookmark Panel (7.0.0.355 - ???) <C76A1A09-83E8-B539-CE25-02A689DABAA0> /Applications/Adobe InDesign CS5/*/Bookmark Panel
    0xb68b000 -  0xb6c1ffd +com.adobe.InDesign.Control Panel (7.0.0.355 - ???) <D89A65CF-DE0C-7121-8FE8-F3F9E35BC64C> /Applications/Adobe InDesign CS5/*/Control Panel
    0xb6dd000 -  0xb6e3fff +com.adobe.InDesign.Create Guides Dialog (7.0.0.355 - ???) <46D55BA1-16A3-9508-AC91-D43359EB8950> /Applications/Adobe InDesign CS5/*/Create Guides Dialog
    0xb6ea000 -  0xb71cfff +com.adobe.InDesign.Eyedropper Tool (7.0.0.355 - ???) <4C2B3351-5BDA-8A29-C4AD-FD8FCA130CD4> /Applications/Adobe InDesign CS5/*/Eyedropper Tool
    0xb72f000 -  0xb79bff8 +com.adobe.InDesign.Hyperlinks Panel (7.0.0.355 - ???) <7DA181EC-3AB9-4B9B-3066-51BFB1DD6A36> /Applications/Adobe InDesign CS5/*/Hyperlinks Panel
    0xb7c8000 -  0xb83cff1 +com.adobe.InDesign.Index Panel (7.0.0.355 - ???) <242B3354-F869-77CB-E5B8-190E19FD2150> /Applications/Adobe InDesign CS5/*/Index Panel
    0xb865000 -  0xb872fff +unihan (??? - ???) <21D02D03-821D-1E92-C99E-919CD21883A0> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
    0xb87d000 -  0xb8ccfff +com.adobe.InDesign.Info Panel (7.0.0.355 - ???) <92DF0684-9C32-D4C2-4D09-8EFF4B9D558A> /Applications/Adobe InDesign CS5/*/Info Panel
    0xb8ed000 -  0xb9d9fff +com.adobe.InDesign.Knowledge Base (7.0.0.355 - ???) <F28544D6-4836-E99B-9AF0-8C205FB83D6B> /Applications/Adobe InDesign CS5/*/Knowledge Base
    0xb9df000 -  0xba1cfff +com.adobe.InDesign.Layers Panel (7.0.0.355 - ???) <54CEC2F9-8DE7-687D-23DE-52EE13AE299B> /Applications/Adobe InDesign CS5/*/Layers Panel
    0xba3d000 -  0xba3fff7 +com.adobe.InDesign.Layout Adjustment Panel (7.0.0.355 - ???) <9F50B241-88F7-06D2-28EB-BD55F67645CE> /Applications/Adobe InDesign CS5/*/Layout Adjustment Panel
    0xba44000 -  0xba5ffff +com.adobe.InDesign.Layout Adjustment (7.0.0.355 - ???) <F72DB275-C515-CB50-BB9E-1D139A992404> /Applications/Adobe InDesign CS5/*/Layout Adjustment
    0xba6c000 -  0xbaa6fff +com.adobe.InDesign.Links UI (7.0.0.355 - ???) <43E66E99-D27A-10E3-DBDC-7C54942FC374> /Applications/Adobe InDesign CS5/*/Links UI
    0xbac6000 -  0xbb4cffc +com.adobe.InDesign.ObjectStylesUI (7.0.0.355 - ???) <AB925026-A7EF-0E0B-265F-CA671F6BB1C0> /Applications/Adobe InDesign CS5/*/ObjectStylesUI
    0xbb87000 -  0xbba1ffb +com.adobe.InDesign.Page Setup Dialog (7.0.0.355 - ???) <8DAD7DD1-709A-5411-62C8-425666A2FF9F> /Applications/Adobe InDesign CS5/*/Page Setup Dialog
    0xbbac000 -  0xbc38fec +com.adobe.InDesign.Pages Panel (7.0.0.355 - ???) <738734CC-9DDC-901C-C3CC-085919A2D091> /Applications/Adobe InDesign CS5/*/Pages Panel
    0xbc71000 -  0xbc7cff8 +com.adobe.InDesign.Sections UI (7.0.0.355 - ???) <03CC83C4-3642-7D33-4578-812796388DE8> /Applications/Adobe InDesign CS5/*/Sections UI
    0xbc84000 -  0xbc8bffc +com.adobe.InDesign.StepRepeat (7.0.0.355 - ???) <10F09DA9-5EC1-37A2-853E-1A2474D4F865> /Applications/Adobe InDesign CS5/*/StepRepeat
    0xbc93000 -  0xbcc8ff7 +com.adobe.InDesign.Text Wrap Panel (7.0.0.355 - ???) <9EED4BC1-D58E-021A-3C51-3574D08672AF> /Applications/Adobe InDesign CS5/*/Text Wrap Panel
    0xbce1000 -  0xbd14ff0 +com.adobe.InDesign.TOC UI Dialog (7.0.0.355 - ???) <F4F33165-5526-14D3-A67F-0930DB1A9BD7> /Applications/Adobe InDesign CS5/*/TOC UI Dialog
    0xbd2d000 -  0xbd59ff4 +com.adobe.InDesign.Transform Panel (7.0.0.355 - ???) <FE711509-818D-ED28-E592-F31E8DD53838> /Applications/Adobe InDesign CS5/*/Transform Panel
    0xbd6e000 -  0xbd85ff3 +com.adobe.InDesign.Image Import UI (7.0.0.355 - ???) <EC696635-FAC6-CA59-AA74-388639C0BC6A> /Applications/Adobe InDesign CS5/*/Image Import UI
    0xbd94000 -  0xbda6fff +com.adobe.InDesign.Scotch Rules (7.0.0.355 - ???) <F24C95FC-1649-146B-A97C-6CDBC3F66CB8> /Applications/Adobe InDesign CS5/*/Scotch Rules
    0xbdb0000 -  0xbdfcfff +com.adobe.InDesign.BNUI (7.0.0.355 - ???) <67C96B50-D0FC-71F9-211A-2E502B90E901> /Applications/Adobe InDesign CS5/*/BNUI
    0xbe20000 -  0xbea6fff +com.adobe.InDesign.DataMerge (7.0.0.355 - ???) <46C2972E-CF0F-AA80-0729-C5A7C055A879> /Applications/Adobe InDesign CS5/*/DataMerge
    0xbed6000 -  0xbf00ff7 +com.adobe.InDesign.DataMergeUI (7.0.0.355 - ???) <8C04AFAC-C8AC-63E9-168B-96D2D8AC45CC> /Applications/Adobe InDesign CS5/*/DataMergeUI
    0xbf19000 -  0xbf2bfff +com.adobe.InDesign.PMWelcomeScreen (7.0.0.355 - ???) <F44E336F-6BD7-8E03-53AA-FB8DFDAB709B> /Applications/Adobe InDesign CS5/*/PMWelcomeScreen
    0xbf3b000 -  0xbf4aff8 +com.adobe.ahclientframework (1.5.0.30 - 1.5.0.30) <24B39C2F-79B0-BDE3-C6D0-1F0E943070C7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xbf53000 -  0xc022ffb +com.adobe.InDesign.Package and Preflight UI (7.0.0.355 - ???) <47F747B7-F9AE-229F-E766-BCC8962E1C1C> /Applications/Adobe InDesign CS5/*/Package and Preflight UI
    0xc079000 -  0xc25afff +com.adobe.InDesign.Package and Preflight (7.0.0.355 - ???) <A0C40C94-3677-DE71-82E5-458C6CAFDB58> /Applications/Adobe InDesign CS5/*/Package and Preflight
    0xc2e8000 -  0xc30eff6 +AdobeAXE8SharedExpat (??? - ???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0xc316000 -  0xc3fdff7 +com.adobe.InDesign.JBX (7.0.0.355 - ???) <FF769DFF-D91D-0D78-5A59-082E05926FD6> /Applications/Adobe InDesign CS5/*/JBX
    0xc446000 -  0xc44afff +com.adobe.InDesign.Script Label Panel (7.0.0.355 - ???) <21F5F903-03B6-2F3E-53FF-65EFF4614542> /Applications/Adobe InDesign CS5/*/Script Label Panel
    0xc451000 -  0xc45bfff +com.adobe.InDesign.Scripts Panel (7.0.0.355 - ???) <3001A55F-CD98-EE1C-A267-96623574E6DD> /Applications/Adobe InDesign CS5/*/Scripts Panel
    0xc466000 -  0xc4bcff3 +com.adobe.InDesign.Sonar Bookends InDex Pro (7.0.0 - ???) <70861FE4-D538-3DEA-B078-BAA69FA048A1> /Applications/Adobe InDesign CS5/*/Sonar Bookends InDex Pro
    0xc75d000 -  0xc81bff4 +com.adobe.InDesign.Tables UI (7.0.0.355 - ???) <008FE984-1EDD-4649-3732-DF17E2521DAD> /Applications/Adobe InDesign CS5/*/Tables UI
    0xc861000 -  0xc8e7fff +com.adobe.InDesign.TableStylesUI (7.0.0.355 - ???) <CB203C79-693C-0095-234D-2BF1DD21EE5F> /Applications/Adobe InDesign CS5/*/TableStylesUI
    0xc920000 -  0xc979ff7 +com.adobe.InDesign.Character Panel (7.0.0.355 - ???) <079F7FD5-31A8-6B52-3503-45562B899EC5> /Applications/Adobe InDesign CS5/*/Character Panel
    0xc9a7000 -  0xc9cdfff +com.adobe.InDesign.Conditional Text UI (7.0.0.355 - ???) <13E2464A-AF9F-5DF5-276A-9548C9517993> /Applications/Adobe InDesign CS5/*/Conditional Text UI
    0xc9e5000 -  0xc9fdfff +com.adobe.InDesign.Create Outlines (7.0.0.355 - ???) <AD0604FA-77DC-AA5D-7CFA-A781E387F116> /Applications/Adobe InDesign CS5/*/Create Outlines
    0xca0a000 -  0xcb10fff +com.adobe.InDesign.Find and Change Panel (7.0.0.355 - ???) <D16DDA47-C2E3-4754-6956-7FF342676136> /Applications/Adobe InDesign CS5/*/Find and Change Panel
    0xcb6e000 -  0xcb8fff7 +com.adobe.InDesign.Find Change Format Panel (7.0.0.355 - ???) <21973D01-A4FE-1D9E-F42E-498386782813> /Applications/Adobe InDesign CS5/*/Find Change Format Panel
    0xcba1000 -  0xcbc2ff4 +com.adobe.InDesign.Font Usage Dialog (7.0.0.355 - ???) <BD0B4E17-9BC4-4EA7-A8CC-6DE599FFDDB1> /Applications/Adobe InDesign CS5/*/Font Usage Dialog
    0xcbd4000 -  0xcc5bfff +com.adobe.InDesign.Glyphs Panel (7.0.0.355 - ???) <1547B00F-3A30-FCDD-B0EE-64574E2286A5> /Applications/Adobe InDesign CS5/*/Glyphs Panel
    0xcc83000 -  0xcc8bfff +com.adobe.InDesign.Hyphenation Panel (7.0.0.355 - ???) <D374E9F0-B5E3-B6FA-1E05-45FE2E4BE1D6> /Applications/Adobe InDesign CS5/*/Hyphenation Panel
    0xcc95000 -  0xcca3ffd +com.adobe.InDesign.Indents and Tabs (7.0.0.355 - ???) <C0D2FEBF-8287-F1FB-908E-E734ABDDB296> /Applications/Adobe InDesign CS5/*/Indents and Tabs
    0xccae000 -  0xccb5fff +com.adobe.InDesign.Justification Panel (7.0.0.355 - ???) <B0219BBF-D0FA-8727-F6D9-0797296FC186> /Applications/Adobe InDesign CS5/*/Justification Panel
    0xccbc000 -  0xccc1fff +com.adobe.InDesign.Keeps Panel (7.0.0.355 - ???) <0628CAD2-8C0A-B37B-C6CE-76C7F68D465F> /Applications/Adobe InDesign CS5/*/Keeps Panel
    0xccc7000 -  0xcce7fff +com.adobe.InDesign.Optical Kerning (7.0.0.355 - ???) <A790945A-AEF8-034C-B3E7-5068E7C796CB> /Applications/Adobe InDesign CS5/*/Optical Kerning
    0xccf3000 -  0xcd1bfff +com.adobe.InDesign.Paragraph Panel (7.0.0.355 - ???) <87F4AA8A-9C21-5B76-9980-B45602D485F7> /Applications/Adobe InDesign CS5/*/Paragraph Panel
    0xcd30000 -  0xcd3dff3 +com.adobe.InDesign.Paragraph Rules Panel (7.0.0.355 - ???) <526469BC-AD7F-7995-6839-6BF110D06B09> /Applications/Adobe InDesign CS5/*/Paragraph Rules Panel
    0xcd46000 -  0xcd58ffb +com.adobe.InDesign.Path Type UI (7.0.0.355 - ???) <4FDF381A-201A-D4F8-7E0C-63A82504F3A8> /Applications/Adobe InDesign CS5/*/Path Type UI
    0xcd65000 -  0xcd6dff3 +PathTypeLib.dylib (??? - ???) <F753ACE3-9AB5-76D6-8F55-CEF5E19401AF> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PathTypeLib.dylib
    0xcd73000 -  0xcd97ff5 +com.adobe.InDesign.RunIn Styles Panel (7.0.0.355 - ???) <D213EDED-E1D1-9487-9AD6-270CDA4B41D4> /Applications/Adobe InDesign CS5/*/RunIn Styles Panel
    0xcdaa000 -  0xcdbffff +com.adobe.InDesign.SING (7.0.0.355 - ???) <B054E119-FBE6-5805-DC63-7FB0DA64E307> /Applications/Adobe InDesign CS5/*/SING
    0xcdcc000 -  0xcdd4ff7 +com.adobe.InDesign.Span Columns Panel (7.0.0.355 - ???) <1FE07F66-7B5A-A3BA-029A-760C0E1A5BB9> /Applications/Adobe InDesign CS5/*/Span Columns Panel
    0xcddb000 -  0xce1bffc +com.adobe.InDesign.Spelling Panel (7.0.0.355 - ???) <96DE3DF1-C22F-AF2F-4278-FDAAE598E3D6> /Applications/Adobe InDesign CS5/*/Spelling Panel
    0xce3b000 -  0xce49ff8 +com.adobe.InDesign.Story Panel (7.0.0.355 - ???) <3F6FE652-BF78-CBEF-0714-62F9EFE6F485> /Applications/Adobe InDesign CS5/*/Story Panel
    0xce54000 -  0xcea8ff7 +com.adobe.InDesign.Style Panel (7.0.0.355 - ???) <26F90B93-2C75-7128-6B87-0B90AB5995AC> /Applications/Adobe InDesign CS5/*/Style Panel
    0xced4000 -  0xceddff1 +com.adobe.InDesign.Text Color Panel (7.0.0.355 - ???) <8C1F39E1-E2D3-8134-13E4-F811D9B452D0> /Applications/Adobe InDesign CS5/*/Text Color Panel
    0xcee5000 -  0xcf00ff1 +com.adobe.InDesign.Text Frame Options (7.0.0.355 - ???) <1089EFE3-C64D-40AF-4787-970F4332BE2E> /Applications/Adobe InDesign CS5/*/Text Frame Options
    0xcf0e000 -  0xcf5cfff +com.adobe.InDesign.Text Panel (7.0.0.355 - ???) <B7A2C124-8C5A-F83F-10C1-1D092A258703> /Applications/Adobe InDesign CS5/*/Text Panel
    0xcf7c000 -  0xcf95fff +com.adobe.InDesign.Text Preferences (7.0.0.355 - ???) <889C74DB-74F5-730D-D91D-C4C4898018F6> /Applications/Adobe InDesign CS5/*/Text Preferences
    0xcfa2000 -  0xcfbeff4 +com.adobe.InDesign.Text Ruler (7.0.0.355 - ???) <3B6AA7F6-AB38-39CC-2EDC-EE243958BDC8> /Applications/Adobe InDesign CS5/*/Text Ruler
    0xcfcc000 -  0xcfe0ff7 +com.adobe.InDesign.Text Style Panel (7.0.0.355 - ???) <14827AD2-028A-60A2-483A-A4A7EBF4E0F8> /Applications/Adobe InDesign CS5/*/Text Style Panel
    0xcfed000 -  0xd017ff7 +com.adobe.InDesign.CSXS (7.0.0.355 - ???) <D169CA69-0B16-E3C5-0369-2597A973B7AD> /Applications/Adobe InDesign CS5/*/CSXS
    0xd02e000 -  0xd1a6ffb +com.adobe.PlugPlug (2.0.0.746 - 2.0.0.746) <08AD22E3-34C0-6749-E497-616C66A246AD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0xd200000 -  0xd229ff4 +com.adobe.InDesign.Galley Preferences (7.0.0.355 - ???) <51838E2D-0260-3A36-B182-D9BB586DA95A> /Applications/Adobe InDesign CS5/*/Galley Preferences
    0xd242000 -  0xd25dffb +com.adobe.InDesign.GapTool (7.0.0.355 - ???) <F29D454E-0B8E-AE6F-3DB7-FD7456C8F421> /Applications/Adobe InDesign CS5/*/GapTool
    0xd26a000 -  0xd271ffa +com.adobe.InDesign.General Preferences Panel (7.0.0.355 - ???) <8A6E86C8-9983-3D3B-5825-56702E51A738> /Applications/Adobe InDesign CS5/*/General Preferences Panel
    0xd279000 -  0xd28dff8 +com.adobe.InDesign.Performance UI (7.0.0.355 - ???) <5932EC9D-B8A4-7916-9F10-FBBD98BBA52F> /Applications/Adobe InDesign CS5/*/Performance UI
    0xd29c000 -  0xd2b8fff +com.adobe.InDesign.Shortcut Editor Dialog (7.0.0.355 - ???) <BD72563F-DDDC-F988-5060-3B0F201BD015> /Applications/Adobe InDesign CS5/*/Shortcut Editor Dialog
    0xd2c8000 -  0xd2d9ff3 +com.adobe.InDesign.Tool Box (7.0.0.355 - ???) <8EB4E951-1F84-6992-6544-9364DA7EDE64> /Applications/Adobe InDesign CS5/*/Tool Box
    0xd2e8000 -  0xd2f2fff +com.adobe.InDesign.Tool Tips (7.0.0.355 - ???) <A31625D2-C7E6-40EC-5A20-3C1553803A18> /Applications/Adobe InDesign CS5/*/Tool Tips
    0xd2fd000 -  0xd302fff +com.adobe.InDesign.Track Changes Preferences (7.0.0.355 - ???) <AA0D3336-B7B2-68EA-23E5-30C4D8E95EEE> /Applications/Adobe InDesign CS5/*/Track Changes Preferences
    0xd309000 -  0xd319fff +com.adobe.InDesign.Track Changes UI (7.0.0.355 - ???) <F7ACACB2-E602-EB6B-89EA-D1866058481B> /Applications/Adobe InDesign CS5/*/Track Changes UI
    0xd322000 -  0xd329fff +com.adobe.InDesign.PerformanceMetrics (7.0.0.355 - ???) <2AB9D4A0-E984-C5EF-FABF-D2671F116033> /Applications/Adobe InDesign CS5/*/PerformanceMetrics
    0xd330000 -  0xd33dff1 +com.adobe.InDesign.Metadata UI (7.0.0.355 - ???) <F45F1B21-A3FE-975C-029D-73FC59B68669> /Applications/Adobe InDesign CS5/*/Metadata UI
    0xd345000 -  0xd3b2fef +FileInfo (??? - ???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0xd3cd000 -  0xd3d4ff5 +com.adobe.InDesign.Workgroup UI (7.0.0.355 - ???) <E959A787-CD65-A25D-3B8C-B75303108E1B> /Applications/Adobe InDesign CS5/*/Workgroup UI
    0xd3da000 -  0xd41bfff +com.adobe.InDesign.Snippet (7.0.0.355 - ???) <CB31C87A-FEE9-1573-5921-B356CDA2926E> /Applications/Adobe InDesign CS5/*/Snippet
    0xd438000 -  0xd530ff7 +com.adobe.InDesign.XMedia UI (7.0.0.355 - ???) <6667D552-A793-62CB-175E-4970F19BCF8B> /Applications/Adobe InDesign CS5/*/XMedia UI
    0xd598000 -  0xd5e0ff3 +com.adobe.InDesign.Actions (7.0.0.355 - ???) <0BCCFF8A-54D9-2FAB-A8C9-B74915CBA1F4> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0xd5fb000 -  0xd78afe3 +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
    0xd80f000 -  0xda70feb +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
    0xdb71000 -  0xdc09fff +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/AdobeExtendScript
    0xdc47000 -  0xdcd4ff7 +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
    0xdd06000 -  0xdd59ffb +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
    0xdd96000 -  0xde17fe7 +com.adobe.InDesign.Assignments (7.0.0.355 - ???) <C87E3D22-71F8-7E72-6D13-23164C81BAD7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0xde48000 -  0xded4fef +AdobeXMPFiles (??? - ???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0xdf0b000 -  0xdf46ffb +com.adobe.InDesign.AWS (7.0.0.355 - ???) <FFD50798-4E0C-9D85-FF0A-E0D89B7A8050> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0xdf62000 -  0xdf8aff7 +com.adobe.InDesign.AWSUI (7.0.0.355 - ???) <5EDF3B1A-28BA-38F9-6A65-F8519A243C79> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0xdfa1000 -  0xdfd2ffb +com.adobe.InDesign.Basic Tools (7.0.0.355 - ???) <C918728E-56AA-3921-07F1-420F5F4CF117> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Basic Tools.InDesignPlugin/Basic Tools
    0xdfed000 -  0xe03eff7 +com.adobe.InDesign.Behavior (7.0.0.355 - ???) <1DB314F9-B4CB-0B14-0D92-D72CDC9E1D26> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0xe066000 -  0xe10afe1 +com.adobe.InDesign.BNCore (7.0.0.355 - ???) <199825AD-29B7-2D34-F4BF-286755C34F22> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0xe13e000 -  0xe191ff3 +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
    0xe1b4000 -  0xe1c2fff +com.adobe.InDesign.Buzzword Access (7.0.0.355 - ???) <37D12BD4-D9A1-4407-127E-512D2166D8B5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Buzzword Access.InDesignPlugin/Buzzword Access
    0xe1cc000 -  0xe1fdfff +com.adobe.InDesign.CellStyles.rpln (7.0.0.355 - ???) <E7F1E5A8-AD80-8448-1F5D-4E9645D7ABD8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln
    0xe213000 -  0xe29bffb +com.adobe.InDesign.CJK Text Attributes (7.0.0.355 - ???) <CB39B002-8B38-2281-D6CE-EFC9AB8EDA36> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0xe2cf000 -  0xe341ffa +com.adobe.InDesign.CJKGrid (7.0.0.355 - ???) <952E53B5-47A3-3F31-0AF4-632E7EE0E99A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0xe36b000 -  0xe441fef +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
    0xe488000 -  0xe4deff3 +com.adobe.InDesign.CompFontMgr (7.0.0.355 - ???) <52EE7841-2C41-5FF4-AFB8-B06C63995856> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0xe4fe000 -  0xe547ff7 +com.adobe.InDesign.Conditional Text (7.0.0.355 - ???) <092A939F-1479-ADD0-1884-AB0BAB881604> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
    0xe567000 -  0xe583ff3 +com.adobe.InDesign.Dialog Layout (7.0.0.355 - ???) <C39BA2D7-EA14-E85A-2B2D-724A0271B14F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0xe593000 -  0xe5b1ffe +com.adobe.InDesign.Document Actions (7.0.0.355 - ???) <C17E4523-A86F-CE6B-BECD-FD614F9D9C5C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0xe5c2000 -  0xe74fffb +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
    0xe7c5000 -  0xe7cbfff +com.adobe.InDesign.Document UI (7.0.0.355 - ???) <6E172D7E-63B0-4372-E6DC-813199369E21> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0xe7d2000 -  0xeae9ffd +com.adobe.InDesign.Dynamic Documents (7.0.0.355 - ???) <A0E0AA7A-6F84-FC12-5071-2BCBE2291BA5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
    0xebc4000 -  0xeca5ff4 +ADBE_AGMFL (??? - ???) <254CC454-1C89-DA76-E96D-ADF5FCD808AB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
    0xecd8000 -  0xee69ff3 +aflamingo (??? - ???) <C4136948-FE16-15C4-F1B9-040E014AF2CA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
    0xeeb4000 -  0xef98fef +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
    0xefde000 -  0xf0defeb +com.adobe.InDesign.Font Manager (7.0.0.355 - ???) <686FF9C9-7D76-6ADA-0E89-1CD439AB07B9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0xf119000 -  0xf198fff +com.adobe.InDesign.FormField (7.0.0.355 - ???) <BCC9DC16-7F02-138A-2848-80F9066A7A13> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0xf1ca000 -  0xf21cffb +com.adobe.InDesign.Galley (7.0.0.355 - ???) <C71587A1-B603-E818-8497-ED257F8DB348> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0xf238000 -  0xf346fff +com.adobe.InDesign.GalleyUI (7.0.0.355 - ???) <8F641CB4-34C4-DC94-BF2A-BBE08EC542DA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
    0xf38d000 -  0xf53bfff +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
    0xf5c7000 -  0xf5d1ff7 +com.adobe.InDesign.GenericSettings (7.0.0.355 - ???) <7D3CD6DE-9481-BC92-4087-5E540161C515> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0xf5d9000 -  0xf5daff1 +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
    0xf5de000 -  0xf63bffb +com.adobe.InDesign.Gradient Fill (7.0.0.355 - ???) <455F20A2-8706-A597-3074-386679BA5244> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0xf660000 -  0xf72ffe7 +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
    0xf778000 -  0xf781ffb +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
    0xf78a000 -  0xf7a0fff +com.adobe.InDesign.Guides (7.0.0.355 - ???) <FE5850EC-EA2C-5ACF-11BA-486C40359AB0> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0xf7af000 -  0xf881ff7 +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
    0xf8ca000 -  0xf923fef +com.adobe.InDesign.Image Filters (7.0.0.355 - ???) <AE6418DD-ACCA-DDFB-6CF0-ABBFAE2161C6> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0xf931000 -  0xfa26fe7 +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
    0xfa74000 -  0xfa8fffb +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
    0xfa9f000 -  0xfad9ff7 +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
    0xfafa000 -  0xfbd9fe7 +com.adobe.InDesign.InCopyShared (7.0.0.355 - ???) <239CCEA7-4A06-9B91-6C85-EF21FD036FEB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0xfc28000 -  0xfc32ff3 +com.adobe.InDesign.InCopySharedUI (7.0.0.355 - ???) <675CBA9B-C45D-D0FE-653F-491D5007B3D3> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0xfc3d000 -  0xfcbbff3 +com.adobe.InDesign.InCopyWorkflow (7.0.0.355 - ???) <030DA376-E5A7-4B26-CE74-028927EF0A01> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0xfcf6000 -  0xfdd8ff7 +com.adobe.InDesign.Indexing (7.0.0.355 - ???) <F225EE99-CFB6-6716-3B52-491DE35D7680> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0xfe14000 -  0xfecffff +com.adobe.InDesign.INXCore (7.0.0.355 - ???) <ADE73F71-E0E8-18EE-DBF3-F8B26AB3965B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
    0xff0f000 -  0xff33fff +com.adobe.InDesign.Layer (7.0.0.355 - ???) <F2C9FAF7-2D6F-653E-4596-3759D27E7034> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
    0xff47000 - 0x100c2ff7 +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
    0x10148000 - 0x10169ff3 +com.adobe.InDesign.Layout (7.0.0.355 - ???) <8C39CD70-A373-88A5-CFD7-D1A730F96103> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x10179000 - 0x101bcff7 +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
    0x101dc000 - 0x10317fff +com.adobe.InDesign.Links (7.0.0.355 - ???) <DA8D69A9-77B5-12E0-99E9-7BA2FF99772E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x10379000 - 0x103e3ff7 +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
    0x10409000 - 0x10458ff7 +com.adobe.InDesign.Media (7.0.0.355 - ???) <007C8522-EF86-AA23-56EC-99F318647ACC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x10476000 - 0x10477ff3 +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
    0x1047b000 - 0x104f8ff7 +com.adobe.InDesign.Metadata (7.0.0.355 - ???) <86187B9A-E072-BEB4-4E49-BF4A33FE6327> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
    0x10527000 - 0x1053cfff +com.adobe.InDesign.Movie (7.0.0.355 - ???) <77F87F68-A6E9-05B6-C892-6FAFABF645C6> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
    0x1054a000 - 0x1057efff +com.adobe.InDesign.Open Place (7.0.0.355 - ???) <604DFE0C-0815-33D3-2087-C85D73F1961D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x10597000 - 0x1065afff +com.adobe.InDesign.Paragraph Composer (7.0.0.355 - ???) <1D553B63-9594-CBD7-81A3-1183D6A1B9FD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
    0x10678000 - 0x106b1ffb +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
    0x106cc000 - 0x1089efff +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
    0x10926000 - 0x10a09fef +AdobePDFPort (??? - ???) <A3B34989-24B0-04AF-D9BC-2B2718803809> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x10a3e000 - 0x10a59ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x10a73000 - 0x10aa6ff7 +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
    0x10abc000 - 0x117fffff +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
    0x11b3e000 - 0x11b3fff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x11b44000 - 0x11b76ff7 +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
    0x11b7f000 - 0x11ccafff +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
    0x11d29000 - 0x11d43fff +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
    0x11d52000 - 0x11debff7 +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
    0x11e1c000 - 0x11e36ff2 +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
    0x11e45000 - 0x11e52fff +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
    0x11e5d000 - 0x11e6bfff +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
    0x11e77000 - 0x11eb0fff +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
    0x11ece000 - 0x11f0afff +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
    0x11f26000 - 0x11f6bff0 +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
    0x11f85000 - 0x12068ffb +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
    0x120b4000 - 0x12103ffb +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
    0x1211f000 - 0x12163fff +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
    0x1217c000 - 0x12206ff7 +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
    0x1223f000 - 0x12438fff +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
    0x124c5000 - 0x1250cfff +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
    0x12523000 - 0x1256cfff +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
    0x12591000 - 0x125a0fff +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/Req

    Hi Cari,
    I did create a new user account (admin level) and InDesign works like a charm.
    When I went back to the other account, plug-ins gone, I deleted the prefs and caches, restarted and still everything is crashing as before.
    At least I am working on one account and I will contiue to troubleshoot on the other account. And at some point either the new account will crash or the old account will work and I will go from there.
    Thanks for the info about Mac remembering info. Always trying to be helpful these Macs.
    And thanks for getting at least into a workable space!!! I am supremely grateful!

  • [CS5 Win] Switching to InDesign is slow in CS5 for certain documents. XML links?

    Hi,
    I put this question in the scripting part, since you might be the ones to notice such things as this, and it might relate to importing XML by scripting. Also I got no positive response in one of the other forums, "complaining" about the sluggish performance redrawing the interface when setting focus to InDesign CS5. But now I can more clearly see that it is not slow for all documents.
    Having certain documents open in InDesign CS5 makes it very slow to switch to. The CPU peaks at 80-100% and it takes about a second or two until InDesign responds.
    The documents do not necessarily need to be large in size, but it appears that it mostly occurrs on documents that I've imported data to (or that our customers have), using our own code, which takes care of an XML file and portions it out into templates.
    One strange thing I just noticed was that selecting "relink all" by alt-clicking the relink button in the Links palette, makes InDesign look for (presumalbly) previously imported XML files. How can that be?
    I never store any links to the imported XML - as far as I know. Where should I look for that kind of links?
    How and why would previously imported XML file paths be stored? I just import the XML into the structure, "deal with it", and deletes the node that it was imported to. (The data is left in a structure that I build up myself.)
    Does anyone know if there is a change related to any of the facts stated above, in InDesign CS5?
    I'll attach a screen shot of the links dialogue (above), when it "looks for" an XML file. Could this kind of "missing file" cause the abovementioned "slowness" every time switching to InDesign from another application?
    (InDesign documents that don't relate to XML doesn't make switching to InDesign slow - but it gets slow when such a document is loaded, even under a tab that is not in focus.)
    Best regards,
    Andreas

    I've uploaded a video to demonstrate that InDesign sometimes can keep references to links:
    http://www.youtube.com/watch?v=OoQOSIlfYl4
    It's obvious that there are thousands of "orphans" in the documents. All XML files ever imported are kept in some way... The links (or the names of them) are obviously not removed from the document when deleting the Element in the XML Structure. Since the communication of the code with a database is built around XML import, the number of imported files is very large.
    Can these orphaned link references somehow be removed? When manually checking for missing files, InDesign loops though all of the XML files as seen in the YouTube video above, but ends up saying that there are no missing files. The next time I do the same check, all links are looped through again.
    Perhaps we should "link to file", using .xmlImportPreferences.createLinkToXML = true
    This propery has not been explicitly set, and therfore = false. But is there any way to get rid of all the old link names that's inside the document somehow?
    CS4 does the same thing, but there is "no 2 second lag time" switching from another application to InDesign CS4 with this kind of document open.

  • CS5 Extension Builder and Indesign Server ?

    Hello,
    Is it possible to write an extension with CS5 Extension Builder for Indesign Server? It works fine with Indesign Desktop for me, but I'm ot sure for the Server version. Spend time to search on the web, without results.Just found this note in "indesign_cs5_server_scripting_guide.pdf" : You can use the  ExtendScript Toolkit to create JavaScript scripts explicitly for InDesign  Server, or you can use the Creative Suite Extension Builder (CS Extension  Builder) to develop CS extensions in ActionScript. CS extensions are  Flash-based (SWF) and can potentially work in a variety of Creative Suite  applications.
    Many thanks in advance,
    David

    Hello,
    Thanks a lot for the answer. This is not good news for us, but again, thanks for the answer.
    In few words, we are a leading French software editor (www.perigee.fr). Our software is a database that works with Indesign (using a C++ plugin), and manage pictures, text blocs, tables from PIM & DAM mgt.
    We are working on a brand new software suite that will be based on both Indesign and Indesign Server. We intend to develop the Indesign UI in ActionScript and CS5 Extension Builder.
    On the model side, we need something that works as well on both platforms. We tested several solutions (C++, Javascript) so far but we came to the conclusion that it would be ideal to use ActionScript.
    If there is no solution for AS and Indesign Server, we'll have to mix four programming languages in our solution (Java, C++, ActionScript and some JavaScript). Alternatively we could delay part of our project depending on the availability of AS on Indesign Server.
    We really like ActionScript and CS5 Extension Builder, and hopefully a solution to stay on our preferred languages: ActionScript and Java.
    We also explored the full Java/Corba option but it is not supported on the non-server side. And, again, we believe that ActionScript is the best solution.
    I hope our problem is clearer now.
    Do you see anything we may have missed?
    Thanks in advance for your answer!
    David

  • Sechs-Ecken-Objekt mit InDesign CS3-Script / JavaScript ???

    Hallo.
    Können Sie mir evtl.  helfen? Siehe Bild im Anhang.
    Wie kann ich dieses Sechs-Ecken-Objekt (Kontur 1 Pkt nach innen) mit Indesign-Script erstellen ? (InDesign CS3-Script / JavaScript)
    myPolySCHATTEN = myDocument.pages.item(0).polygons.add();   ???
    oder mit
    myPath = myDocument.paths.item(0).add();                                  ???
    Oder... ????
    Freundliche Grüße,
    AndreasRoe aus Germany

    Piece of cake.
    You can either create a default Rectangle or Polygon, and add and move the points around, or -- my preferred way -- add a GraphicLine and add the other points to that path, until you are nearly done. Then set the path type to "Closed", and you are really done.
    For starters, let's create a regular rectangle the hard way:
    var hoehe = 10;
    var breite = 20;
    newrect = app.activeDocument.graphicLines.add ();
    newrect.paths[0].pathPoints[0].anchor = [0,0];
    newrect.paths[0].pathPoints[1].anchor = [0, hoehe];
    newrect.paths[0].pathPoints.add({anchor:[breite,hoehe]});
    newrect.paths[0].pathPoints.add({anchor:[breite,0]});
    newrect.paths[0].pathType = PathType.CLOSED_PATH;
    Run this and experiment with breite / höhe.
    If you look at your drawing, you can see you need an inset value for the chopped off corners. You can also see where to add the new points, when you start counting at top left. That results in this -- notice how breite / höhe are adjusted one by one:
    var hoehe = 50;
    var breite = 100;
    var inset = 4;
    newrect = app.activeDocument.graphicLines.add ();
    newrect.paths[0].pathPoints[0].anchor = [0,0];
    newrect.paths[0].pathPoints[1].anchor = [0, hoehe - inset];
    newrect.paths[0].pathPoints.add({anchor:[inset,hoehe]});
    newrect.paths[0].pathPoints.add({anchor:[breite,hoehe]});
    newrect.paths[0].pathPoints.add({anchor:[breite,inset]});
    newrect.paths[0].pathPoints.add({anchor:[breite-inset,0]});
    newrect.paths[0].pathType = PathType.CLOSED_PATH;

  • I created a file in Photoshop CS5 (a photo) and another in Illustrator CS5 (a graph) to place in my InDesign CS5 brochure. When the Photoshop and Illustrator files are placed in InDesign, they look blurry - whether viewed in InDesign, printed, or saved as

    I created a file in Photoshop CS5 (a photo) and another in Illustrator CS5 (a graph) to place in my InDesign CS5 brochure. When the Photoshop and Illustrator files are placed in InDesign, they look blurry - whether viewed in InDesign, printed, or saved as a PDF. Can anyone give me some tips on how to fix this? Thanks!

    Ask in the program forums
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • Adobe Illustrator and InDesign CS5 crash when trying to place images. Happens around 5+ times a day.

    Hi there
    This Mac is quite new and was originally a migration (using Migration Assistant) from an older Mac.
    Illustrator and InDesign in CS5 were both crashing often and most of the time it's when placing an image (in either application) – it doesn't crash each time I try to place an image, but 90% of the crashes are when placing an image.
    We tried lots of things, like cleaning out the fonts, clearing font caches etc. After several months of that, we decided to wipe the Mac clean and start from scratch. It has been reformatted with a clean install of the OS and only minimal additional software added. Although quite a few fonts have been reinstalled, they all validate in Font Book.
    One other thing of note is that the Adobe Updater fails to complete an update and so we have had to update each application manually from the Adobe website.
    I would be so grateful someone could help shed some light on what is going on. Here's an EtreCheck report. Can also provide crash reports from the Console if useful.
    Thanks!
    EtreCheck version: 2.0.6 (91)
    Report generated 28 October 2014 13:33:49 GMT
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2013) (Verified)
        iMac - model: iMac14,1
        1 2.7 GHz Intel Core i5 CPU: 4-core
        8 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        Intel Iris Pro -
            S22D300 spdisplays_1080p
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.9.5 (13F34) - Uptime: one day 4:4:52
    Disk Information: ℹ️
        APPLE HDD ST1000LM024 disk0 : (1 TB)
        S.M.A.R.T. Status: Verified
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) /  [Startup]: 999.35 GB (848.81 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        EPSON EPSON Scanner
        Apple Inc. MacBook Air SuperDrive
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [loaded]    com.adobe.CS5ServiceManager.plist Support
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist Support
        [invalid?]    com.adobe.SwitchBoard.plist Support
        [running]    com.backblaze.bzserv.plist Support
        [loaded]    com.microsoft.office.licensing.helper.plist Support
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist Support
        [loaded]    com.adobe.ARM.[...].plist Support
        [running]    com.backblaze.bzbmenu.plist Support
        [not loaded]    com.spotify.webhelper.plist Support
    User Login Items: ℹ️
        iTunesHelper    Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        MagicPrefs 2 (48)    Application (/Users/[redacted]/.Trash/MagicPrefs 2 (48).app)
        Spotify    Application (/Applications/Spotify.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
        QuickTime Plugin: Version: 7.7.3
        Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
        AdobePDFViewer: Version: 9.5.5 Support
        Default Browser: Version: 537 - SDK 10.9
        SharePointBrowserPlugin: Version: 14.4.4 - SDK 10.6 Support
        JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    3rd Party Preference Panes: ℹ️
        Backblaze Backup  Support
        Flash Player  Support
        Growl  Support
    Time Machine: ℹ️
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 999.35 GB Disk used: 150.53 GB
        Destinations:
            TimeMachine [Network]
            Total size: 599.66 GB
            Total number of backups: 52
            Oldest backup: 2014-07-03 13:25:07 +0000
            Last backup: 2014-10-28 12:28:22 +0000
            Size of backup disk: Adequate
                Backup size 599.66 GB > (Disk used 150.53 GB X 3)
    Top Processes by CPU: ℹ️
             2%    WindowServer
             1%    Adobe Photoshop CS5
             0%    bzfilelist
             0%    bzbmenu
             0%    fontd
    Top Processes by Memory: ℹ️
        1.31 GB    Adobe Photoshop CS5
        610 MB    Adobe InDesign CS5
        490 MB    firefox
        292 MB    Finder
        215 MB    WindowServer
    Virtual Memory Information: ℹ️
        90 MB    Free RAM
        3.19 GB    Active RAM
        3.28 GB    Inactive RAM
        996 MB    Wired RAM
        10.36 GB    Page-ins
        192 MB    Page-outs

    Thanks, I will do.
    I posted it here because this is happening on a clean drive/clean install and I have 10 other macs (including some of the same model) all running OS X 10.9.5/Adobe CS5 and not having this problem.

  • Adobe Illustrator and InDesign CS5 crash when trying to place images.

    Hi there
    My Mac is quite new and was originally a migration (using Migration Assistant) from an older Mac.
    Illustrator and InDesign in CS5 were both crashing often and most of the time it's when placing an image (in either application) – it doesn't crash each time I try to place an image, but 90% of the crashes are when placing an image.
    We tried lots of things, like cleaning out the fonts, clearing font caches etc. After several months of that, we decided to wipe the Mac clean and start from scratch. It has been reformatted with a clean install of the OS and only minimal additional software added. Although quite a few fonts have been reinstalled, they all validate in Font Book. I've also done a full Memtest which passed all the test.
    One other thing of note is that the Adobe Updater fails to complete an update and so we have had to update each application manually from the Adobe website.
    I would be so grateful someone could help shed some light on what is going on. Here's an EtreCheck report – couldn't post it on here for some reason, but I have it on a post in Apple Community Forums, here... https://discussions.apple.com/message/26970885?ac_cid=op123456. Can also provide crash reports from the Console if useful.
    Thanks in advance. Any ideas gratefully received – I've run out!
    ps. I have 10 colleagues with same OS version and CS5 (some even have the exact same model of Mac). They don't have this issue.

    Thanks, I will do.
    I posted it here because this is happening on a clean drive/clean install and I have 10 other macs (including some of the same model) all running OS X 10.9.5/Adobe CS5 and not having this problem.

  • Can i install Illustrator CC with Photoshop CS6 and Indesign CS5.5 or can i have some problems of compability? I use Windows 7. Thank u...

    Can i install Illustrator CC with Photoshop CS6 and Indesign CS5.5 or can i have some problems of compability? I use Windows 7. Thank u...

    Generally this should work, but of course there may be occasional compatibility issues across the different programs and their different versions.
    Mylenium

  • How to place a word document in a TextFrame with InDesign CS2 scripting (JavaScript)?

    I´m newbie with InDesign CS2 Scripting (JavaScript). I need some help to understand the way to place a Word document in an indesign template, using JavaScript(.jsx).
    Thank you for the help,
    Peter

    //PlaceTextFileInFrame.jsx
    //An InDesign CS3 JavaScript
    //Places a text file in a text frame.
    var myDocument = app.documents.add();
    //Set the measurement units to points.
    myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
    myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
    //Create a text frame.
    var myTextFrame = myDocument.pages.item(0).textFrames.add({geometricBounds:myGetBounds(myDocument, myDocument.pages.item(0))});
    //Place a text file in the text frame.
    //Parameters for TextFrame.place():
    //File as File object,
    //[ShowingOptions as Boolean = False]
    //You'll have to fill in your own file path.
    myTextFrame.place(File("/c/test.txt"));
    function myGetBounds(myDocument, myPage){
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight
    if(myPage.side == PageSideOptions.leftHand){
    var myX2 = myPage.marginPreferences.left;
    var myX1 = myPage.marginPreferences.right;
    else{
    var myX1 = myPage.marginPreferences.left;
    var myX2 = myPage.marginPreferences.right;
    var myY1 = myPage.marginPreferences.top;
    var myX2 = myPageWidth - myX2;
    var myY2 = myPageHeight - myPage.marginPreferences.bottom;
    return [myY1, myX1, myY2, myX2];

Maybe you are looking for