[AS][CS5] Multiple action folder scripts only 1 Indesign app

Hi,
With this post, I would like to ask a question.
If you use multiple action folder scripts that processes multiple files using only 1 Indesign application, can problems occure when multiple files are submitted at the same time?
How does applescript/indesign handles multiple use of the same application? Will an error be trown? Or do I have to build a check mechanisme to know if the app is "in use"?
Has the Indesign application a property "busy" or "In use"?
Kind regards
John

Hi Mark,
Thanks for your feedback.
If build a lock/unlock mechanisme in my folder action script to prevent simultaneous use of Indesign. In my script I write the current application state into a textfile.
John

Similar Messages

  • Names of objects for multiple actions in different slides

    I am trying to develope an interactive software guide which
    requires something like a panel to insert it in each slide. This
    panel contains precise instructions on how tu use the interface
    visible in the current slide.
    The problem is that sometimes the panel hides part of the
    interface. I would like to have a button somewhere in each slide so
    that the student can simply hide the panel when is obscuring
    something important. I don´t have any problem for preparing
    one panel for one slide using multiple actions for hiding or
    showing the panel, captions, buttons, etc. But the problem is that
    in each slide the similar objects have different names assigned
    automatically by Captivate. I found no way to assign same names in
    different slides so that afterwards, assigning multiple actions
    would be only a matter of copy and paste from slide to slide. I
    tried to think something with variables but I gave up.
    I am using Captivate 4 Trial. Somebody has a nice good idea?
    :)

    Hi,
    Inorder to give same name to the objects in different slides,
    there is a workaround. Immediately after opening a project, give
    the same name to the objects in different slides.
    Hope this solves your problem.
    thanks
    ravi

  • How to Undo Multiple Actions in ActionScript [CS5]

    I am wwriting an InDesign extension for CS5 using ActionScript. I want to be able to undo a group of actions as a sungle transaction. In JS, I would use doScript() for this purpose.
    How do I do it in ActionScript?
    TIA,
    mlavie

    Harbs,
    I read all the material on the subject (thanks for the reference), however I seem not to be able to pass parameters to the JavaScript (even primitive types), which is essential for what I want to do.
    In fact, the example from the JS Scripting Guide doesn't work:
    var myParameters:String = ["Hello from DoScript", "Your message here."];
    var myJavaScript:String = "alert(\"First argument: \" + arguments[0] + \"\\rSecond argument:\" + arguments[1]);";
    InDesign.app.doScript(myJavaScript, ScriptLanguage.javascript, myParameters);
    Any ideas?
    mlavie

  • Can i call multiple actions sequentially in a separate action/script?

    i execute multiple actions on a single file. usually these actions number more than 20. is there a way to automate invoking of these actions so that i run something only once and all smaller actions are applied sequentially and automatically on the same file?

    You can combine the commands in all of these Actions to a single Action,
    but you can't call them automatically one after another if they're separate.
    On Thu, Dec 11, 2014 at 10:22 AM, navpreet87 <[email protected]>

  • Need help with simple folder action or script

    I have created an export preset in Lightroom that exports images to a folder called "To Email" on my hard drive, and then automatically attaches those images to a new email in my email client (Mailplane).
    It's a great solution that allows me to send a photo via email with one click from Lightroom. However, I want to take it a step further by creating a folder action or script that automatically deletes the image after it is attached to the email. This will allow me to put the folder somewhere deeper in my file system without having to worry about cleaning it out all the time.
    Unfortunately, I have no experience with Automator or AppleScript. Can you help? Thanks.

    I think you need to rework elements of your workflow.
    For example, you say the export preset creates and sends the email.
    If this is the case, the the logical place to make your change would be to edit that preset action (I don't have Lightroom to know whether this is an option there or not).
    The problem with using a Folder Action is that the Folder Action will trigger when the file is dropped in the folder, but that will be before the email is generated or sent, so you run the risk of deleting the file before it's sent.
    So if you can't edit the export preset to do the deletion I would suggest decoupling the 'send an email' and 'delete file' elements from the Lightroom action - in other word change Lightroom to just export the file, and have a separate folder action that triggers when files are added to that folder. The folder action script can take care of generating the email and sending it out, knowing when the email is sent and therefore when it's safe to delete the file.
    WIthout seeing more of the current workflow it's not easy to be more specific.

  • File server 2008 R2 Multiple share folder , single user show only single folder , not show any other folder

    I've installed windows 2008 standard r2 server. 2. Configured a domain. 3. Joined 10 clients to the server. 4. Created shared folders on the sever restricting to users. (ex.USERNAME:system01 can access a shared folder:system01 only) 5. I need to give the
    below permissions only. Please let me know the permission combination. Read / write / modify - allow access Delete / cut and copy from server - deny access Basically elaborating  the current scenario. 1.Server has multiple shared folders where the users
    are asked to put in their data
    host name :system01 user logging in:system01 shared folder for the user in server:system01 so is for others also. 2.Example ,system01,system02,system03. Only user 'system01'
    will be able to access 'system01' shared folder so is others too. System01 show only single share folder at system 3.Basically to avoid all kind of confusion I have named host name of systems also the same way.

    Hi,
    When you grant users "read" permission, then copying is possible and if you grant users "modify" permissions, they can also have "cut" permissions. 
    The 'system01' share folder is created by user 'system01'? If so, you could grant "creator owner" permissions to configure users only can access their own folder.
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • [CS4/5][JS] Script causes InDesign to crash

    Hello,
    I'm having a bit of an issue with some InDesign scripting i'm working on, and wonder if anyone else has had the same issue.
    I have a script that uses app.dialog to prompt for user information.  It then takes the result of that dialog, and uses it in the script.  Pretty standard so far, and if i run this from the scripts panel, or from ESTK, it works fine.  If I set it up as a Script Menu Action, when I run the script via the menu, it executes, then crashes InDesign.
    I have tried this with multiple dialog's, and each time a dialog is called from a SMA, InDesign crashes.  The following code is fairly pointless, but will cause InDesign to crash when the SMA is run.
    //failTest.jsx
    //Test script will cause InDesign to crash when the SMA is invoked
    //Daniel Cole
    //Wed Jun 09 2010 13:26:47 GMT-0400
    #targetengine "session"
    //set up the SMA and eventListener
    var saTest = app.scriptMenuActions.add("Test SMA");
    var elTest = saTest.eventListeners.add("onInvoke", function()
              alert(testFunc());
    //Check for the menu, and create it if it doesn't exist
    try{
        var menuTest = app.menus.item("$ID/Main").submenus.item("Test");
        menuTest.title;
    catch (e){
        var menuTest = app.menus.item("$ID/Main").submenus.add("Test");
    menuTest.menuItems.add(saTest)
    //test function
    //creates a dialog box with a text edit box
    //returns the content of the text edit box
    function testFunc(){
         testDialog = app.dialogs.add({name:"Enter Text:", canCancel:true});
              with(testDialog){
                   with(dialogColumns.add()){
                        var getTextField = textEditboxes.add({editContents: "Test Text", minWidth:250});
         testResult = testDialog.show()
         if(testResult == true){
              var testText = getTextField.editContents;
              testDialog.destroy();
              return testText;
         else{
              return "No Text Entered";
              myFileDialog.destroy();
    I've tried this on CS4 and CS5, on multiple installs, and it crashes every time.  Can anyone else replicate this?  Is this a known issue?  Is there any way to work around it?
    thanks,
    Daniel Cole
    Electronic Prepress and Automation Specialist
    Disc Makers

    I don't know exactly why your code crashes ID in some versions, but there are potential issues in using:
    - unneeded global variables in a function scope,
    - the with statement,
    - the "var menuTest" redeclaration in the try...catch,
    - a generic #targetengine "session" directive,
    - menu and menuAction creation procedure without preventing object duplication (beware of application/session persistence),
    - the myFileDialog.destroy() instruction when myFileDialog is unknown (in your original code).
    In order to isolate the "destroy" bug, I suggest you separate the process from the menu installer (see http://bit.ly/cIsZuG for more detail about menu management).
    Here is a possible structure:
    #targetengine "DanielColeTest"
    // YOUR PROCESS
    // Use clean local vars within the func
    var testFunc = function()
         var dlg = app.dialogs.add({
              name:"Enter Text:",
              canCancel:true
         var textField = dlg.dialogColumns.add().textEditboxes.add({
              editContents: "Test Text",
              minWidth:250
         var r = (dlg.show())?
              textField.editContents:
              "No Text Entered - Marc";
         dlg.destroy();
         return r;
    var testInvokeHandler = function(/*onInvoke*/)
         alert( testFunc() );
    // YOUR MENU INSTALLER
    // Encapsulate the routine to avoid duplication issues
    // - a SMA is session-persistent
    // - a menu is application-persistent
    var testInstaller = testInstaller||(function()
         var smaTitle = "Test SMA",
              mnuTitle = "Test",
              subs = app.menus.item("$ID/Main").submenus,
              sma, mnu;
         // 1. Create the script menu action
         sma = app.scriptMenuActions.add(smaTitle);
         // 2. Attach the onInvoke event handler
         sma.eventListeners.add("onInvoke",testInvokeHandler);
         // 3. Create and/or target the menu
         mnu = subs.item(mnuTitle);
         if( !mnu.isValid ) mnu = subs.add(mnuTitle);
         // 4. Create the menu item
         mnu.menuItems.add(sma);
         return true;
    Hope it could help.
    Regards,
    Marc

  • Cs5 / wrong presets folder , how can i fix it?

    hi
    on my laptop i have photoshop cs5 64bit , and i have a problem with preset folder
    when i try to save black and white adjustament layer , photoshop points to a wrong folder
    it points on my data partition
    how can i fix it?
    maybe a solution that is not a reset of all my preferences
    thanks

    Can you not just navigate to the correct preset folder in the save dialog?
    Photoshop has a habit of remembering folders you navigate to.  So the next time you save things like actions it saves the save path location.  The next time you save an action Photoshop will default to the location but you can navigate back to Photoshop Preset Actions folder and save there.
    I never save My actions into Adobe created folders.  Most of the stuff I add to Photoshop I save in my own folders not Adobe created folders.   Some things to I do let Photoshop save into Adobe default locations like my users preferences  additions like workspaces.  Adobe migration works well migrating those presets well.
    Thing l Photoshop like Scripts and Plug-in I maintain in my own file system trees and link to these from Adobe folders.  All versions of Photoshop share my files system threes.  The Are a few exceptions some third party add-ons are coded in such a way the will only work when installed into Adobe default locations for Plug-in and scripts.  I seem to need to keep more and more versions of Photoshop installed these days.  New versions get new features added and old features removed. You never know what will be removed these days.

  • Opening RAW files as part of action or script

    I wrote an action that I want to use on my raw files which opens it with the already applied settings (which may be different for each photo in the batch). The action applies several adjustment layers and my watermark to the photo that are part of my standard workflow. But when I run it as a batch I have to sit at the computer and hit open file every time it opens the file in Camera RAW. My goal is to have a script or action which I can run and then leave the computer to do something else, and come back and only have to do the basic tweaks on each photo individually. I already process multiple files in Camera RAW by syncronising the settings for similar exposures and using presets, so I don't need the action to change anything in camera raw, and I don't want to open all the files at once (could be 30 - 50 files in a session) when I make my edits in RAW because I am worried it would crash my computer, which is why I am trying out the batch processing route. Any suggestions on the best approach for this? I am new to photoshop actions and scripting but I do have some programming experience in other software. Thanks for the help!

    Sounds to me like all you need to do is change either you open step in the action or your batch options. I batch process hundreds of raw file in one batch without seeing the Camera Raw dialog during the batch.

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

  • PP CS5, importing mp4's I only get 1 audio channel instead of all 4...?

    PC,
    PP CS5, importing mp4's I only get 1 audio channel instead of all 4...? I put the clips in Vegas & all 4 channels appear. What can I do? Going insane!!!
    Steve

    It's pretty simple... when you know how
    Get ffmbc - FFMedia Broadcast .   This is a customized build of FFmpeg that is more geared toward   broadcast formats and applications. The latest "official" release (0.5)   will work.
    Open the archive and find the "ffmbc.exe" file in  the "bin" folder. Drop it into the folder with the MP4s--or if you know  how to set up a custom path, you could do that too.
    Create a new  text file called something like "mp42mxf-4mono.bat" making sure that you can  see file extensions; you need to have the .BAT extension. Make this file  in the same folder as the MP4s and FFmbc.
    Paste the following into the batch file:@ECHO OFF
    for %%a in (*.mp4) do ffmbc -i "%%a" -vcodec copy -acodec pcm_s16le -f mxf -y "%%~na".mxf -acodec pcm_s16le -newaudio -acodec pcm_s16le -newaudio -acodec pcm_s16le -newaudio
    Save it--again making sure it has a .BAT  extension--and then double-click it to run it. It will rewrap all of the  MP4s as MXF files that will import into Premiere. It will also retain the original four mono tracks as four mono tracks in the destination MXF.
    That's all there is to it. Save that script, and you can recycle it whenever you get a batch of these types of problematic files in. Note that it's a completely lossless rewrapping, and should only take a few moments (or minutes, if you have a lot of footage, I suppose). Let me know how that goes.

  • (InDesign CS5)I have created hundreds of InDesign documents incorporating images stored on an external USB connected drive. I did a manual back-up to another drive at regular intervals but far from ideal. I now have a network drive which is properly backe

    (InDesign CS5) I have created hundreds of InDesign documents incorporating images stored on an external USB connected drive. I did a manual back-up to another drive at regular intervals but far from ideal.
    I now have a network drive which is properly backed-up. I have copied all of the images and folder structure from the USB connected drive to this new drive.
    My question is how I get all of the links in my indd files to point to the new drive. I am aware how to do it one file at a time, but is there a way of doing the same thing over many files/folders at a time?

    It depends on how you organize your work. If you have one folder for images for a document, relinking one image should alert you that other missing images are in the same folder, but this assumes that images are missing. If the links window sees a clear path to the original location of the images, they aren't missing, so that won't work.
    Another thing to try is to select all of the images in the links window and go to the fly-out menu and select Relink To Folder (navigate to the new folder, and you don't even have to select any images by name).
    If you store your images in many different folders for the same document, you might want to either package the document to copy all of the images into one folder (you can specify to only copy images if you like) or use the fly-out in the links window (Utilities>Copy Links To…) and select or create a new images folder.

  • Scripting Adobe inDesign CS?

    Trying to sort out a couple of scripts to speed up my workflow in Adobe CS.
    I use a lot of great Photoshop droplets and a couple of Illustrator actions (very unpredictable) and would like to automate a few things in inDesign.
    Is there any way to record scripts for inDesign as is possible for Finder operations?
    Anyone know of a good resource online for this. Preferably prewritten, editable scripts.
    I would also like to ultimately set up hot folders that will run a series of processes when a file is added. i.e., Append file name, trigger a Photoshop action on file and then move to a print server.
    Folder actions from Automator/Script editor are promising but a bit unpredictable. For example if one moves a Folder that has a designated action to a new location it reapplies the folder action to all files contained as path to that file has changed.
    Any help appreciated, I don't have the time to trawl through pages of tutorials!

    You can access the InDesign Server COM object from Visual Basic in one of the following ways:
    * CreateObject This points to a running instance of InDesign Server if it can find one; otherwise, it instantiates an instance of InDesign Server and points to the new instance. Example:
    Dim idsApp As Object
    idsApp = CreateObject("InDesignServer.Application.CS3")
    * GetObject("name_of_configuration") This will attempt to point to the instance of InDesign Server that was started up with the corresponding "-configuration" param. If this instance does not
    exist, an exception is thrown with the error: Cannot create ActiveX component. Example:
    Dim idsApp As Object
    idsApp = GetObject("hi")
    * GetObject("configuration_portNum") This will try to point to the instance of InDesign Server that was started up with the corresponding -port param. If this instance does not exist, an exception is thrown with the error: Cannot create ActiveX component. Example:
    Dim idsApp As Object
    idsApp = GetObject("configuration_12345")
    NOTE:
    InDesign CS3 Server with MA updates applied is required in order to use GetObject() to target a specific instance of IDS. Also, you must run your VB application on the local system. IDS does not support targeting a specific instance of InDesign Server when running under IIS. Under IIS, you'll have to stick with the CreateObject() method.

  • Photoshop Actions folder

    Hi, I have CS2 version and there was a "photoshop actions"folder. I am trying the trial CS5 extended with intent to purchase. I only see an "actions" folder. Can I just copy the PS actions folder from CS2 and add to CS5 as a separate folder?
    Thanks for your response

    If your copying existing photoshop actions from cs2 to cs5 and it's already loaded into your actions pallette, the easiest thing to do is save them to a folder on your desktop.
    To do that open CS2 and click the little arrow icon with three lines in your actions pallette, then go to Save Actions...
    Save them to your desktop in a folder
    Then open CS5 and follow the diagram below and go to Load Actions...and load the files you saved.
    Once you have the action files, it's pretty easy to transfer from one version of Photoshop to another using the steps above. Good luck!

  • Folder script to print folder content automator

    Hi,
    I had a folder script that printed any document added to a folder and when printed, then it deleted the document.  That script help me to print from an OS 9 emulator  (SheepShaver) through OS X.
    For I don't know the reason, the folder script does not work anymore.  It could be Yosemite or my new iMac upgrade.  Find out ?  And Apple Script is far away in my mind ... so I am not really sure what is going wrong.
    I would like to have the script to print from any folder it is assigned to, instead of applying to only one folder.  Can you help ?   Here is the actual folder script:
    property myPrinter : "HP_Officejet_8500" -- Le nom exact de l'imprimante est obtenu en faisant «lpstat -p» dans terminal.
    property filesFolderName : "Nous/Documents/SheepShaver/Données/En impression" -- Déterminer le chemin du dossier contenant les fichiers à imprimer.
    property fileStamp : ""
    property theFilePath : ""
    on adding folder items to thisFolder after receiving theseItems
              -- Définir le chemin du dossier contenant les fichiers à imprimer.
              set filesFolderPath to POSIX path of (path to users folder) & filesFolderName & "/"
              -- Pour chaque fichier dans le dossier ...
              repeat with i in theseItems
                       -- ... définir les informations du fichier; ...
                       set {name:fileName, name extension:fileExt} to info for i
                       -- ... définir l'estampe du fichier (date et l'heure), ...
                       --set fileStamp to do shell script "/bin/date +'('%d-%m-%y' '%HH%MM%S')'"
                       -- ... définir le chemin du fichier, ...
                       set theFilePath to quoted form of (filesFolderPath & fileName)
                       -- ... et enfin, l'imprimer sur l'imprimante choisie.
                       do shell script "usr/bin/lpr -P " & myPrinter & space & theFilePath
                       do shell script "/bin/sleep 10"
                       -- ... détruire le fichier imprimé.
                       do shell script "/bin/rm " & theFilePath
                       get theFilePath
              end repeat
    end adding folder items to
    Thanks in advance.
    Robert Lespérance

    You would think this would work, remember universal access - enable access must be on.
    tell application "System Events"
    tell application "Finder" to activate
    tell process "Finder"
    keystroke "a" using command down
    keystroke left using command down & option down
    end tell
    end tell
    The Select All works, but the collapse all doesn't
    CE Quickkey will do it with ease but that $80us a machine
    http://www.cesoft.com/products/qkx.html
    you could try the OS X scripting addition but it shareware and want money too and I don't know if it will work
    http://osaxen.com/files/extrasuites1.1.html
    Must be a free OS X scripting addition (osaxen) that does keystokes
    good luck.

Maybe you are looking for