Listbox containg open files in javascript

Can anybody point me to a sample-script that shows how to create a listbox of the open documents?
Im looking for something similar to how the Script »Load Files into Stack« (which is installed with Photoshop I think) does it, but without the need for the Folder-selection-option.
I tried looking up that Scripts structure, but I dont get it ... because it utilizes libraries and stuff thats way out of my understanding of JavaScript I guess.
I know its the lazy thing to do, asking You. But that stuff really proves difficult to me ...

Sorry about that, this might be closer.
Select the name and press clear.
var dlg =
"dialog{text:'Script Interface',bounds:[100,100,350,350],"+
"panel0:Panel{bounds:[10,10,240,240] , text:'' ,properties:{borderStyle:'etched',su1PanelCoordinates:true},"+
"docs:ListBox{bounds:[10,40,220,190] , properties:{multiselect:false}},"+
"statictext0:StaticText{bounds:[50,10,160,27] , text:'Opened Documents' ,properties:{scrolling:undefined,multiline:undefined}},"+
"clear:Button{bounds:[10,200,100,220] , text:'Clear' }"+
"close:Button{bounds:[130,200,220,220] , text:'Close' }}}";
var win = new Window(dlg,"Open Docs");
selection=0;
win.center();
for(var a = 0;a<documents.length;a++){
win.panel0.docs.add("item",documents[a].name);
win.panel0.docs.selection=0;
win.panel0.docs.onChange = function() {
selection = parseInt(this.selection);
win.panel0.clear.onClick = function() {
win.panel0.docs.remove(selection);
win.panel0.close.onClick = function() {
this.parent.parent.close(1);
win.show();

Similar Messages

  • Open file with javascript

    Hello all ,
    I used the package in the Denes Kubicek demo page: http://htmldb.oracle.com/pls/otn/f?p=31517:118:651492651950833::NO, to Export report data into XML file and it works fine.
    I'm now using it in a Shared process being called from Javascript in the page, my problem is that in this way i can't download a file.
    Javascript
    <script type="text/javascript">
    function carregar_report_id()
    var temp_ir_id = document.getElementById('apexir_REPORT_ID').value;
    var temp_page_id = document.getElementById('pFlowStepId').value;
    var ajaxRequest = new htmldb_Get(null,$v('pFlowId'),'APPLICATION_PROCESS=CARREGAR_REPORT_ID',0);
    ajaxRequest.add('GLOBAL_IR_ID',temp_ir_id);
    ajaxRequest.add('GLOBAL_PAGE_ID',temp_page_id);
    var ajaxResult = ajaxRequest.get();
    if(ajaxResult)
              //document.getElementById('teste_listagem').innerHTML = 'update_selected_template:' + ajaxResult + '
              //alert("XML criado: " + ajaxResult);     
              document.write(ajaxResult);
              //document.getElementById('xml_div').innerHTML = ajaxResult;          
    else
    alert('Erro de Aplicação, #create_ir_xml# contactar administrador!');
    ajaxRequest = null;
    </script>
    Shared Process
    DECLARE
    id_region NUMBER;
    BEGIN
    select region_id into id_region from apex_application_page_regions where APPLICATION_ID= :APP_ID AND PAGE_ID= :GLOBAL_PAGE_ID AND SOURCE_TYPE='Interactive Report';
    export_xml_pkg.print_report (id_region,'RelatorioIR_'||:GLOBAL_PAGE_ID,:GLOBAL_PAGE_ID);
    END;
    How can i open the xml file in a new tab with javascript??
    Regards Pedro.

    As a short term workaround, you could package it with Firefox on the USB flash drive to work around the tendency of the installed Firefox to look to its own profile folder.
    Possible discussion forums:
    (1) Add-ons - https://forums.mozilla.org/addons/
    Not sure if they talk about webapps or just the more conventional kinds of add-ons.
    (2) Mozillazine - http://forums.mozillazine.org/
    Again, not sure there is a board for this yet.

  • Opening file from web site in JavaScript

    I have some JavaScript I've written (Windows PC platform with PS CS3) that opens a legal notice (jpg file) which runs from the File | Scripts menu and places the legal notice jpg on the bottom of the currently open Photoshop document. It opens and works well when the jpg file is on the local drive (c:) or network (//MachineName) but won't open if I try to open it from a web site (see example below). I'm getting "Error 12233: Expected a reference to an existing File/Folder". Is there any work around for this?
    This works...
    // Open legal notice document
    var legalDoc = open(File("C:/Droke/EpLegalNotice/EpLegalNotice_US_Black.jpg"))
    This doesn't work (and I know the file is there because I can paste the following URL into the browser and it displays the image)...
    // Open legal notice document
    var legalDoc = open(File("http://www.somesite.com/EpLegalNotice/EpLegalNotice_US_Black.jpg"))

    tobycraftse wrote:
    > Is there some site I cannot rip the swf file?
    >
    > most of the commercial site with flash, when I look into
    HTML source code,
    > they don't include link to swf file directly.
    >
    > some site include javascript like -
    AC_RunActiveContent.js
    >
    > any way to rip those flash swf files?
    >
    There must be something else in these sites, and yet, you can
    get SWF from any site,
    even the most tricky one but it require skills which
    obviously you don't have because
    if you did you would know that AC_RunActiveContent.js does
    not hide SWF files.
    It's purposes is for something totally different.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Tif files not opening via Acrobat Javascript openDoc() method

    Hi,
    I am trying to open a .tif file via Acrobat Javascript using the following code snippet which I have in config.js file in Acrobat Javascripts folder:
    trustedOpenDoc = app.trustedFunction( function (File)
    app.beginPriv();
      var doc = app.openDoc({
          cPath: File,
          bUseConv: true
    app.endPriv();
    return doc;
    Problem is that openDoc opens up all other images but it has problem with multi page tif files, I mean it does not open some tif files. I have directly tried to open files in Acrobat professional 8/9 from File --> Open but got same result.
    The same happens also with some heavy (above 1 MB) .bmp files but with .bmp files this behaviour is not so frequent, on the other hand .tif files always give the same result.
    Any PDF Gladiator who can save my project deadline!
    Look please; I have this problem for the last 12 days and miserably my project is getting late becoz of this.
    Thanks in advance for the resolution/suggestion.

    You guys are not getting my point.
    I am using Adobe Acrobat Professional 8/9 for creating a PDF that picks up text files and image (Jpg, bmp, tif) files from a network shared folder and inserts them into an empty Template PDF file by making use of Acrobat events through Javascript.
    This all works fine as long I dont include any Tif file and PDF is created successfully.
    Now all other file types including text files, jpgs, gif are opening up but problem is with .tif files.
    You can check this by directly opening image files in Adobe Acrobat Profesional 8/9 from File --> Open menu option.
    Other images will open up but most Tif files won't open in it. Such tif files also not open in "Winodws Picture and Fax Viewer" software but will open in softwares like "Imaging Professional" , "IrfanView" etc, which I think use some special codec for it.
    If you know of any Acrobat plugin that can be incorporated in Acrobat professional and convert these tif files to PDF on the fly, would be of great help or have some any other suggestion you feel is right.
    Thanks

  • Opening file in a new tab/window

    Hi,
    I have a form (HTML added through a widget) and a number of images on one page. I want each image to be a link to a file, where the images will be seen full quality. however, doing this takes visitors away from the page instead of opening a new tab/window - then clicking back means that the form data is lost - i.e. tickboxes are no longer ticked, etc.
    I cannot use the photo viewing page included in iWeb, as the pictures will then overlap with my form because the enlarged images are loaded on the same page.
    I hope this makes sense, and if anyone could help with opening files in new tab/window it would be great, or a way of opening a photo viewing platform in a separate tab/window directly from a click of one of the photos. I have seen other sites - http://www.aroundthebusch.com/Folio/London%20to%20Istanbul.html
    (this is not mine) where the photo viewing "platform" is IDEAL. I would love something just like this if someone could advise.
    i do not want the photos to link to an external page (which can be opened in a new window) as it would mean me creating separate pages for each picture, and linking them all... no way!
    Also, it would obviously be preferable to be quick to set up, but also to change. I would need to have multiple pages of many photos, each with the viewing facilities so it could not take a long time to set up. I may also need to add/delete some photos, so if all the linking work was done automatically it would be fantastic.
    Any help much appreciated,
    Thanks in advance, James

    If you open it in javascript and specify a height/width or location it should open in a new window.
    window.open("http://www.adobe.com", "_blank", "toolbar=yes, scrollbars=yes, resizable=yes, top=500, left=500, width=400, height=400");

  • How to fix file when it says, "Cannot open file " ". Adobe Indesign does not support the file format, a plug-in that supports the file may be missing, or file may be open in another application." It worked one second, I saved and closed the file, then tri

    How to fix file when it says, "Cannot open file " ". Adobe Indesign does not support the file format, a plug-in that supports the file may be missing, or file may be open in another application." It worked one second, I saved and closed the file, then tried to reopen and now it won't work. I am using Adobe InDesign CS5. It is the only version on my comp. I have tried opening on another comp & copying the file – same error comes up. PLEASE HELP

    First check the version of the document with Jongware's script "Identify.jsx" (ExtendScript/JavaScript).
    You can find it here:
    [Ann] Identify Your InDesign File
    If it is CS 5.5 or above, you need someone to open it in the version the script says and export an IDML representation from that. Another way would be to install a 30days version of CS6 or above (CC) and do it yourself.
    In regards of the script showing a result for InDesign files higher than CS6:
    CS7 = CC v9
    CS8 = CC v10 = CC-2014 or CC2014.1
    Uwe

  • CS5 InDesign crashing when opening files

    I have an issue with opening files in CS5. I wok in a school and we produce a quarterly magazine which is designed with Adobe InDesign. When trying to produce the current edition of the magazine we found that some of the files could not be opened as they caused CS5 to crash (the last dialogue box before the crash says 'converting data'). The same files are able to be opened using InDesign CS3. I tried opening the files in CS3 and then exporting as an .inx file but CS3 crashes trying to do this.
    All of this has been done on a clean out of the box installation of: Mac OS X 10.6.5 with InDesign 7.0.3.
    The issue has been reproduced with 7.0.1. and 7.0.2 using 10.5.8 and it has been seen on a MacBook and an iMac.
    I'm am kind of out ideas at the moment - I've tried the various different things like starting Mac OS X with safe boot, removing caches and so on. What perplexes me is that issue happens when I format a machine, install 10.6 or 10.5 from the disc (not extras, a straight minimal install) and then /only/ install CS5. The attempt to export using CS3 was also done on a clean machine prepared in the same fashion.
    Any suggestions to solve the issue would be much appreciated as we are unable to access about three years of back issues.
    Crash data for CS5 open crash:
    Process:         Adobe InDesign CS5 [709]
    Path:            /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Adobe InDesign CS5
    Identifier:      com.adobe.InDesign
    Version:         7.0.3.535 (7030)
    Code Type:       X86 (Native)
    Parent Process:  launchd [139]
    Date/Time:       2010-12-14 10:31:49.704 +0000
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Interval Since Last Report:          578445 sec
    Crashes Since Last Report:           56
    Per-App Interval Since Last Report:  3171 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      800E1513-3AAA-4004-9B1D-FF56707EBACA
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                           0xa0bc76f0 _XHNDL_trapback_instruction + 0
    1   com.adobe.InDesign.Text       0x1e54fec7 GetPlugIn + 449559
    2   ...adobe.InDesign.AppFramework 0x1a1424cf GetPlugIn + 54943
    3   ...adobe.InDesign.AppFramework 0x1a142667 GetPlugIn + 55351
    4   ....InDesign.Generic Page Item 0x1fef3b9b GetPlugIn + 582523
    5   ...adobe.InDesign.AppFramework 0x1a1424cf GetPlugIn + 54943
    6   ...adobe.InDesign.AppFramework 0x1a142d59 GetPlugIn + 57129
    7   ...adobe.InDesign.AppFramework 0x1a142c4d GetPlugIn + 56861
    8   ...InDesign.Document Framework 0x1c1e3af0 0x1c187000 + 379632
    9   ...InDesign.Document Framework 0x1c1e9930 0x1c187000 + 403760
    10  ...InDesign.Document Framework 0x1c19500c 0x1c187000 + 57356
    11  ...InDesign.Document Framework 0x1c194f0f 0x1c187000 + 57103
    12  ...e.InDesign.Document Actions 0x21d1d7c6 0x21d1b000 + 10182
    13  PublicLib.dylib               0x01164482 Command::DoImmediate(short) + 34
    14  com.adobe.InDesign.Utilities  0x1b3ebaa3 0x1b3ea000 + 6819
    15  com.adobe.InDesign.Utilities  0x1b3ebccc 0x1b3ea000 + 7372
    16  ...adobe.InDesign.AppFramework 0x1a12a788 0x1a110000 + 108424
    17  PublicLib.dylib               0x011655db CmdUtils::ProcessCommand(ICommand*) + 59
    18  ...e.InDesign.Document Actions 0x21d23519 GetPlugIn + 2185
    19  com.adobe.InDesign.Open Place 0x201d117c GetPlugIn + 29244
    20  com.adobe.InDesign.Open Place 0x201d2406 GetPlugIn + 33990
    21  com.adobe.InDesign.Open Place 0x201c9845 0x201c8000 + 6213
    22  com.adobe.InDesign.Open Place 0x201ca86b GetPlugIn + 2347
    23  PublicLib.dylib               0x01164482 Command::DoImmediate(short) + 34
    24  com.adobe.InDesign.Utilities  0x1b3ebaa3 0x1b3ea000 + 6819
    25  com.adobe.InDesign.Utilities  0x1b3ebccc 0x1b3ea000 + 7372
    26  ...adobe.InDesign.AppFramework 0x1a12a788 0x1a110000 + 108424
    27  PublicLib.dylib               0x011655db CmdUtils::ProcessCommand(ICommand*) + 59
    28  ...e.InDesign.Import Export UI 0x1ad2e9db GetPlugIn + 9243
    29  PublicLib.dylib               0x01164482 Command::DoImmediate(short) + 34
    30  com.adobe.InDesign.Utilities  0x1b3ebaa3 0x1b3ea000 + 6819
    31  com.adobe.InDesign.Utilities  0x1b3ebccc 0x1b3ea000 + 7372
    32  ...adobe.InDesign.AppFramework 0x1a12a788 0x1a110000 + 108424
    33  PublicLib.dylib               0x011655db CmdUtils::ProcessCommand(ICommand*) + 59
    34  ...e.InDesign.Document Actions 0x21d31158 GetPlugIn + 58568
    35  ...InDesign.Document Framework 0x1c2c0f44 GetPlugIn + 525652
    36  ...adobe.InDesign.AppFramework 0x1a1786d4 GetPlugIn + 276644
    37  ...adobe.InDesign.AppFramework 0x1a17c37d GetPlugIn + 292173
    38  ...adobe.InDesign.AppFramework 0x1a17dfd7 GetPlugIn + 299431
    39  PublicLib.dylib               0x0128d662 CScriptProvider::HandleMethodOnObjects(IDType<ScriptID_tag>, IScriptRequestData*, adobe::version_1::vector<InterfacePtr<IScript>, adobe::version_1::capture_allocator<InterfacePtr<IScript> > > const&) + 706
    40  com.adobe.InDesign.Scripting  0x1f4c27b4 GetPlugIn + 176628
    41  com.adobe.InDesign.Scripting  0x1f4c472e GetPlugIn + 184686
    42  com.adobe.InDesign.Scripting  0x1f4c4fcf GetPlugIn + 186895
    43  ...ign.Support for AppleScript 0x1f055fc7 GetPlugIn + 80967
    44  ...ign.Support for AppleScript 0x1f056a65 GetPlugIn + 83685
    45  ...ign.Support for AppleScript 0x1f057355 GetPlugIn + 85973
    46  ...ign.Support for AppleScript 0x1f01fde2 0x1f01e000 + 7650
    47  com.apple.AE                  0x90303f58 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    48  com.apple.AE                  0x90303e57 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    49  com.apple.AE                  0x90303d61 aeProcessAppleEvent + 197
    50  com.apple.HIToolbox           0x9580d323 AEProcessAppleEvent + 50
    51  ...obe.InDesign.Application UI 0x1bc98071 GetPlugIn + 298177
    52  ...obe.InDesign.Application UI 0x1bc955dc GetPlugIn + 287276
    53  com.apple.HIToolbox           0x957d8f2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    54  com.apple.HIToolbox           0x957d81f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    55  com.apple.HIToolbox           0x957d8055 SendEventToEventTargetWithOptions + 58
    56  com.apple.HIToolbox           0x9580cbb0 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3006
    57  com.apple.HIToolbox           0x957d9380 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    58  com.apple.HIToolbox           0x957d81f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    59  com.apple.HIToolbox           0x957fa9bb SendEventToEventTarget + 52
    60  ...adobe.InDesign.AppFramework 0x1a113125 0x1a110000 + 12581
    61  ...adobe.InDesign.AppFramework 0x1a1385fa GetPlugIn + 14282
    62  com.adobe.InDesign            0x000028ab main + 187
    63  com.adobe.InDesign            0x000027c6 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x91ac5982 kevent + 10
    1   libSystem.B.dylib             0x91ac609c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x91ac5559 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x91ac52fe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x91ac4d81 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x91ac4bc6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x91a9f15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x91accce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x91afbac8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x98f23ecd TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x98f1f873 MPWaitOnQueue + 250
    5   PMRuntime.dylib               0x00014130 MemUtils::GetAvailMem() + 288
    6   ...ple.CoreServices.CarbonCore 0x98f0385a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    8   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x91a9f0fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x91a9f867 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore 0x98fcbac8 TS_exception_listener_thread + 160
    3   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    4   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x91acd0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x91accd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x91ace9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x98f3851e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x98f23ea5 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x98f1f873 MPWaitOnQueue + 250
    6   AdobeACE                      0x0005a6f1 0x20000 + 239345
    7   AdobeACE                      0x0005a0ed 0x20000 + 237805
    8   ...ple.CoreServices.CarbonCore 0x98f0385a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    10  libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x91a9f142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x91acccfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x91b1546f pthread_cond_wait + 48
    3   com.adobe.amt.services        0x19635126 C_AMTUISwitchSuppressUpdates + 16768
    4   com.adobe.amt.services        0x1962ddb0 C_EULA_SetState + 2164
    5   com.adobe.amt.services        0x1963518c C_AMTUISwitchSuppressUpdates + 16870
    6   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    7   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x91a9f142 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x91acccfc _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x91b1546f pthread_cond_wait + 48
    3   TINthread.dylib               0x211cb7a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib               0x211cb83f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    6   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x91acd0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x91accd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x91ace9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...adobe.InDesign.AppFramework 0x1a233fda GetPlugIn + 1044906
    4   ...adobe.InDesign.AppFramework 0x1a22fe2f GetPlugIn + 1028095
    5   ...adobe.InDesign.AppFramework 0x1a23012c GetPlugIn + 1028860
    6   ...adobe.InDesign.AppFramework 0x1a233aa6 GetPlugIn + 1043574
    7   boost_threads                 0x01704fcd thread_proxy + 141
    8   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    9   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x91acd0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x91accd62 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x91ace9f8 pthread_cond_wait$UNIX2003 + 73
    3   ...adobe.InDesign.AppFramework 0x1a233fda GetPlugIn + 1044906
    4   ...adobe.InDesign.AppFramework 0x1a22fe2f GetPlugIn + 1028095
    5   ...adobe.InDesign.AppFramework 0x1a23012c GetPlugIn + 1028860
    6   ...adobe.InDesign.AppFramework 0x1a233aa6 GetPlugIn + 1043574
    7   boost_threads                 0x01704fcd thread_proxy + 141
    8   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    9   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x91acd0a6 __semwait_signal + 10
    1   libSystem.B.dylib             0x91af8ee5 nanosleep$UNIX2003 + 188
    2   ...sign.Support for JavaScript 0x1efbbfab GetPlugIn + 344123
    3   ...sign.Support for JavaScript 0x1ef9f9c3 GetPlugIn + 227923
    4   ...sign.Support for JavaScript 0x1efbc0b8 GetPlugIn + 344392
    5   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    6   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib             0x91adc5fe recvfrom$UNIX2003 + 10
    1   libSystem.B.dylib             0x91afc3c7 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib 0x259b46cf Invoke + 54887
    3   ServiceManager-Launcher.dylib 0x259b376e Invoke + 50950
    4   ServiceManager-Launcher.dylib 0x259b261f Invoke + 46519
    5   ServiceManager-Launcher.dylib 0x259b2671 Invoke + 46601
    6   ServiceManager-Launcher.dylib 0x259b26fb Invoke + 46739
    7   ServiceManager-Launcher.dylib 0x259acafe Invoke + 23190
    8   ServiceManager-Launcher.dylib 0x259acce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib 0x259ad8c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib 0x259ad9c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib 0x259b0db0 Invoke + 40264
    12  ServiceManager-Launcher.dylib 0x259b1059 Invoke + 40945
    13  ServiceManager-Launcher.dylib 0x259b1687 Invoke + 42527
    14  ServiceManager-Launcher.dylib 0x259b1884 Invoke + 43036
    15  ServiceManager-Launcher.dylib 0x259a3826 Login + 1654
    16  ServiceManager-Launcher.dylib 0x259a4c71 Login + 6849
    17  ServiceManager-Launcher.dylib 0x259b1df3 Invoke + 44427
    18  ServiceManager-Launcher.dylib 0x259b4341 Invoke + 53977
    19  libSystem.B.dylib             0x91acc85d _pthread_start + 345
    20  libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib             0x91a9f20e mach_wait_until + 10
    1   libSystem.B.dylib             0x91b26819 nanosleep + 345
    2   PMRuntime.dylib               0x0001660c IDThreading::Sleep(unsigned long) + 60
    3   ...obe.InDesign.Application UI 0x1bc115f1 0x1bc00000 + 71153
    4   ...obe.InDesign.Application UI 0x1bc14de6 0x1bc00000 + 85478
    5   boost_threads                 0x01704fcd thread_proxy + 141
    6   libSystem.B.dylib             0x91acc85d _pthread_start + 345
    7   libSystem.B.dylib             0x91acc6e2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x1e5406eb  ecx: 0x00000000  edx: 0x00000000
      edi: 0x00000001  esi: 0x2d17ae68  ebp: 0xbfffc368  esp: 0xbfffc150
       ss: 0x0000001f  efl: 0x00010246  eip: 0xa0bc76f0   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000001
    Binary Images:
        0x1000 -     0x4ffb +com.adobe.InDesign 7.0.3.535 (7030) <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 ??? (???) <E688E020-77C0-9353-7DB6-A86E8C4F0D14> /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 ??? (???) <26F62F49-129D-A3FB-045D-94168CF5296F> /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 ??? (???) <60A0381D-B94E-C348-03E3-079D9C832F37> /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 -  0x26d0ff7  com.apple.vmutils 4.2 (106) <2CE65D11-BA31-6884-0249-B503A337CD4D> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x26e9000 -  0x279efe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x27e4000 -  0x27e6ffb +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
    0x27eb000 -  0x2987fff +WidgetBinLib.dylib ??? (???) <A653F189-2C78-4606-1921-350F81951C7C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/WidgetBinLib.dylib
    0x2a65000 -  0x2c04fe7 +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
    0x2c6d000 -  0x2ceafff +AdobeOwlCanvas ??? (???) <65B2E680-4F43-BE46-2290-3500758D1BF7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x2d06000 -  0x2d09ff8 +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
    0x54de000 -  0x54e6fff +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
    0x19610000 - 0x19677fea +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
    0x19aa1000 - 0x19adaffb +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
    0x19bea000 - 0x19bebff3 +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
    0x19bef000 - 0x19bf0ff1 +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
    0x19bf4000 - 0x19bf5ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x19bfa000 - 0x19bfbfff +com.adobe.InDesign.Help 7.0.0.355 (???) <6E875143-BA05-093F-B1AE-385ADE146CC5> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Help.InDesignPlugin/Help
    0x1a110000 - 0x1a29ffe3 +com.adobe.InDesign.AppFramework 7.0.3.535 (???) <E00DA19F-ACE4-ACC6-4E2B-EBF541C66054> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x1ab27000 - 0x1aca2ff7 +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
    0x1ad28000 - 0x1ad62ff7 +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
    0x1ad83000 - 0x1ae55ff7 +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
    0x1ae9e000 - 0x1af08ff7 +com.adobe.InDesign.Master Page 7.0.3.535 (???) <0C595334-73B1-B04D-C6BE-F6A847D336BD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x1af2e000 - 0x1af49ffb +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
    0x1af59000 - 0x1b0eafeb +com.adobe.InDesign.Text Walker 7.0.0.355 (???) <6FF2466F-5761-CB4D-1CBA-B79F8AFFEED7> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0x1b18a000 - 0x1b1cdff7 +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
    0x1b1ed000 - 0x1b23bfff +com.adobe.InDesign.Text Panel 7.0.0.355 (???) <B7A2C124-8C5A-F83F-10C1-1D092A258703> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Text Panel.InDesignPlugin/Text Panel
    0x1b25b000 - 0x1b28aff0 +TextPanelLib.dylib ??? (???) <F7BEA3B0-B264-4ECA-C7C1-E161D2CDCE4F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/TextPanelLib.dylib
    0x1b2a6000 - 0x1b2e6ffc +com.adobe.InDesign.Spelling Panel 7.0.0.355 (???) <96DE3DF1-C22F-AF2F-4278-FDAAE598E3D6> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Spelling Panel.InDesignPlugin/Spelling Panel
    0x1b306000 - 0x1b3aefff +com.adobe.InDesign.Text Editor 7.0.0.355 (???) <93D5B8A9-827E-4E67-BD48-5F00BA9D4760> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0x1b3ea000 - 0x1b40efef +com.adobe.InDesign.Utilities 7.0.0.355 (???) <AD54DEC4-0286-5511-D508-43356FD1E899> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0x1b426000 - 0x1b607fff +com.adobe.InDesign.Package and Preflight 7.0.3.535 (???) <1B76AF31-4DD9-96DB-EAE3-ACE402F0C556> /Applications/Adobe InDesign CS5/Plug-Ins/Prepress/Package and Preflight.InDesignPlugin/Package and Preflight
    0x1b695000 - 0x1b6edff7 +AdobeXMP ??? (???) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x1b6fc000 - 0x1b722ff6 +AdobeAXE8SharedExpat ??? (???) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x1b72a000 - 0x1b800fef +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
    0x1b98a000 - 0x1b9b8ff2 +com.adobe.Reader for DOCX Reader for DOCX 5.5.0.7351 (5.5.0.7351) <DB73F46F-0AF2-85C4-7890-0607F6949AF8> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for DOCX.smrd/Contents/MacOS/Reader for DOCX
    0x1b9c8000 - 0x1b9dcfff +AdobeSFL ??? (???) <83D25893-376A-89D9-BA9B-078913B8D34F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x1b9e2000 - 0x1b9eaffc +com.adobe.InDesign.Workgroup Client UI 7.0.0.355 (???) <282ADA7E-C3D6-ADF8-6FB8-466B5F074934> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0x1b9f0000 - 0x1b9f8ff3 +PathTypeLib.dylib ??? (???) <F753ACE3-9AB5-76D6-8F55-CEF5E19401AF> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PathTypeLib.dylib
    0x1bc00000 - 0x1be61feb +com.adobe.InDesign.Application UI 7.0.3.535 (???) <461DF546-04FA-5C5A-075F-226EF70BCF95> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x1bf62000 - 0x1bffafff +com.adobe.AdobeExtendScript ExtendScript 4.1.23 (4.1.23.7519) <71FF91EA-D98C-4A22-EF60-F5DD91995638> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1c038000 - 0x1c0c5ff7 +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
    0x1c0f7000 - 0x1c14affb +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
    0x1c187000 - 0x1c314ffb +com.adobe.InDesign.Document Framework 7.0.3.535 (???) <7F5779F8-3973-BAF1-A385-CBF07164FFEB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x1c40a000 - 0x1c51aff3 +com.adobe.InDesign.SangamServicer-Mapper 7.0.0.355 (???) <932ACD2D-2394-61AC-D400-83D28700283D> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/SangamServicer-Mapper.InDesignPlugin/SangamServicer-Mapper
    0x1c565000 - 0x1c5ceffb +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
    0x1c618000 - 0x1c6e5fe7 +AdobeAXEDOMCore ??? (???) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1c712000 - 0x1c7cbfff +AdobeAXSLE ??? (???) <A8C8ECD6-9098-8EA6-EA22-3BCCCB81A29B> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x1c7f5000 - 0x1c878ff2 +AdobeSangamML ??? (???) <B0029614-553A-BEAB-21E1-0664E5481F68> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x1c8a9000 - 0x1c90eff3 +com.adobe.Reader for Excel Reader for Excel 5.5.0.7351 (5.5.0.7351) <13A79647-FDEE-DA76-4D9D-AD328F170941> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for Excel.smrd/Contents/MacOS/Reader for Excel
    0x1c927000 - 0x1c9affff +com.adobe.Reader For PageMaker Reader For PageMaker 5.5.0.7351 (5.5.0.7351) <CB3DC121-77F5-1289-537F-D979E601407F> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for PageMaker.smrd/Contents/MacOS/Reader for PageMaker
    0x1c9d1000 - 0x1c9f5ffb +PMFileReader.dylib ??? (???) <5C6DA068-A794-2099-9E3B-7F51E5FC478E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/PMFileReader.dylib
    0x1c9fa000 - 0x1cafafff +com.adobe.Reader for Quark Reader for Quark 5.5.0.7351 (5.5.0.7351) <A525EFDE-6074-8CA1-6145-76B57CB0F448> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for Quark.smrd/Contents/MacOS/Reader for Quark
    0x1cb1f000 - 0x1cb85ff4 +com.adobe.Reader for RTF Reader for RTF 5.5.0.7351 (5.5.0.7351) <735AD3FF-36DE-C1B9-7EEA-ECCF3E929D1A> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for RTF.smrd/Contents/MacOS/Reader for RTF
    0x1cba3000 - 0x1cc17ff4 +com.adobe.Reader for Word Reader for Word 5.5.0.7351 (5.5.0.7351) <6E36D3D4-6EB7-8C51-9021-3C9301A089E4> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for Word.smrd/Contents/MacOS/Reader for Word
    0x1cc34000 - 0x1cca9fe2 +com.adobe.Reader for XLSX Reader for XLSX 5.5.0.7351 (5.5.0.7351) <4020D646-03F7-B2A1-D3D3-4EFB98472E1B> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/Reader for XLSX.smrd/Contents/MacOS/Reader for XLSX
    0x1ccd0000 - 0x1ccd8ff7 +com.adobe.ZTextReader ZTextReader 5.5.0.7351 (5.5.0.7351) <851A0B77-2110-B419-A8EB-B051C6CB7653> /Applications/Adobe InDesign CS5/Plug-Ins/Filters/sangam readers/ZTextReader.smrd/Contents/MacOS/ZTextReader
    0x1cd5d000 - 0x1cdc1ff7 +com.adobe.InDesign.XMLParser 7.0.0.355 (???) <16D1BE18-BDC0-598D-3DD6-933CE96E818D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0x1cde7000 - 0x1cfaefef +com.adobe.InDesign.XML 7.0.0.355 (???) <9B37046A-48B2-C794-E572-E7DFADAF8A30> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0x1d047000 - 0x1d06bfff +com.adobe.InDesign.WorldReady 7.0.0.355 (???) <0B2B29B2-1DF5-BA1C-3F0D-01E8B3988813> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
    0x1d07d000 - 0x1d0b1ffb +com.adobe.InDesign.Workgroup 7.0.0.355 (???) <724EA9BC-EFD4-9710-E20E-4B1C74304C7D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0x1d0c6000 - 0x1d0e1fff +com.adobe.InDesign.Workgroup Client 7.0.0.355 (???) <193F094B-02D9-988A-47E6-C7E502E9F716> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0x1d0f0000 - 0x1d204feb +com.adobe.InDesign.Widgets 7.0.0.355 (???) <AE4D2421-4E04-1153-615A-78CEEC745C3E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Widgets.InDesignPlugin/Widgets
    0x1d287000 - 0x1d395fef +com.adobe.InDesign.Transparency 7.0.0.355 (???) <7817B498-6756-5590-87B8-307C1B4422E8> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0x1d3e0000 - 0x1e123fff +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
    0x1e462000 - 0x1e4b4ff1 +com.adobe.InDesign.TOC 7.0.0.355 (???) <9EDF02F0-E9A9-58F8-5E3E-7C9C1ADA9849> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0x1e4d2000 - 0x1e9c7fe7 +com.adobe.InDesign.Text 7.0.3.535 (???) <925DE053-80F6-E053-A5EE-7B111A49CB61> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x1eb33000 - 0x1eb98fff +com.adobe.InDesign.Text Wrap 7.0.0.355 (???) <557851E0-6260-DE31-3AFA-8008B49FBCE2> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x1ebbc000 - 0x1ebe6fff +com.adobe.InDesign.Text Wrap Path 7.0.0.355 (???) <9BFEF65A-3909-03F2-0501-CC32FAAABF5A> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
    0x1ebf0000 - 0x1ebfffff +com.adobe.InDesign.Text Editor Model 7.0.0.355 (???) <8E01C18E-4947-93AB-71CA-E017C80FB09C> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x1ec09000 - 0x1ec52fff +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
    0x1ec77000 - 0x1ecbefff +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
    0x1ecd5000 - 0x1eecefff +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
    0x1ef5b000 - 0x1efe5ff7 +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
    0x1f01e000 - 0x1f062fff +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
    0x1f07b000 - 0x1f14afe7 +com.adobe.InDesign.Graphics 7.0.3.535 (???) <78E789D9-AA9C-C2A1-7BA6-BEA044B5AB35> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x1f193000 - 0x1f1e2ffb +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
    0x1f1fe000 - 0x1f2e1ffb +com.adobe.InDesign.Spread 7.0.3.535 (???) <D3FB9AED-D3B3-B3BF-1BB0-02500629264F> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x1f32d000 - 0x1f372ff0 +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
    0x1f38c000 - 0x1f3c8fff +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
    0x1f3e4000 - 0x1f41dfff +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
    0x1f43b000 - 0x1f449fff +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
    0x1f455000 - 0x1f462fff +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
    0x1f46d000 - 0x1f487ff2 +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
    0x1f496000 - 0x1f530fff +com.adobe.InDesign.Scripting 7.0.3.535 (???) <6EEF2A59-36E7-ACFE-3A55-FA4A482085E6> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x1f561000 - 0x1f57bfff +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
    0x1f58a000 - 0x1f6d5fff +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
    0x1f734000 - 0x1f766ff7 +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
    0x1f76f000 - 0x1f7a2ff7 +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
    0x1f7b8000 - 0x1f80bff3 +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
    0x1f82e000 - 0x1f923fe7 +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
    0x1f971000 - 0x1f97affb +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
    0x1f983000 - 0x1fa67fef +com.adobe.InDesign.EPS Page Item 7.0.3.535 (???) <EF55D1FF-1E17-772F-76C5-D6AC15C660AD> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
    0x1faad000 - 0x1fc82fff +com.adobe.InDesign.PDF 7.0.3.535 (???) <F3C61326-C2F1-A2D4-5F71-EDBCEB15526D> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
    0x1fd0c000 - 0x1fdeffef +AdobePDFPort ??? (???) <A3B34989-24B0-04AF-D9BC-2B2718803809> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x1fe24000 - 0x1fe3fff9 +AdobePDFSettings ??? (???) /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings
    0x1fe59000 - 0x20007ff3 +com.adobe.InDesign.Generic Page Item 7.0.3.535 (???) <638DD85C-3033-34F7-76CC-EB1C896AF9B9> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x20093000 - 0x200ccffb +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
    0x200e7000 - 0x201aafff +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
    0x201c8000 - 0x201fcfff +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
    0x20215000 - 0x2022afff +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
    0x20238000 - 0x202b5ff7 +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
    0x202e4000 - 0x20370fef +AdobeXMPFiles ??? (???) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x203a7000 - 0x203f6ff7 +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
    0x20414000 - 0x2054ffff +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
    0x205b1000 - 0x205d2ff3 +com.adobe.InDesign.Layout 7.0.3.535 (???) <1F41D20D-C8BF-63BD-D0C8-73247AE81125> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x205e2000 - 0x20606fff +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
    0x2061a000 - 0x206d5fff +com.adobe.InDesign.INXCore 7.0.3.535 (???) <27DBA400-286D-FE80-5060-B5CA03272AAB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
    0x20715000 - 0x207f7ff7 +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
    0x20833000 - 0x208b1ff3 +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
    0x208ec000 - 0x208f6ff3 +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
    0x20901000 - 0x209e0fe7 +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
    0x20a2f000 - 0x20a88fef +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
    0x20a96000 - 0x20aacfff +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
    0x20abb000 - 0x20b18ffb +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
    0x20b3d000 - 0x20b47ff7 +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
    0x20b4f000 - 0x20c5dfff +com.adobe.InDesign.GalleyUI 7.0.3.535 (???) <7A8B3DC9-8E21-200C-F195-46758C0C5338> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/GalleyUI.InDesignPlugin/GalleyUI
    0x20ca4000 - 0x20cf6ffb +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
    0x20d12000 - 0x20d91fff +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
    0x20dc3000 - 0x20ec0ff7 +com.adobe.InDesign.Font Manager 7.0.3.535 (???) <1F32D4C4-076F-6BAB-953D-FE5213FDF59E> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0x20efb000 - 0x20f1cfef +com.adobe.SING 12.0.4 (12.0.4) <440244FD-6A2F-4128-B9BF-F1C804B1CB6F> /Library/Application Support/Adobe/SING/Mark II/SING.bundle/Contents/MacOS/SING
    0x20f32000 - 0x20ffbff1 +com.adobe.SINGCore 12.0.11 (12.0.11) <87B1D0A5-E4F3-4239-A81E-BB5FA0B242D8> /Library/Application Support/Adobe/SING/Mark II/SINGCore.bundle/Contents/MacOS/SINGCore
    0x211ca000 - 0x211cdfff +TINthread.dylib ??? (???) /Library/Application Support/Adobe/SING/Mark II/TINthread.dylib
    0x211d4000 - 0x2149afd3 +com.adobe.TIN TIN 2.0.17 (2.0.17) /Library/Application Support/Adobe/SING/Mark II/TIN.bundle/Contents/MacOS/TIN
    0x2162d000 - 0x21943ffd +com.adobe.InDesign.Dynamic Documents 7.0.3.535 (???) <AD1A260A-19BC-2E17-FD84-AA4E41EF4D18> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Dynamic Documents.InDesignPlugin/Dynamic Documents
    0x21a1e000 - 0x21affff4 +ADBE_AGMFL ??? (???) <254CC454-1C89-DA76-E96D-ADF5FCD808AB> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/ADBE_AGMFL.framework/Versions/A/ADBE_AGMFL
    0x21b32000 - 0x21cc3ff3 +aflamingo ??? (???) <C4136948-FE16-15C4-F1B9-040E014AF2CA> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo
    0x21d0e000 - 0x21d14fff +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
    0x21d1b000 - 0x21d39ffe +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
    0x21d4a000 - 0x21d66ff3 +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
    0x21d76000 - 0x21dbfff7 +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
    0x21ddf000 - 0x21e35ff3 +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
    0x21e55000 - 0x21ec7ffa +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
    0x21ef1000 - 0x21f79ffb +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
    0x21fad000 - 0x21fdefff +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
    0x21ff4000 - 0x22002fff +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
    0x2200c000 - 0x220b0fe1 +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
    0x220e4000 - 0x22135ff7 +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
    0x2215d000 - 0x2218effb +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
    0x221a9000 - 0x221d1ff7 +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
    0x221e8000 - 0x22223ffb +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
    0x2223f000 - 0x222c0fe7 +com.adobe.InDesign.Assignments 7.0.3.535 (???) <C83A5AF1-93B0-1B05-D3B3-31843A2AAD18> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
    0x222f1000 - 0x22339ff3 +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
    0x22354000 - 0x2244cff7 +com.adobe.InDesign.XMedia UI 7.0.0.355 (???) <6667D552-A793-62CB-175E-4970F19BCF8B> /Applications/Adobe InDesign CS5/Plug-Ins/XMedia/XMedia UI.InDesignPlugin/XMedia UI
    0x224b4000 - 0x224f5fff +com.adobe.InDesign.Snippet 7.0.0.355 (???) <CB31C87A-FEE9-1573-5921-B356CDA2926E> /Applications/Adobe InDesign CS5/Plug-Ins/XMedia/Snippet.InDesignPlugin/Snippet
    0x22512000 - 0x22519ff5 +com.adobe.InDesign.Workgroup UI 7.0.0.355 (???) <E959A787-CD65-A25D-3B8C-B75303108E1B> /Applications/Adobe InDesign CS5/Plug-Ins/Workgroup/Workgroup UI.InDesignPlugin/Workgroup UI
    0x2251f000 - 0x2252cff1 +com.adobe.InDesign.Metadata UI 7.0.0.355 (???) <F45F1B21-A3FE-975C-029D-73FC59B68669> /Applications/Adobe InDesign CS5/Plug-Ins/Workflow/Metadata UI.InDesignPlugin/Metadata UI
    0x22534000 - 0x225a1fef +FileInfo ??? (???) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe InDesign CS5/Adobe InDesign CS5.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x225bc000 - 0x225c3fff +com.adobe.InDesign.PerformanceMetrics 7.0.0.355 (???) <2AB9D4A0-E984-C5EF-FABF-D2671F116033> /Applications/Adobe InDesign CS5/Plug-Ins/Utility/PerformanceMetrics.InDesignPlugin/PerformanceMetrics
    0x225ca000 - 0x225dafff +com.adobe.InDesign.Track Changes UI 7.0.0.355 (???) <F7ACACB2-E602-EB6B-89EA-D1866058481B> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Track Changes UI.InDesignPlugin/Track Changes UI
    0x225e3000 - 0x225e8fff +com.adobe.InDesign.Track Changes Preferences 7.0.0.355 (???) <AA0D3336-B7B2-68EA-23E5-30C4D8E95EEE> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Track Changes Preferences.InDesignPlugin/Track Changes Preferences
    0x225ef000 - 0x225f9fff +com.adobe.InDesign.Tool Tips 7.0.0.355 (???) <A31625D2-C7E6-40EC-5A20-3C1553803A18> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Tool Tips.InDesignPlugin/Tool Tips
    0x22604000 - 0x22615ff3 +com.adobe.InDesign.Tool Box 7.0.0.355 (???) <8EB4E951-1F84-6992-6544-9364DA7EDE64> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Tool Box.InDesignPlugin/Tool Box
    0x22624000 - 0x22640fff +com.adobe.InDesign.Shortcut Editor Dialog 7.0.0.355 (???) <BD72563F-DDDC-F988-5060-3B0F201BD015> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Shortcut Editor Dialog.InDesignPlugin/Shortcut Editor Dialog
    0x22650000 - 0x22664ff8 +com.adobe.InDesign.Performance UI 7.0.0.355 (???) <5932EC9D-B8A4-7916-9F10-FBBD98BBA52F> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Performance UI.InDesignPlugin/Performance UI
    0x22673000 - 0x22682ff8 +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
    0x2268b000 - 0x22692ffa +com.adobe.InDesign.General Preferences Panel 7.0.0.355 (???) <8A6E86C8-9983-3D3B-5825-56702E51A738> /Applications/Adobe InDesign CS5/Plug-Ins/UI/General Preferences Panel.InDesignPlugin/General Preferences Panel
    0x2269a000 - 0x226b5ffb +com.adobe.InDesign.GapTool 7.0.0.355 (???) <F29D454E-0B8E-AE6F-3DB7-FD7456C8F421> /Applications/Adobe InDesign CS5/Plug-Ins/UI/GapTool.InDesignPlugin/GapTool
    0x226c2000 - 0x226ebff4 +com.adobe.InDesign.Galley Preferences 7.0.0.355 (???) <51838E2D-0260-3A36-B182-D9BB586DA95A> /Applications/Adobe InDesign CS5/Plug-Ins/UI/Galley Preferences.InDesignPlugin/Galley Preferences
    0x22704000 - 0x2272eff7 +com.adobe.InDesign.CSXS 7.0.0.355 (???) <D169CA69-0B16-E3C5-0369-2597A973B7AD> /Applications/Adobe InDesign CS5/Plug-Ins/UI/CSXS.InDesignPlugin/CSXS
    0x22745000 - 0x228bdffb +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
    0x22917000 - 0x2292bff7 +com.adobe.InDesign.Text Style Panel 7.0.0.355 (???) <14827AD2-028A-60A2-483A-A4A7EBF4E0F8> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Text Style Panel.InDesignPlugin/Text Style Panel
    0x22938000 - 0x22954ff4 +com.adobe.InDesign.Text Ruler 7.0.0.355 (???) <3B6AA7F6-AB38-39CC-2EDC-EE243958BDC8> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Text Ruler.InDesignPlugin/Text Ruler
    0x22962000 - 0x2297bfff +com.adobe.InDesign.Text Preferences 7.0.0.355 (???) <889C74DB-74F5-730D-D91D-C4C4898018F6> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Text Preferences.InDesignPlugin/Text Preferences
    0x22988000 - 0x229a3ff1 +com.adobe.InDesign.Text Frame Options 7.0.0.355 (???) <1089EFE3-C64D-40AF-4787-970F4332BE2E> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Text Frame Options.InDesignPlugin/Text Frame Options
    0x229b1000 - 0x22a14ff0 +com.adobe.InDesign.Color Picker Panel 7.0.0.355 (???) <F312F57F-9627-B487-9AE2-78F4EEE4548E> /Applications/Adobe InDesign CS5/Plug-Ins/Graphics/Color Picker Panel.InDesignPlugin/Color Picker Panel
    0x22a40000 - 0x22ad3ff0 +com.adobe.InDesign.Swatches Panel 7.0.0.355 (???) <03D6A3CE-263D-1EC5-CF79-46C89371E9DA> /Applications/Adobe InDesign CS5/Plug-Ins/Graphics/Swatches Panel.InDesignPlugin/Swatches Panel
    0x22b13000 - 0x22b1cff1 +com.adobe.InDesign.Text Color Panel 7.0.0.355 (???) <8C1F39E1-E2D3-8134-13E4-F811D9B452D0> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Text Color Panel.InDesignPlugin/Text Color Panel
    0x22b24000 - 0x22b78ff7 +com.adobe.InDesign.Style Panel 7.0.0.355 (???) <26F90B93-2C75-7128-6B87-0B90AB5995AC> /Applications/Adobe InDesign CS5/Plug-Ins/Text/Style Panel.InDesignPlugin/Style Panel
    0x22ba4000 - 0x22bb2ff8 +com.adobe.InDesign.Story Panel 7.0.3.535 (???) <F8D3C6D7-235D-6ADF-132E-28DAF

    .. in which case I could run a cursory check. At the very least I will be able tell whether the file is physically damaged (missing parts of the file), or if it's internally damaged (a bad code in an otherwise good file).
    Are you free to post the file somewhere? [Unfortunately, Adobe doesn't allow InDesign files to be shared through this forum ]

  • (Need Help) how to clear the recently opened file list on Flash Player 11?

    excuse me pals, may i ask how to clear recently opened file list under "File" tab on Flash Player 11 (the standalone player) ? i've tried to browse my registry but i can't find the solution (and i can't find the .mru files containg the list). my OS is Windows 7 32bit, i hope i can find solution here

    I found it in the Windows registry under HKCU\Software\Macromedia\FlashPlayer

  • Opening files automatically in VBA and saving to PDF, Adobe Acrobat XI Pro

    Hello,
    I have Adobe Acrobat XI Pro and I want to ask if there is any possibility to open automatically files in Adobe by VBA (Word files, Excel, etc.) and save them to PDF?  Or maybe it is a possibility to print them with Adobe PDF Printer?  If there is something like that can you give me a sample of code?
    Thank for your help.
    Best regards,
    Robert

    Thank you for your advices.
    I already download Acrobat SDK before, but it's really complicated for someone who know only VBA at intermediate level.
    I really plan to learn javascripts and COM in future, but I was thinking that if I ask you for I guess easy think (opening files and saving them to pdf) you will help by giving similar code or some clues.
    Anyway I found  this two methods in documentation: PDDoc.Save and PDDoc.Open and I believe that a combination of them can finally help me. Do you know how I can connect them to one part?

  • How to open files in their native fromats in a browser

    Hi,
    i have jsp file which contains pure java script functionality, from this page i want to open local files. the same i can open with following code as html page but it is not opening when i place in the tomcat server,
    code
    function loadPage(id)
              if(id == 'launch')
                   document.getElementById("docframe").src = "C:\\Documents and Settings\\3041\\documents\\01\\pdf\\DOM.pdf";
              if(id == 'prev')
                   document.getElementById("docframe").src = "C:\\Documents and Settings\\3041\\documents\\01\\doc\\HR-007_Leave.doc";     
              if(id == 'next')
              document.getElementById("docframe").src = "C:\\Documents and Settings\\3041\\documents\\01\\excel\\sample.xls";                    
    <table cellspacing="10" cellpadding="0" border="0" width="100%" height="100%">
         <tr valign="top" height="5%">
              <td align="left">
              <input type="button" id="prev" name="prev" onClick="javascript:loadPage('prev');" value="Previous">
    </td>
              <td align="right">
              <input type="button" id="next" name="next" onClick="javascript:loadPage('next');" value="Next">
              </td>
         </tr>
         <tr valign="top" height="95%">
         <td colspan="2">
              <iframe id="docframe" src="javascript:pageCall('launch');" width="100%" height="100%"></iframe>
              </td>
         </tr>
         </table>
    please help me in getting out of this problem

    What is it you are trying to do???
    The browser open files with their defaults programs, because they make use of the header values such as content-type. it seems that you are using DOM to archieve that, how do you expect that to work??
    Something is not right.
    MeTitus

  • Interactive PDF, open file in new window.

    Hello everyone,
    I was unable to find this on the net or I could be using the wrong typed search. Created a successful interactive document. I attached a portfolio to this interactive document. I have 3 images. Two are hyperlinked to specific urls which work just fine. I have a sample button which opens the pdf. The only problem I have is that the pdf open in the current pdf window of the past file, so one has to reopen the original file again to access it. I could create a button on the portfolio webpage to go back to the original document, but that would be 20 buttons.
    Is there a way for someone to click on the sample button, but open up a new window like you would for a webpage?
    Right now the setup in the Buttons and Forms window:
    Sample button
    Type: button
    Name: Sample
    Event: On Release or Tap
    Open File - Checked
    Select File: current path
    PDF Options
    Description: Portfolio Samples
    Printable - Checked.
    That is pretty much it.

    Not everything can be done in InDesign when it comes to interactivity and forms. I believe you have to use a JavaScript in Acrobat to get the file to open in a new window. I can't provide you a specific reference. Ask on the Acrobat forums.

  • Interactive Buttons - Open File - How do I open a file in a "new" window?

    Running CS5 and I'm working on an interactive document.  I have created a Button and my Action is to "Open File" and I've selected the applicable file.  When I export to PDF and click on that button, it opens the file but not in a new window so I lose my original source PDF.
    I know that I can do these actions in Acrobat but I'd prefer to do all my actions in InDesign so I don't have to keep going back and forth.
    Thanks!!

    I believe it has to be done with a JavaScript in Acrobat. It cannot be done in InDesign. You might ask in the Acrobat forum for more information.

  • Open file in maximize state by client_host

    I use form 10.1.2.3, jre 1.6.0_10
    I open file with the extension 'spf ' by client_host.
    How can I open the spf file in maximize state ?
    thanks

    i know that if you add the file// the web.show_document refers to file (not to url) therefore:
    url := 'file://'||'<server_name>/<file_name>.pdf';
    in the folowing line i ommit self.close() (because with it the window is closed immediatly)
    WEB.SHOW_DOCUMENT ('javascript:window.open("' || url || '","","fullscreen=yes,titlebar=yes,location=yes,toolbar=yes,menubar=yes,status=yes,resizable=yes");','_blank');
    my question is: in the accepted window I don't see the close sign (i.e. x) so the user can't close the window by the mouse (only by <alt> <f4>). How can I accept a window with the close sign?
    thanks

  • Open File in RGB mode

    How to Open file in RGB mode in illustrator using Javascript

    if you have CS6 or above you can executeMenuCommand
    app.executeMenuCommand ('doc-color-rgb');
    or
    app.executeMenuCommand ('doc-color-cmyk');
    this will switch the active documents colour mode

  • How to Increase the # of Recently Opened Files in DW CS6 ???

    Can anyone please give a detailed instruction on how to increase the number of Recently Opened files in Dreamweaver CS6? I have read the forums everywhere and do not see a solution here that works. For me there is no: Menus/MM/File_RecentFiles.htm
    I mean I have a "Menus" directory but no "MM" directory inside that... also, if I create one... I still need a sample "File_RecentFiles.htm" to copy. Or maybe someone knows another solution?

    I don't have DWCS6, just DWCS4 and DWCC. When I go to Program Files(x86) > Adobe >  Adobe Dreamweaver CC (or Dreamweaver CS4) > configuration > Menus > MM > and then open the file named "File_RecentFiles.htm" at either location, this is the code...
    <!-- MENU-LOCATION=NONE -->
    <html xmlns:MMString="http://www.macromedia.com/schemes/data/string/">
    <HEAD>
    <!-- Copyright 2000, 2001, 2002, 2003, 2004, 2005 Macromedia, Inc. All rights reserved. -->
    <TITLE><MMString:loadString id="Menus/MM/File_RecentFiles/title" /></TITLE>
    <SCRIPT LANGUAGE="javascript" SRC="../../Shared/MM/Scripts/CMN/string.js"></SCRIPT>
    <SCRIPT LANGUAGE="javascript" SRC="File_RecentFiles.js"></SCRIPT>
    <SCRIPT LANGUAGE="javascript">
    <!--
    //--------------- LOCALIZEABLE GLOBALS---------------
    var MENU_RecentFile  = dw.loadString('Menus/MM/File_RecentFiles/MENU_RecentFile');
    //--------------- END LOCALIZEABLE   ---------------
    // -->  
    </SCRIPT>
    </HEAD>
    <BODY>
    </BODY>
    </HTML>
    EDIT: It appears you should definitely have this file, unless something is wrong with your installation, or perhaps you are in the wrong directory?

Maybe you are looking for