Indesign CS3 XML Root element?? , Java Script

Is there any way to tag the root element using javascript?
The three usual ways without JS would be:
Rename the tag in the tag pallete.
Select and Retag the Element in the Structure.
Or import an xml to replace the structure.
This is the closest information I could find, thanks to Dave Saunders
http://jsid.blogspot.com/2006/07/emaciated-anonymous-invisible-parent.html
~Mike

Does this help:
app.documents[0].xmlElements[0].markupTag.name = "Fred";
Dave

Similar Messages

  • Read XML root element tag in Java

    Is there any way I can read the tag of the root element? Based on the tag, I process the XML differently.
    Thank you.

    I think I figured it out. I can accomplish this by using the getTagName method. Sorry for the lack of detail in my original question.
    For those interested, I have a class that has XML passed to it. Depending on what the root tag name is, different activities needed to take place. I needed a way to read the tag in order to determine what actions needed to be performed.
    Thank you.

  • Add dynamic namespace declaration into xml root element

    Hello all,
    i've have two scenarios (mail to mail and file to file) with the same issue : no namespace in my XML file and i have to create one 'dynamically' from XML values.
    Example :
    <root>
    <name>test</name>
    <email>test</email>
    <schema>schemaID</schema>
    </root>
    Now I want to add infos into the root element for namespace declaration and so on, without expansion of the xsd. I've must use the value from the field schemaID.
    Example:
    <root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns: namespace="http://test.de/schemaID">
    <name>test</name>
    <email>test</email>
    </root>
    I've already done it before through XSLT but it wasn't dynamic !! I don't know how to do it in XSL and i am not a java expert.
    Someone got an idea ?
    Thanks,
    Jean-Philippe.

    Hi,
      If you want to add name space at mapping level two options
    1)Using XSLT Mapping ,its very easy,google it to get sample XSLT code ,it will solve your problem.
    2)Using java mapping,in java mapping use regular expression code ,using regex(Regulkar expresion)we can add any content in message at any level.
    Regards,
    Raj

  • Using XML file in Java script to create Google Map

    Hello,
    I work for a non-profit in San Diego as a GIS Specialist. I have had to teach myself about some scripting to create some dynamic maps, but I am still very limited in my skills, so I have had to explore the internet in order to discover various tutorials and examples that have led me on a positive path.
    Right now I am working on a Google Mash-Up that will incorporate over 14,000 records, which will appear as separate markers that will have pop-up info bubbles with additional info inside (using html), once the marker is clicked.
    Here is the XML script example that is used in the tutorial I am following:
    <markers>
    <marker lat="43.65654" lng="-79.90138" html="Some stuff to display in the<br>First Info Window"
    label="Marker One" />
    <marker lat="43.91892" lng="-78.89231" html="Some stuff to display in the<br>Second Info Window"
    label="Marker Two" />
    <marker lat="43.82589" lng="-79.10040" html="Some stuff to display in the<br>Third Info Window"
    label="Marker Three" />
    </markers>
    ...and this is how it looks when the file is retrieved by the java script and mapped: http://econym.googlepages.com/example_map3.htm
    This is the java script that creates the Google Map. I have emboldened the section of the script that retrieves the data and parses it to create the markers:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Google Maps</title>
    <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAA6GoL8P5zqjQlG5A5uM1ETBSUPozAscB0cY3RG8xEGnZyeom4axRySak889rVpvHYRsV4f9OZZzbboA"
    type="text/javascript"></script>
    </head>
    <body onunload="GUnload()">
    <!-- you can use tables or divs for the overall layout -->
    <table border=1>
    <tr>
    <td>
    <div id="map" style="width: 800px; height: 1200px"></div>
    </td>
    <td width = 200 valign="top" style="text-decoration: underline; color: #4444ff;">
    <div id="side_bar"></div>
    </td>
    </tr>
    </table>
    <noscript><b>JavaScript must be enabled in order for you to use Google Maps.</b>
    However, it seems JavaScript is either disabled or not supported by your browser.
    To view Google Maps, enable JavaScript by changing your browser options, and then
    try again.
    </noscript>
    <script type="text/javascript">
    //<![CDATA[
    if (GBrowserIsCompatible()) {
    // this variable will collect the html which will eventualkly be placed in the side_bar
    var side_bar_html = "";
    // arrays to hold copies of the markers used by the side_bar
    // because the function closure trick doesnt work there
    var gmarkers = [];
    var i = 0;
    // A function to create the marker and set up the event window
    function createMarker(point,name,html) {
    var marker = new GMarker(point);
    GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(html);
    // save the info we need to use later for the side_bar
    gmarkers[i] = marker;
    // add a line to the side_bar html
    side_bar_html += '<a href="javascript:myclick(' + i + ')">' + name + '</a><br>';
    i++;
    return marker;
    // This function picks up the click and opens the corresponding info window
    function myclick(i) {
    GEvent.trigger(gmarkers, "click");
    // create the map
    var map = new GMap2(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng( 37.251699,-119.604315), 7);
    *// Read the data from testXML2blackpoolformat.xml*
    var request = GXmlHttp.create();
    request.open("GET", "testXML2blackpoolformat.xml", true);
    *request.onreadystatechange = function() {*
    *if (request.readyState == 4) {*
    var xmlDoc = GXml.parse(request.responseText);
    *// obtain the array of markers and loop through it*
    var markers = xmlDoc.documentElement.getElementsByTagName("ConnectoryRecord");
    *for (var i = 0; i < markers.length; i++) {*
    *// obtain the attribues of each marker*
    *var lat = parseFloat(markers[i].getAttribute("lat"));*
    *var lng = parseFloat(markers[i].getAttribute("lng"));*
    var point = new GLatLng(lat,lng);
    *var html = markers[i].getAttribute("html");*
    *var label = markers[i].getAttribute("label");*
    *// create the marker*
    var marker = createMarker(point,label,html);
    map.addOverlay(marker);
    // put the assembled side_bar_html contents into the side_bar div
    document.getElementById("side_bar").innerHTML = side_bar_html;
    request.send(null);
    else {
    alert("Sorry, the Google Maps API is not compatible with this browser");
    // This Javascript is based on code provided by the
    // Blackpool Community Church Javascript Team
    // http://www.commchurch.freeserve.co.uk/
    // http://econym.googlepages.com/index.htm
    //]]>
    </script>
    </body>
    </html>
    Here is my delima--
    This is the xml format that I need to use because it can accept the rest of my excel file and loop it through the 14,000+ records to create a functioning xml file. This is just a sample (2 records) of the larger file:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <ConnectoryAug2008>
    <ConnectoryRecord>
         <lng>-117.03683</lng>
         <lat>32.944505</lat>
         <ConnectoryID>1</ConnectoryID>
         <Name>$2.95 Guys</Name>
         <StreetAddress>13750 Stowe Drive</StreetAddress>
         <City>Poway</City>
         <State>CA</State>
         <Zip>92064</Zip>
    <Marker>White</Marker>
         <IndustryGroup>Technical Services</IndustryGroup>
         <ConnectoryProfileLink>http://connectory.com/search/profile_view.aspx?connectoryId=1</ConnectoryProfileLink>
    </ConnectoryRecord>
    <ConnectoryRecord>
         <lng>-117.272843</lng>
         <lat>33.13337</lat>
         <ConnectoryID>2</ConnectoryID>
         <Name>(GLDS) Great Lakes Data Systems</Name>
         <StreetAddress>5954 Priestly Drive</StreetAddress>
         <City>Carlsbad</City>
         <State>CA</State>
         <Zip>92008</Zip>
    <Marker>Orange</Marker>
         <IndustryGroup>Technology</IndustryGroup>
         <ConnectoryProfileLink>http://connectory.com/search/profile_view.aspx?connectoryId=2</ConnectoryProfileLink>
    </ConnectoryRecord>
    </ConnectoryAug2008>
    This is the tutorial where I found the formatting techniques to successfully create the large xml file that will format/convert my excel file properly: http://www.mrexcel.com/tip064.shtml
    These variables should appear as html in the info bubble:
    <ConnectoryID>2</ConnectoryID>
         <Name>(GLDS) Great Lakes Data Systems</Name>
         <StreetAddress>5954 Priestly Drive</StreetAddress>
         <City>Carlsbad</City>
         <State>CA</State>
         <Zip>92008</Zip>
    <IndustryGroup>Technology</IndustryGroup>
         <ConnectoryProfileLink>http://connectory.com/search/profile_view.aspx?connectoryId=2</ConnectoryProfileLink>
    The "Marker" variable instructs Google Maps to label the marker with a particular color. I will be so grateful to the person(s) that helps me get through this wall that I have been hitting for a long time. It's very difficult without having the luxury of peers who know about these types of issues.
    Thank you!!

    Here is the relationship: They both contain geographic coordinates that produce a point on a map. I will use the rest of the information in the second xml file (company name, address, link, etc.) to produce the information for the bubble that will pop up once the marker is clicked.
    My problem is that I need to try to keep the second xml file in a relatively similar format, so the rest of my records will still be accepted. If I had a smaller amount of records I could place them directly into the javascript, but because there are so many records, I need to use an xml file that can be retrieved by the java script. I chose to use the second type of xml file because I can easily copy and past the 14,000+ records that are now in excel document.
    After the xml issue is corrected I need to rework the javascript that is now emboldened so that it will read the new xml file correctly. I included the first xml file so that the readers will understand what type of xml format is currently being used to produce the markers in the tutorial map.

  • XML root elements

    Hi i am writing a sql select query to create an xml file.
    SELECT
    XMLELEMENT("data",
    XMLATTRIBUTES('http://smile.mit.edu/shelf/' as "wiki-url",
    'SIMILE JFK Timeline' as "wiki-section"),
    XMLELEMENT("event",
    XMLATTRIBUTES(e.IMP_DATE as "start",
    e.NAME||': '|| e.ECCTS as "title",
    e.IMP_DATE as "end")
    from monica_tab2 e;
    When this query runs, it appears to show the data tags as elements for every record. I want this to be a root element so that it only appear once for all the events.
    Is there any way i can do this? Examples will be appreciated
    Thanks
    Edited by: Monica B on Nov 10, 2008 7:21 AM

    Try using the XMLAGG function...
    SELECT
      XMLELEMENT("data",
                 XMLATTRIBUTES('http://smile.mit.edu/shelf/' as "wiki-url",
                               'SIMILE JFK Timeline' as "wiki-section"),
                 XMLAGG(XMLELEMENT("event",
                                   XMLATTRIBUTES(e.IMP_DATE as "start",
                                                 e.NAME||': '|| e.ECCTS as "title",
                                                 e.IMP_DATE as "end")
    from monica_tab2 e;

  • Add namespace declaration into xml root element

    Hello experts,
    I have the following problem:
    I generate a xml message with the following structure (example):
    How can I realise this requirement?
    Thanks and best regards!
    Christopher Kühn

    Hi Christopher,
    Call the below code as a javamappinf in the operation mapping... So now your operation mapping will have two mappings one to convert source to target XML and second this java mapping which will add namespace to your target xml
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import com.sap.aii.mapping.api.AbstractTransformation;
    import  com.sap.aii.mapping.api.DynamicConfiguration;
    import com.sap.aii.mapping.api.DynamicConfigurationKey;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import com.sap.aii.mapping.api.TransformationInput;
    import com.sap.aii.mapping.api.TransformationOutput;
    import com.sap.aii.mapping.api.InputHeader;
    public class JavaMapping extends AbstractTransformation {
         public void transform(TransformationInput arg0, TransformationOutput arg1) throws StreamTransformationException {
         getTrace().addInfo("JAVA Mapping Called");
         //Input payload is obtained by using arg0.getInputPayload().getInputStream()
         String inData = convertStreamToString(arg0.getInputPayload().getInputStream());
         String outData = inData.replaceFirst("<root>", "<root xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespace=\"http://test.de/test.xsd\">");
         try
         //8. The JAVA mapping output payload is returned using the TransformationOutput class
         // arg1.getOutputPayload().getOutputStream()
              arg1.getOutputPayload().getOutputStream().write(outData.getBytes("UTF-8"));
         catch(Exception exception1) { }
         public String convertStreamToString(InputStream in){
         StringBuffer sb = new StringBuffer();
         try
         InputStreamReader isr = new InputStreamReader(in);
         Reader reader =
         new BufferedReader(isr);
         int ch;
         while((ch = in.read()) > -1) {
              sb.append((char)ch);}
              reader.close();
         catch(Exception exception) { }
         return sb.toString();
    check stefans blog on the jar files that you need to make this mapping /people/stefan.grube/blog/2006/10/23/testing-and-debugging-java-mapping-in-developer-studio
    Regards
    Suraj
    Regards
    Suraj

  • Java script error. Error umber 45

    I have read the technote related to this issue. When trying to open InDesign CS3, I get a "Java Script Error. Error number; 45 errorstring: object is invalid in line 387...followed by the same error message in line 428.
    the tech note says to go to c:\Documents\<username>\application Data\Adobe\InDesign\Version 5.0 and delete the pluginconfig file.
    I do not have that file on my computer.
    can someone tell me how to find the file I need to delete?
    Thanks

    Hi and Welcome to the forums!
    debraweddall wrote:
    I believe for java script error I have to delete all device software and reinstall. Is that correct and what is the correct procedure?
    IMHO, you'd need to describe the error better than that before leaping to the treatment plan that you are describing. Please describe the symptom with more details if you'd like different recommendations.
    Best.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Create Root Element in XML

    Hi Experts,
    I am develpoing a program to generate xml file as output. I am using the method CL_IXML and other interfaces to generate the xml data. Here I need to create a root element. I did search in SDN but I couldnot found anything to generate xml root element.
    My output should be like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Request Version="11.1" IssuerID="1">
            <CreatePurchaseRequest
                RequestID="123456"
                Commonname="test"
            </CreatePurchaseRequest>
    </Request>
    Can anybody plz suggest how can I generate the root element Request here?
    Regards,
    Ranganadh.

    Thanks Sandra,
    My issue got resolved.
    I just created the root element using the method create_sample_element and set the attributes using set_attributes method.
    Thanks for your help.
    w_ixml = cl_ixml=>create( ).
          w_document = w_ixml->create_document( ).
          w_root = w_ixml->create_document( ).
          IF w_document IS INITIAL.
            RAISE EXCEPTION TYPE cx_cmx_da_exception
              EXPORTING
                textid = cx_cmx_da_exception=>cx_cmx_da_error_internal.
          ENDIF.
          w_encoding = w_ixml->create_encoding(
                                 character_set = 'utf-8'
                                 byte_order    = if_ixml_encoding=>co_none ).
          w_document->set_encoding( w_encoding ).
          w_element_inv1  = w_document->create_simple_element(
                      name = 'OrbiscomRequest'
                      parent = w_document ).
          w_element_inv1->set_attribute( name = 'Version'
                                         namespace = ''
                                         value = '11.1' ).
          w_element_inv1->set_attribute( name = 'IssuerID'
                                         namespace = ''
                                         value = '1' ).

  • InDesign CS3 crashing

    We have an issue with InDeisgn CS3 crashing on a regular basis randomlly 3-6 times per night while publishing a newspaper.  The environment is a small newspaper.  The affected systems are 5 editors iMacs running iOS 10.6.8 and 4GB RAM.  They use InDeisgn, InCopy, and Photoshop at the same time along with Mediaspan Newsedit/IQue to access pages, and graphics/images are stored on a file server.  They print to an HP Laserjet 5200 and a Sharp MX3100 copier.  While they do get a few crahses on the large Sharp copier while pirint, they get many more crashes when printing to the HP Laserjet 5200.  All 5 computers are clones, so they are all based on the same image and they all encounter crashes when printing, and while doing other things such as opening files.
    This problem has been happening for the past 6-9 months, and I cant determine what may have changed to have caused it.  I have already cleared the PPD's, as well as the crash recovery folders.  I have ran DiskWarrior 4.3 on all of them as well as the normal Apple disk maintenance software.  The Adobe Suite is CS3 with the latest service pack.  I have recently ordered an addtional 4GB of RAM to bring thre of them from 4 to 8 GB in an attemtp to see if there is any difference in crashing.
    I have many crash logs from both printing, as well as non printing.  Because Printing is more of an issue and happens more than non printing, I will post the most recent printing crash log.  I can follow up with a non printing crash log if that can help diagnose it better.
    Thanks,
    =================================
    Process:         Adobe InDesign CS3 [570]
    Path:            /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    Identifier:      com.adobe.InDesign
    Version:         5.0.4.682 (5040)
    Code Type:       X86 (Native)
    Parent Process:  launchd [125]
    Date/Time:       2013-03-03 19:27:33.318 -0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          449308 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  347556 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      A2F3363D-51FA-4BF5-A541-8B64748C2B26
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x93e3dc5a __kill + 10
    1   libSystem.B.dylib                 0x93e3dc4c kill$UNIX2003 + 32
    2   libSystem.B.dylib                 0x93ed05a5 raise + 26
    3   libSystem.B.dylib                 0x93ee66e4 abort + 93
    4   libstdc++.6.dylib                 0x95d6cfda __gnu_cxx::__verbose_terminate_handler() + 433
    5   libstdc++.6.dylib                 0x95d6b17a __cxxabiv1::__terminate(void (*)()) + 10
    6   libstdc++.6.dylib                 0x95d6b1ba __cxxabiv1::__unexpected(void (*)()) + 0
    7   libstdc++.6.dylib                 0x95d6b2b8 __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    8   AdobeAGM                          0x0029c2cb AGMInitialize + 1368139
    9   AdobeAGM                          0x00330117 AGMInitialize + 1973911
    10  AdobeAGM                          0x002d3032 AGMInitialize + 1592754
    11  AdobeAGM                          0x002d44a6 AGMInitialize + 1597990
    12  AdobeAGM                          0x002cd653 AGMInitialize + 1569747
    13  AdobeAGM                          0x0015d8d5 AGMInitialize + 63061
    14  AdobeAGM                          0x0033d132 AGMInitialize + 2027186
    15  AdobeBIB                          0x0075d60d BIBInitialize2 + 15359
    16  AdobeBIB                          0x0075d6bb BIBInitialize2 + 15533
    17  com.adobe.InDesign.Print          0x2154d18f GetPlugIn + 183995
    18  com.adobe.InDesign.Print          0x215518b4 GetPlugIn + 202208
    19  PublicLib.dylib                   0x00f0d270 Command::DoImmediate(short) + 34
    20  com.adobe.InDesign.Utilities      0x1eaa29c7 0x1eaa0000 + 10695
    21  com.adobe.InDesign.Utilities      0x1eaa2bee 0x1eaa0000 + 11246
    22  ...adobe.InDesign.AppFramework    0x1ddcd144 0x1ddb5000 + 98628
    23  PublicLib.dylib                   0x00f0e1d5 CmdUtils::ProcessCommand(ICommand*) + 55
    24  com.adobe.InDesign.Print          0x21553920 GetPlugIn + 210508
    25  PublicLib.dylib                   0x00f0d270 Command::DoImmediate(short) + 34
    26  com.adobe.InDesign.Utilities      0x1eaa29c7 0x1eaa0000 + 10695
    27  com.adobe.InDesign.Utilities      0x1eaa2bee 0x1eaa0000 + 11246
    28  ...adobe.InDesign.AppFramework    0x1ddcd144 0x1ddb5000 + 98628
    29  PublicLib.dylib                   0x00f0e1d5 CmdUtils::ProcessCommand(ICommand*) + 55
    30  com.adobe.InDesign.PrintUI        0x23f91f6b GetPlugIn + 5559
    31  WidgetBinLib.dylib                0x023a11fc CActionComponent::DoAction(IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 34
    32  ...aspansoftware.IQue.DragInUI    0x24a01df4 (anonymous namespace)::DoActualAction(IDType<ClassID_tag>, IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 100
    33  ...aspansoftware.IQue.DragInUI    0x24a067af DragInUIActionComponent::DoAction(IActiveContext*, IDType<ActionID_tag>, SysPoint, IPMUnknown*) + 997
    34  com.adobe.InDesign.Actions        0x22ed8867 GetPlugIn + 5787
    35  com.adobe.InDesign.Actions        0x22ecd95b 0x22ecb000 + 10587
    36  WidgetBinLib.dylib                0x0239f17f MDefaultEH::KeyboardShortcut(IEvent*) + 473
    37  WidgetBinLib.dylib                0x0239ea06 CDefaultEH::KeyDown(IEvent*) + 150
    38  WidgetBinLib.dylib                0x0239ef8a MDefaultEH::KeyDown(IEvent*) + 162
    39  PublicLib.dylib                   0x00f25ab5 CEventDispatcher::DispatchToEventHandlers(IEvent*) + 157
    40  PublicLib.dylib                   0x00f25704 CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 24
    41  ...obe.InDesign.Application UI    0x1e10e025 GetPlugIn + 196289
    42  ...obe.InDesign.Application UI    0x1e10c4eb GetPlugIn + 189319
    43  com.apple.HIToolbox               0x9a5c1c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    44  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    45  com.apple.HIToolbox               0x9a5e37f3 SendEventToEventTarget + 52
    46  com.apple.HIToolbox               0x9a5f56d7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2161
    47  com.apple.HIToolbox               0x9a5c2080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    48  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    49  com.apple.HIToolbox               0x9a5e37f3 SendEventToEventTarget + 52
    50  com.apple.HIToolbox               0x9a6459de SendTSMEvent + 82
    51  com.apple.HIToolbox               0x9a64535b SendUnicodeTextAEToUnicodeDoc + 700
    52  com.apple.HIToolbox               0x9a644f65 TSMKeyEvent + 998
    53  com.apple.HIToolbox               0x9a635e32 TSMProcessRawKeyEvent + 2515
    54  com.apple.HIToolbox               0x9a68396f HandleCompatibilityKeyEvent + 331
    55  com.apple.HIToolbox               0x9a5bd9b2 HIApplication::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2716
    56  com.apple.HIToolbox               0x9a5c1c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    57  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    58  com.apple.HIToolbox               0x9a5c0d55 SendEventToEventTargetWithOptions + 58
    59  com.apple.HIToolbox               0x9a5f560b ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1957
    60  com.apple.HIToolbox               0x9a5c2080 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2672
    61  com.apple.HIToolbox               0x9a5c0ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    62  com.apple.HIToolbox               0x9a5e37f3 SendEventToEventTarget + 52
    63  ...adobe.InDesign.AppFramework    0x1ddb72af 0x1ddb5000 + 8879
    64  ...adobe.InDesign.AppFramework    0x1ddd4750 GetPlugIn + 10840
    65  com.adobe.InDesign                0x0000277b main + 115
    66  com.adobe.InDesign                0x0000209e start + 258
    67  com.adobe.InDesign                0x00001fc5 start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x93e03382 kevent + 10
    1   libSystem.B.dylib                 0x93e03a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x93e02f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x93e02cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x93e02781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x93e025c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x93ddcb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93e395a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore    0x96cbab90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    5   PMRuntime.dylib                   0x000129b3 GetAvailContiguous() + 165
    6   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    7   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    8   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x93ddcafa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ddd267 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore    0x96d62ab0 TS_exception_listener_thread + 160
    3   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    4   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x93e0aaa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93e0a75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93e0c3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x96ccf21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x96cbab68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    6   AdobeACE                          0x0004a743 0x1a000 + 198467
    7   AdobeACE                          0x00049f71 0x1a000 + 196465
    8   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x93e0aaa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93e0a75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93e0c3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x96ccf21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x96cbab68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    6   AdobeACE                          0x0004a743 0x1a000 + 198467
    7   AdobeACE                          0x00049f71 0x1a000 + 196465
    8   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x93e0aaa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93e0a75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93e0c3f8 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore    0x96ccf21e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore    0x96cbab68 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore    0x96cb6533 MPWaitOnQueue + 250
    6   AdobeACE                          0x0004a743 0x1a000 + 198467
    7   AdobeACE                          0x00049f71 0x1a000 + 196465
    8   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    9   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x93ddcb5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93e395a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x9297a8e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x929333b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x92933294 -[NSConditionLock lockWhenCondition:] + 69
    6   PublicLib.dylib                   0x0113f4e1 devtech_private::ZString::BackDoorGetUnicode(unsigned short*, unsigned long, bool) const + 397
    7   PublicLib.dylib                   0x01133f55 devtech::ZString::GetInternalData(unsigned short const**, unsigned long*) const + 2503
    8   PublicLib.dylib                   0x0113d0f8 devtech::ZString::GetInternalData(unsigned short const**, unsigned long*) const + 39786
    9   com.apple.Foundation              0x9293e4c4 -[NSThread main] + 45
    10  com.apple.Foundation              0x9293e474 __NSThread__main__ + 1499
    11  libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    12  libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x93ddcb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x93e5305f pthread_cond_wait + 48
    3   TINthread.dylib                   0x242b77a5 ThreadUtils::ThreadPool::Dispatcher() + 277
    4   TINthread.dylib                   0x242b783f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x93ddcb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x93e5305f pthread_cond_wait + 48
    3   ...obe.InDesign.AdGrabber4.CS3    0x1dc2f2f5 XMLRecvThread::Run() + 111
    4   ...obe.InDesign.AdGrabber4.CS3    0x1dc2f311 XMLRecvThread::StartRoutine(void*) + 17
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x93ddcb42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                 0x93e0a6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                 0x93e5305f pthread_cond_wait + 48
    3   ...obe.InDesign.AdGrabber4.CS3    0x1dc2e71e XMLSendThread::Run() + 240
    4   ...obe.InDesign.AdGrabber4.CS3    0x1dc2e735 XMLSendThread::StartRoutine(void*) + 17
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x93ddcc0e mach_wait_until + 10
    1   libSystem.B.dylib                 0x93e64429 nanosleep + 345
    2   ...sign.Support for JavaScript    0x2767dc03 TerminateConnection + 238555
    3   ...sign.Support for JavaScript    0x2766f641 TerminateConnection + 179737
    4   ...sign.Support for JavaScript    0x2767dced TerminateConnection + 238789
    5   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                 0x93ddcb4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x96ccc942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2ae1306b ThreadFunction(void*) + 77
    3   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    5   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                 0x93ddcb4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x96ccc942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2ae1306b ThreadFunction(void*) + 77
    3   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    5   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x93ddcb4e semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore    0x96ccc942 MPWaitOnSemaphore + 125
    2   MultiProcessor Support            0x2ae1306b ThreadFunction(void*) + 77
    3   ...ple.CoreServices.CarbonCore    0x96c9a54a PrivateMPEntryPoint + 68
    4   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    5   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 15:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x93dfbac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x922e6c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x93e0a259 _pthread_start + 345
    3   libSystem.B.dylib                 0x93e0a0de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000  ebx: 0x93ee6693  ecx: 0xbfffbd7c  edx: 0x93e3dc5a
    edi: 0xa0447b30  esi: 0x004d22b0  ebp: 0xbfffbd98  esp: 0xbfffbd7c
    ss: 0x00000023  efl: 0x00000282  eip: 0x93e3dc5a   cs: 0x0000000b
    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
    cr2: 0xf94e6000
    Binary Images:
    0x1000 -     0x3fff +com.adobe.InDesign 5.0.4.682 (5040) <B1E85AB9-4BDB-4519-A7CB-818B7547B67B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Adobe InDesign CS3
    0x8000 -     0x8fff +InDesignModel ??? (???) <40D79185-3619-4F05-82AE-68B9A4386725> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
    0xc000 -     0xcfff +InDesignModelAndUI ??? (???) <B42DD96C-21E7-4933-8656-24339222F36B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
    0x10000 -    0x14fef +PMRuntime.dylib ??? (???) <2EA00C2F-B52A-4BA0-AC44-8661710844CB> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PMRuntime.dylib
    0x1a000 -   0x11afe7 +AdobeACE ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x139000 -   0x5b7fff +AdobeAGM ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x70d000 -   0x74cfff +AdobeARE ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x756000 -   0x76ffff +AdobeBIB ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x779000 -   0x79aff7 +AdobeBIBUtils ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x7a7000 -   0xa0cfc7 +AdobeCoolType ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0xa89000 -   0xda5fef +AdobeMPS ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0xe1c000 -   0xe89fef +ObjectModelLib.dylib ??? (???) <9B7EB1CF-F8AC-4DB2-A423-712DEFC1E70D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/ObjectModelLib.dylib
    0xeab000 -   0xedbfcf +DataBaseLib.dylib ??? (???) <21AF2E90-75EC-493D-8BFB-DB197B79CF9F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/DataBaseLib.dylib
    0xeea000 -  0x137aff8 +PublicLib.dylib ??? (???) <F49BE5C3-EFCF-4803-9181-882B579F568D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PublicLib.dylib
    0x1595000 -  0x15b9fea +AdobeAFL ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x15d5000 -  0x1684fd7 +AdobeSVGExport ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x16b7000 -  0x16bdfdf +com.adobe.AdobeCrashReporter 2.5 (2.5.03072007) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x16c3000 -  0x1f30fff +libicudata.dylib.34.0 34.0.0 (compatibility 34.0.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUData.framework/Versions/3.4/libicudata.dylib.34.0
    0x1f33000 -  0x1ff39fb +libicui18n.dylib.34.0 34.0.0 (compatibility 34.0.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.4/libicui18n.dyl ib.34.0
    0x207b000 -  0x2143387 +libicuuc.dylib.34.0 34.0.0 (compatibility 34.0.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.4/libicuuc.dylib.34.0
    0x2193000 -  0x220aff7 +libboost_regex-mt-1_33.dylib ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/libboost_regex-mt-1_33.dylib
    0x2264000 -  0x22abfc7 +com.adobe.adobe_caps adobe_caps 0.0.120.0 (0.0.120.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x22b1000 -  0x22f1ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x230a000 -  0x2462ffd +WidgetBinLib.dylib ??? (???) <EEF2CA93-B6E3-449E-A963-893471395377> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/WidgetBinLib.dylib
    0x2570000 -  0x26dbff7 +AdobeOwl ??? (???) <4F473F2F-D9A9-41DF-94DF-F311FA16B720> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x27a5000 -  0x27a6fff +com.adobe.InDesign.Metadata Database Filter 5.0.0.458 (???) <CC8859BB-C15A-4709-B912-FD85C537F6EC> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x27bf000 -  0x27c0fff +com.adobe.InDesign.Global Preferences Panel 5.0.0.458 (???) <693EF424-C046-4F46-B986-0F363C59468B> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x27c5000 -  0x27c9fd8  com.apple.carbonframeworktemplate 1.1 (1.1.0) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x7538000 -  0x753fff2 +com.adobe.Writer for Text Writer for Text 4.2 (4.2.0.22) <2E03F227-3055-4409-93FF-A231BB4C3627> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Writers/Writer for Text.smwt/Contents/MacOS/Writer for Text
    0x75ee000 -  0x75f0ff7  com.apple.printingprivate.framework.PrintingPrivate 6.1 (15.2) <1A6E0614-420C-1E2B-43DA-722639B1FBCB> /System/Library/PrivateFrameworks/PrintingPrivate.framework/PrintingPrivate
    0x77e8000 -  0x77e9ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x77ee000 -  0x77fcfe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <AFA4C3C8-D752-EC96-FF56-6E2F8ABB391B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1d4b9000 - 0x1d4cbff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <08801444-00D2-E55B-AE80-B807B99BB0C6> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1d508000 - 0x1d50fff3 +com.adobe.InDesign.Scripts Panel 5.0.0.458 (???) <E40BF92F-6275-4C9F-BF25-2016C5021CFD> /Applications/Adobe InDesign CS3/Plug-ins/Script/Scripts Panel.InDesignPlugin/Scripts Panel
    0x1d519000 - 0x1d52bff3 +com.adobe.InDesign.IME 5.0.4.682 (???) <95942223-32AD-44B1-A0B7-2DB2E0F2F62A> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0x1d573000 - 0x1d57bff3  com.apple.URLMount.AFPPlugin 3.2.2 (3.2.2) <46711A0E-D330-BD32-8B30-1FFE8B3346F0> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0x1d582000 - 0x1d588fff +com.adobe.InDesign.InCopySharedUI 5.0.0.458 (???) <322B8FCA-C43A-4B73-93EA-0B44B4B82640> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/InCopySharedUI.InDesignPlugin/InCopySharedUI
    0x1d590000 - 0x1d591fff +com.adobe.InDesign.Help 5.0.0.458 (???) <59C676A7-D46D-4BF8-A44B-5649E240AA35> /Applications/Adobe InDesign CS3/Plug-ins/UI/Help.InDesignPlugin/Help
    0x1d597000 - 0x1d599fff +com.adobe.InDesign.Username UI 5.0.0.458 (???) <7946FF7E-3349-498D-93F5-1F0D51D25707> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/Username UI.InDesignPlugin/Username UI
    0x1d5e2000 - 0x1d5efff2 +com.adobe.InDesign.PMWelcomeScreen 5.0.0.458 (???) <D235E4C3-BBCF-40A3-88B2-3E91C664269D> /Applications/Adobe InDesign CS3/Plug-ins/PMPack/PMWelcomeScreen.InDesignPlugin/PMWelcomeScreen
    0x1d700000 - 0x1d726fe2 +com.adobe.Writer for RTF Writer for RTF 4.2 (4.2.0.22) <1D5DAE82-ABDA-4125-B599-B7B4E1C5E078> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Writers/Writer for RTF.smwt/Contents/MacOS/Writer for RTF
    0x1d94f000 - 0x1d953ff7 +com.adobe.InDesign.Keeps Panel 5.0.0.458 (???) <CDB33F72-0447-42FE-81EC-D0799FB2CD6E> /Applications/Adobe InDesign CS3/Plug-ins/Text/Keeps Panel.InDesignPlugin/Keeps Panel
    0x1da2c000 - 0x1da32ff7 +com.adobe.InDesign.GenericSettings 5.0.0.458 (???) <0B8E02A0-5809-4DC7-B773-3F6B8B1B2048> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericSettings
    0x1da67000 - 0x1daaeff7  com.apple.AppleShareClientCore 2.1 (2.1) <351D93FA-D8AB-657F-2A67-9A6FF3875F82> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
    0x1daf1000 - 0x1daf6fff +com.adobe.InDesign.Workgroup UI 5.0.4.682 (???) <C8DDDEAF-ECBF-481B-9D50-391268443997> /Applications/Adobe InDesign CS3/Plug-ins/Workgroup/Workgroup UI.InDesignPlugin/Workgroup UI
    0x1dc00000 - 0x1dc4bfcb +com.adobe.InDesign.AdGrabber4.CS3 4.3.1.0 (???) <52DD0083-66C6-40E8-8B29-31BF345B13F4> /Applications/Adobe InDesign CS3/Plug-ins/Layout/AdGrabber4.CS3.InDesignPlugin/AdGrabber4.CS3
    0x1dd8b000 - 0x1dda6fff +com.adobe.InDesign.Plugin Manager 5.0.0.458 (???) <6D0D804D-2F29-46BC-BF82-ED25ABB6086B> /Applications/Adobe InDesign CS3/Plug-ins/Utility/Plugin Manager.InDesignPlugin/Plugin Manager
    0x1ddb5000 - 0x1dedafe3 +com.adobe.InDesign.AppFramework 5.0.4.682 (???) <9BBA0C9F-2C1E-4EF3-8C30-F7E761207844> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x1e0ae000 - 0x1e231ff3 +com.adobe.InDesign.Application UI 5.0.4.682 (???) <D3A0FBAC-3FEA-4E26-8166-356C6F14A154> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x1e2be000 - 0x1e343fff +AdobeExtendScript 3.7.0 (compatibility 3.7.0) <EF6B3A34-C43A-45D3-BCD3-D7D450B5C6CD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1e37f000 - 0x1e3fbfef +AdobeScCore 3.7.0 (compatibility 3.7.0) <17A0DA14-E4D4-42B0-81B4-B75E4CB2DD8C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x1e439000 - 0x1e5b6ffb +com.adobe.InDesign.Text Walker 5.0.0.458 (???) <04A3777D-DC3E-4DB8-9B73-7848892730A1> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Walker.InDesignPlugin/Text Walker
    0x1e64d000 - 0x1e695ffb +com.adobe.InDesign.Linguistics 5.0.4.682 (???) <9F3AD4D7-56F2-4F48-BE09-F0D7D7701E09> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0x1e6b8000 - 0x1e6e8fff +com.adobe.InDesign.Text Panel 5.0.0.458 (???) <4DDA3134-B6AC-45D0-B61E-DE2C1773E545> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Panel.InDesignPlugin/Text Panel
    0x1e6fa000 - 0x1e724fef +TextPanelLib.dylib ??? (???) <47B64D3E-4DAF-4EEA-A02F-A7A52601B6CD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/TextPanelLib.dylib
    0x1e747000 - 0x1e76efe3 +com.adobe.InDesign.Spelling Panel 5.0.0.458 (???) <56460421-FF84-45E6-92AA-43626E38B270> /Applications/Adobe InDesign CS3/Plug-ins/Text/Spelling Panel.InDesignPlugin/Spelling Panel
    0x1e780000 - 0x1e7f9ff3 +com.adobe.InDesign.Text Editor 5.0.0.458 (???) <7677E1F3-26C7-43BB-8655-B41C08310052> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0x1e818000 - 0x1e92cfe7 +com.adobe.InDesign.Layout UI 5.0.4.682 (???) <ED6DDA51-E1C3-4889-8938-6FD3A9184650> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0x1e995000 - 0x1e9c1ff7 +com.adobe.InDesign.Import Export UI 5.0.0.458 (???) <0D90A717-9DF4-4DF0-9F1C-9EEA4889E11C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0x1e9dc000 - 0x1ea37ffb +com.adobe.InDesign.Hyperlinks 5.0.0.458 (???) <1359AA1D-E4EA-4BF7-8D8F-7BCA8AB2AB61> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0x1ea4b000 - 0x1ea8fffb +com.adobe.InDesign.Master Page 5.0.4.682 (???) <11214FFF-49DC-4479-BA70-B2BA83B481A0> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x1eaa0000 - 0x1eabdfef +com.adobe.InDesign.Utilities 5.0.4.682 (???) <D7455929-9796-4277-92C4-B12F2B6086AD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0x1ead2000 - 0x1eb73ffb +com.adobe.InDesign.Color Management 5.0.0.458 (???) <D0F8049B-EB18-44BC-AB25-22F1595F3247> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0x1eb9e000 - 0x1ebd0feb +com.adobe.InDesign.Note 5.0.0.458 (???) <A274D200-D554-4003-84BF-365B89216A93> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/Note.InDesignPlugin/Note
    0x1ebe4000 - 0x1ebf2fff +com.adobe.InDesign.Workgroup Client 5.0.4.682 (???) <0B493720-F8EE-4141-A0CE-D4F0F982A0D4> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
    0x1ebf9000 - 0x1ebfaff7  ATSHI.dylib ??? (???) <F06AB560-C2AF-09F6-7328-773E43CA2713> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x1ee00000 - 0x1ef09fff +com.adobe.InDesign.Document Framework 5.0.4.682 (???) <040E5EDC-859D-4EDD-A93E-EA845DBB7B52> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x1efae000 - 0x1f02102b +com.adobe.InDesign.Q2IDv3_CS3 v3.63 (???) <EFD32728-5C5A-46CA-9ECA-ED6722877595> /Applications/Adobe InDesign CS3/Plug-ins/Q2IDv3_CS3.InDesignPlugin/Q2IDv3_CS3
    0x1f0c9000 - 0x1f1c3feb +com.mediaspansoftware.IQue.Common 5.3.5 .0 (???) <2228137A-1B91-4170-A199-F509E3754920> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/Common.InDesignPlugin/Common
    0x1f2dc000 - 0x1f367ffb +com.mediaspansoftware.IQue.CommonUI 5.3.5 .0 (???) <15E9BCA7-E6CF-468B-8003-5978A927D17A> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/CommonUI.InDesignPlugin/CommonUI
    0x1f3eb000 - 0x1f5a7fff +com.adobe.InDesign.XML 5.0.4.682 (???) <2F368287-0EE5-4DD0-929E-85A450A08D26> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
    0x1f642000 - 0x1f713fef +AdobeAXEDOMCore ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x1f745000 - 0x1f833fff +com.adobe.InDesign.XMedia UI 5.0.4.682 (???) <E526BDD4-BF57-4027-8635-FCEF8B5202A2> /Applications/Adobe InDesign CS3/Plug-ins/XMedia/XMedia UI.InDesignPlugin/XMedia UI
    0x1f899000 - 0x1f8faffb +com.adobe.InDesign.TableStylesUI 5.0.0.458 (???) <0E2577DB-0D37-450A-B63E-67BD3B36BD26> /Applications/Adobe InDesign CS3/Plug-ins/Tables/TableStylesUI.InDesignPlugin/TableStylesUI
    0x1f919000 - 0x1fad2ffc +com.adobe.InDesign.Table Model 5.0.0.458 (???) <E7338D64-7690-45CE-94B2-8CC508842208> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
    0x1fb4b000 - 0x1fbd8fe7 +com.adobe.InDesign.Tables UI 5.0.0.458 (???) <20BE7B63-0947-45E7-BD3F-8E332E701D5F> /Applications/Adobe InDesign CS3/Plug-ins/Tables/Tables UI.InDesignPlugin/Tables UI
    0x1fbfb000 - 0x1fd0cff7 +com.adobe.InDesign.Galley 5.0.4.682 (???) <3B17EC29-231A-47CF-8E3C-9A4F786375FE> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Galley.InDesignPlugin/Galley
    0x1fd58000 - 0x1fddcfeb +com.adobe.InDesign.Graphics 5.0.4.682 (???) <CF9D21CB-F42F-4A94-AAE7-9F07101750C7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
    0x1fdf8000 - 0x1fee3ff3 +com.adobe.InDesign.Transparency 5.0.4.682 (???) <BBDCCD4E-5129-4D9C-9AFA-0C32A1B64B7E> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparency
    0x1ff2c000 - 0x20bd3feb +com.adobe.psl 10.312765.46.313722 (10.312765.46.313722) <C0C4D40C-B84D-4740-BF61-35D5FBFC00FF> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x20ef2000 - 0x20f15ff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x20f1d000 - 0x20f72ffd +AdobeXMP ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x20fa1000 - 0x212adfcf +com.adobe.InDesign.Text 5.0.4.682 (???) <50295B31-CCBA-478D-A5C5-8702DAC13D7C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
    0x21337000 - 0x21374ffb +com.adobe.InDesign.Text Wrap 5.0.4.682 (???) <32895FDE-AF63-49D2-9AA9-8E0B0F3B4B79> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
    0x21386000 - 0x213c7fef +com.adobe.InDesign.Gradient Fill 5.0.0.458 (???) <F4F2DFF0-5C9D-49C4-A651-0F1F02A9428F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
    0x213da000 - 0x214eaffb +com.adobe.InDesign.Generic Page Item 5.0.4.682 (???) <31A42D7B-777B-4448-832C-68D4C6CD3F07> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
    0x2151f000 - 0x2163afe3 +com.adobe.InDesign.Print 5.0.0.458 (???) <0C7F8380-7B66-4126-BD7A-B5E764C84833> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
    0x21690000 - 0x216dffeb +com.adobe.InDesign.CJKGrid 5.0.4.682 (???) <C9BBE76F-7107-4CA3-B629-FC2E7BDB817D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
    0x216f3000 - 0x2172dfeb +com.adobe.InDesign.Stroke and Fill 5.0.0.458 (???) <8A29824D-3A5E-4A27-A588-D7D6935FD86D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
    0x2173c000 - 0x2179bfff +com.adobe.InDesign.FormField 5.0.0.458 (???) <423AA6D9-1ACF-4819-8806-BA5B7343B7F3> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
    0x217c4000 - 0x217e3fe7 +com.adobe.InDesign.Find Change Format Panel 5.0.0.458 (???) <7671FB52-74A6-4DFF-B1BE-B54E1A8FB313> /Applications/Adobe InDesign CS3/Plug-ins/Text/Find Change Format Panel.InDesignPlugin/Find Change Format Panel
    0x217ee000 - 0x217f4fff +com.adobe.InDesign.Workgroup Client UI 5.0.4.682 (???) <6A4B63B8-6AC6-4432-85D4-0F9EDB61D1D7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0x21900000 - 0x21929fef +com.adobe.InDesign.Text Attributes 5.0.0.458 (???) <5EB4606D-80FD-49EF-A016-4B4F03C7BBC6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
    0x2193d000 - 0x219e9fef +com.adobe.InDesign.Find and Change Panel 5.0.4.682 (???) <696E777E-A54B-4BF4-93D9-8B34E41D2B5E> /Applications/Adobe InDesign CS3/Plug-ins/Text/Find and Change Panel.InDesignPlugin/Find and Change Panel
    0x21a15000 - 0x21accfff +com.mediaspansoftware.IQue.ConnectionManagement 5.3.5 .0 (???) <DA6E45A6-C3D1-4D69-90A5-82DBB972C97B> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/ConnectionManagement.InDesignPlugin/ConnectionManagement
    0x21b69000 - 0x21b9bff7 +com.adobe.InDesign.AWSUI 5.0.0.458 (???) <C2460D67-B740-41E6-8C4C-CD97929F158F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AWSUI.InDesignPlugin/AWSUI
    0x21bb6000 - 0x21bffffb +com.adobe.InDesign.AWS 5.0.0.458 (???) <3CC41036-743E-4B6D-A6AB-743D69A85613> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
    0x21c20000 - 0x22059ff7 +com.adobe.versioncue 3.1.0.0 (3.1.0.0) /Library/Application Support/Adobe/Adobe Version Cue CS3/Client/3.1.0/VersionCue.framework/VersionCue
    0x2214a000 - 0x22170fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <9203FADE-F4F2-2245-A32E-BD88819D314D> /usr/lib/libssl.0.9.7.dylib
    0x2217f000 - 0x22234fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2227a000 - 0x2228efff +com.adobe.InDesign.Rulers 5.0.4.682 (???) <F4DBA320-9CE5-429E-9457-27DF0E13441F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Rulers.InDesignPlugin/Rulers
    0x222a0000 - 0x222be00f +com.adobe.InDesign.Workgroup 5.0.4.682 (???) <BF77FEB9-F4FA-479A-A5F2-324430200B80> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
    0x222c7000 - 0x22359ff7 +com.adobe.InDesign.InCopyWorkflow 5.0.0.458 (???) <6639A154-67A2-4BD0-A74C-C607BCF4DC0A> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWorkflow
    0x2239b000 - 0x22450ff7 +com.adobe.InDesign.InCopyShared 5.0.4.682 (???) <84802C43-1148-40A9-8A9A-A4FF07C0A5FA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShared
    0x22496000 - 0x224baff7 +com.adobe.InDesign.InCopy Bridge 5.0.4.682 (???) <48E731B3-86A4-4DD9-B8FA-C988F3EF956B> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopy Bridge.InDesignPlugin/InCopy Bridge
    0x224c6000 - 0x2257ffe1 +com.adobe.InDesign.Indexing 5.0.4.682 (???) <432E3821-DC6E-452B-A28C-A35C0957213F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
    0x225b7000 - 0x225e6ffb +com.adobe.InDesign.Output Preview 5.0.4.682 (???) <62CB922C-0190-4CFE-9D39-4C01E47FB1AA> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Output Preview.InDesignPlugin/Output Preview
    0x225f7000 - 0x22656ffb +com.adobe.InDesign.Glyphs Panel 5.0.0.458 (???) <7E2FECBE-E228-4F60-B315-0A07EAB77612> /Applications/Adobe InDesign CS3/Plug-ins/Text/Glyphs Panel.InDesignPlugin/Glyphs Panel
    0x2266c000 - 0x226d0ff7 +com.adobe.InDesign.XMLParser 5.0.0.458 (???) <72EA1124-4504-4E5F-8C28-B470D381BA5D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
    0x22703000 - 0x22766fff +AdobeAXEParser ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXEParser.framework/Versions/A/AdobeAXEParser
    0x22782000 - 0x2283ffff +AdobeAXSLE ??? (???) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x2286e000 - 0x228c7fef +com.adobe.InDesign.CJK Text Attributes 5.0.0.458 (???) <DCE49BEA-5BE0-4156-BE7F-147494C71A5F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
    0x228e0000 - 0x22984feb +com.adobe.InDesign.Font Manager 5.0.4.682 (???) <08D1639E-9042-4F48-A705-DD394FB8D5FA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
    0x22a1b000 - 0x22a1ffff +com.adobe.InDesign.InCopyWorkflow UI 5.0.0.458 (???) <6955319C-2E61-413B-A4BE-6F0D2583D10B> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyWorkflow UI.InDesignPlugin/InCopyWorkflow UI
    0x22a49000 - 0x22a4efef +com.adobe.InDesign.General Preferences Panel 5.0.0.458 (???) <97415234-1B28-4D38-8A96-E19DDDF95DE6> /Applications/Adobe InDesign CS3/Plug-ins/UI/General Preferences Panel.InDesignPlugin/General Preferences Panel
    0x22a57000 - 0x22a57ff7  com.apple.applescript.component 2.1.2 (2.1.2) <C753B747-FBB7-EF99-32C9-133CA88FD5C4> /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x22a75000 - 0x22a85fff +com.adobe.InDesign.Guides 5.0.4.682 (???) <18406BEE-7811-4A41-8341-18D7CDDB9AF1> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
    0x22aa2000 - 0x22aa2ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x22aed000 - 0x22af3feb +com.adobe.InDesign.Text Color Panel 5.0.0.458 (???) <072591AA-A2E0-44CA-8982-056229E9598A> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Color Panel.InDesignPlugin/Text Color Panel
    0x22af8000 - 0x22afafff +com.adobe.InDesign.SimpleTextImportFilter 5.0.0.458 (???) <AFC35B5D-6977-498F-A6C0-7378C24ADC69> /Applications/Adobe InDesign CS3/Plug-ins/Filters/SimpleTextImportFilter.InDesignPlugin/SimpleTextImportFilter
    0x22b00000 - 0x22b10fff +com.adobe.InDesign.SING 5.0.0.458 (???) <101E0AF3-FCAF-4902-8E7E-331A176E61DD> /Applications/Adobe InDesign CS3/Plug-ins/Text/SING.InDesignPlugin/SING
    0x22b19000 - 0x22b73fe7 +com.adobe.SING.bundle 11.4.0 (11.4.0) <B4FBAE4D-E332-4E95-821E-C7E39BFDEE50> /Library/Application Support/Adobe/SING/SING.bundle/Contents/MacOS/SING
    0x22c8f000 - 0x22c98fff +com.adobe.InDesign.Paragraph Rules Panel 5.0.0.458 (???) <C3BD8CD8-9B50-4241-9499-56BEE7C8C8A5> /Applications/Adobe InDesign CS3/Plug-ins/Text/Paragraph Rules Panel.InDesignPlugin/Paragraph Rules Panel
    0x22ca2000 - 0x22caefe7 +com.adobe.InDesign.RunIn Styles Panel 5.0.0.458 (???) <DBEE6188-6AF7-4366-A800-77D5CC719BEE> /Applications/Adobe InDesign CS3/Plug-ins/Text/RunIn Styles Panel.InDesignPlugin/RunIn Styles Panel
    0x22cd2000 - 0x22cd7fef +com.adobe.InDesign.Document UI 5.0.4.682 (???) <8218D4C1-12B5-4656-89EB-9BEC5CBA3C09> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document UI.InDesignPlugin/Document UI
    0x22d2a000 - 0x22d3efef +com.adobe.InDesign.Document Actions 5.0.0.458 (???) <495400EB-B390-4A66-9B6D-81C0A841058F> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
    0x22d48000 - 0x22d61ff3 +com.adobe.InDesign.Optical Kerning 5.0.0.458 (???) <B0780089-D891-4294-9881-8237BB949911> /Applications/Adobe InDesign CS3/Plug-ins/Text/Optical Kerning.InDesignPlugin/Optical Kerning
    0x22d6a000 - 0x22d7eff3 +com.adobe.InDesign.Text Frame Options 5.0.0.458 (???) <EA8842D0-DABF-4980-83C4-4507A204C3D8> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Frame Options.InDesignPlugin/Text Frame Options
    0x22d93000 - 0x22d9afeb +com.adobe.InDesign.Tool Tips 5.0.0.458 (???) <4B227DB1-BCC1-4A6C-A703-CE507D59F6BF> /Applications/Adobe InDesign CS3/Plug-ins/UI/Tool Tips.InDesignPlugin/Tool Tips
    0x22e17000 - 0x22e1cfef +com.adobe.InDesign.Hyphenation Panel 5.0.0.458 (???) <A18BA408-B78C-41C7-966E-F000F8F6F914> /Applications/Adobe InDesign CS3/Plug-ins/Text/Hyphenation Panel.InDesignPlugin/Hyphenation Panel
    0x22e25000 - 0x22e28fff +com.adobe.InDesign.PNG Import Filter UI 5.0.0.458 (???) <219F77F4-FB2C-4967-9D25-60C4198DB153> /Applications/Adobe InDesign CS3/Plug-ins/Filters/PNG Import Filter UI.InDesignPlugin/PNG Import Filter UI
    0x22e2d000 - 0x22e31fff +com.adobe.InDesign.StepRepeat 5.0.4.682 (???) <C3EE7F06-93EB-45A8-A35B-461C2DA03F11> /Applications/Adobe InDesign CS3/Plug-ins/Layout/StepRepeat.InDesignPlugin/StepRepeat
    0x22e43000 - 0x22e4bffc +PathTypeLib.dylib ??? (???) <18C15E31-C72D-4EEA-8452-2444772CFC43> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PathTypeLib.dylib
    0x22e52000 - 0x22e54fe7 +com.adobe.InDesign.Layout Adjustment Panel 5.0.0.458 (???) <0051EC6E-8721-4CCE-9EE7-183BE332A566> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Layout Adjustment Panel.InDesignPlugin/Layout Adjustment Panel
    0x22ecb000 - 0x22f16fdf +com.adobe.InDesign.Actions 5.0.0.458 (???) <6B80AA4C-EFB8-4E46-BA47-1E14791702F7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Actions.InDesignPlugin/Actions
    0x22f32000 - 0x22f6bfef +com.adobe.InDesign.CompFontMgr 5.0.4.682 (???) <9514C67C-86A5-418A-811A-E4FA10F0FA65> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
    0x22f7d000 - 0x22f8efff +com.adobe.InDesign.Shortcut Editor Dialog 5.0.0.458 (???) <FD95270C-FF81-4FF6-BE64-10ADAE2ED53F> /Applications/Adobe InDesign CS3/Plug-ins/UI/Shortcut Editor Dialog.InDesignPlugin/Shortcut Editor Dialog
    0x2304b000 - 0x2305bfff +com.adobe.InDesign.Create Outlines 5.0.0.458 (???) <C7D6CA71-EF03-4A40-8E3A-C3123E8335B7> /Applications/Adobe InDesign CS3/Plug-ins/Text/Create Outlines.InDesignPlugin/Create Outlines
    0x23063000 - 0x2306800e +com.adobe.InDesign.InCopyImport 5.0.0.458 (???) <DB270045-C915-4D59-96DE-22BDAE988898> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyImport.InDesignPlugin/InCopyImport
    0x2306d000 - 0x23080fff +com.adobe.AdobeSFL AdobeSFL 1.1 (1.1.0.12) <9A014AEE-FC48-4000-A00C-EB2C6FD72795> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x23087000 - 0x23093fe3 +com.adobe.epic adobe_eula 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x2309a000 - 0x2309ffff +com.adobe.InDesign.Create Guides Dialog 5.0.0.458 (???) <729142B6-15CB-4EEA-8733-F6FA07B99EF2> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Create Guides Dialog.InDesignPlugin/Create Guides Dialog
    0x230ba000 - 0x23152fff  com.apple.applescript 2.1.2 (2.1.2) <E4A816FB-C4A5-DE64-963B-3DCF031124CF> /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x23181000 - 0x231a4fe3 +PMFileReader.dylib ??? (???) <D1DB58A4-61B8-42AA-8211-D7BD076E9985> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/PMFileReader.dylib
    0x232e1000 - 0x232f801f +com.adobe.InDesign.Font Usage Dialog 5.0.0.458 (???) <C10CFFAE-C33D-4F8A-A174-9334C975953A> /Applications/Adobe InDesign CS3/Plug-ins/Text/Font Usage Dialog.InDesignPlugin/Font Usage Dialog
    0x23303000 - 0x2332afef +com.adobe.InDesign.Open Place 5.0.4.682 (???) <0B0F2BF1-58D4-4D52-9DE1-6058F50312D7> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
    0x2333e000 - 0x2335bfff +com.adobe.InDesign.Media 5.0.0.458 (???) <171C2E82-1AB9-40C8-8BBA-13C6FFEBAA8A> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
    0x23365000 - 0x233aefc3 +com.adobe.InDesign.Image Filters 5.0.4.682 (???) <AEBAE635-E10B-410D-8A51-6C516B52AB29> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
    0x233b6000 - 0x233d6ffb +com.adobe.InDesign.Dialog Layout 5.0.0.458 (???) <4B8B24B4-5CD3-44C7-9131-EBDF292A07BC> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Dialog Layout.InDesignPlugin/Dialog Layout
    0x235ed000 - 0x2362dff6 +com.adobe.Reader for DOCX Reader for DOCX 4.2 (4.2.0.22) <417CBE16-9D3B-4F28-846D-9FF55AF1A167> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Readers/Reader For DOCX.smrd/Contents/MacOS/Reader for DOCX
    0x23654000 - 0x23689fd3 +com.adobe.epic adobe_epic 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_epic.framework/adobe_epic
    0x23696000 - 0x2369afeb +com.adobe.InDesign.InCopyExport 5.0.0.458 (???) <0F2363BB-C116-4132-B79D-71FC78AA140C> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyExport.InDesignPlugin/InCopyExport
    0x236a5000 - 0x236e3feb +com.adobe.InDesign.Asset PubLibrary 5.0.0.458 (???) <5AC83352-A68B-4D23-BA8B-2758AD4994B6> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Asset PubLibrary.InDesignPlugin/Asset PubLibrary
    0x236f7000 - 0x2371dff7 +com.adobe.InDesign.Asset Library Panel 5.0.0.458 (???) <CBE05090-A4BD-47A4-BC63-A5E8DF5EA954> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Asset Library Panel.InDesignPlugin/Asset Library Panel
    0x23733000 - 0x23793fff +com.adobe.InDesign.BNCore 5.0.0.458 (???) <F425FD82-7BBA-45E4-90F8-61DB5F5A91A9> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
    0x237a9000 - 0x237d2ff3 +com.adobe.InDesign.Behavior 5.0.0.458 (???) <895A9202-2E6A-43CC-BAF3-D814F261695C> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
    0x237e8000 - 0x23876fef +com.adobe.InDesign.Links 5.0.4.682 (???) <5BF41706-8660-4576-A934-2096524D2170> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
    0x238a9000 - 0x2397fffb +com.adobe.InDesign.Image 5.0.4.682 (???) <15D37B1F-4D81-4C04-97AF-E9879E65B5D6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
    0x239c4000 - 0x23a30fff +com.adobe.InDesign.DataMerge 5.0.4.682 (???) <EB322839-ED37-4A26-940F-6B6751560452> /Applications/Adobe InDesign CS3/Plug-ins/PMPack/DataMerge.InDesignPlugin/DataMerge
    0x23a5a000 - 0x23a90fff +com.adobe.InDesign.TOC 5.0.4.682 (???) <8A7681FF-6382-4798-A3AE-D47F7283889D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
    0x23a9d000 - 0x23abeffb +com.adobe.InDesign.CellStyles.rpln 5.0.0.458 (???) <0BE3E0A6-0ED8-489C-B886-C4C9F8AFD184> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyles.rpln
    0x23acb000 - 0x23b01ff0 +com.adobe.InDesign.Spline 5.0.0.458 (???) <375E9524-DCC7-4261-8602-796322796346> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
    0x23b1a000 - 0x23b43fff +com.adobe.InDesign.Path Type 5.0.0.458 (???) <AD456B86-9F34-4347-BE93-F6071C1CD914> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
    0x23b54000 - 0x23babffe +com.adobe.InDesign.Knowledge Base 5.0.0.458 (???) <A9DD1BD0-11E0-4BE0-BF4E-A7CFD6EDE2C8> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Knowledge Base.InDesignPlugin/Knowledge Base
    0x23bc0000 - 0x23bd1fff +com.adobe.InDesign.Layout Adjustment 5.0.0.458 (???) <5AFF3870-C739-4809-AC10-698FA2F8A477> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Layout Adjustment.InDesignPlugin/Layout Adjustment
    0x23bda000 - 0x23beffff +com.adobe.InDesign.Layout 5.0.4.682 (???) <76EBF691-957F-4F01-86C6-61C6DCC37FAD> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
    0x23bf9000 - 0x23c85fef +com.adobe.InDesign.Spread 5.0.4.682 (???) <8F2DEAAC-A318-4C4D-929F-41B2383FE0AA> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
    0x23ca2000 - 0x23ca8fe7 +com.adobe.InDesign.Generic Style Editor 5.0.0.458 (???) <9F984289-52ED-4391-B49D-AA1A14FD69E4> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Generic Style Editor.InDesignPlugin/Generic Style Editor
    0x23cb1000 - 0x23d27fe2 +com.adobe.AdobeSangamML AdobeSangamML 4.2 (4.2.0.22) <691FF418-D0ED-4C02-AFB7-7DE876558E75> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x23d63000 - 0x23d71fc5 +com.adobe.epic adobe_personalization 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_personalization.framework/adobe_personalization
    0x23d78000 - 0x23d85ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/asneu.framework/asneu
    0x23da9000 - 0x23db2feb +com.adobe.InDesign.Text Editor Model 5.0.0.458 (???) <58F9DD41-B1CA-4370-BF3C-AA70E0C38A43> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
    0x23db9000 - 0x23de7fff +com.adobe.InDesign.Snippet 5.0.4.682 (???) <A1B87032-37C2-4CDB-86C9-439CB74E8456> /Applications/Adobe InDesign CS3/Plug-ins/XMedia/Snippet.InDesignPlugin/Snippet
    0x23df5000 - 0x23e0fff3 +com.adobe.InDesign.Galley Preferences 5.0.0.458 (???) <04484DC8-FF4B-40CB-8841-B42A76CF3BF5> /Applications/Adobe InDesign CS3/Plug-ins/UI/Galley Preferences.InDesignPlugin/Galley Preferences
    0x23e1f000 - 0x23e2cff2 +com.adobe.InDesign.Scotch Rules 5.0.0.458 (???) <07E253C0-4878-4CFD-8C7E-E57435DBAAFB> /Applications/Adobe InDesign CS3/Plug-ins/Page Item/Scotch Rules.InDesignPlugin/Scotch Rules
    0x23e33000 - 0x23e44ff3 +com.adobe.InDesign.Image Import UI 5.0.0.458 (???) <A06818D0-6F36-49A8-A92F-FDCD3321C466> /Applications/Adobe InDesign CS3/Plug-ins/Page Item/Image Import UI.InDesignPlugin/Image Import UI
    0x23e4f000 - 0x23e53fff +com.adobe.InDesign.InCopyExportUI 5.0.0.458 (???) <77C291BC-EF06-43EB-827C-50769B3C3890> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopyExportUI.InDesignPlugin/InCopyExportUI
    0x23e5f000 - 0x23e7bfef +com.adobe.InDesign.LILO 5.0.4.682 (???) <78F2D2A3-E21E-45A2-8674-5669CABBE6E0> /Applications/Adobe InDesign CS3/Plug-ins/Dictionaries/LILO/LILO.InDesignPlugin/LILO
    0x23e88000 - 0x23f13fdf +com.adobe.linguistic.LinguisticManager 3.1.3 (3.1.3.5196) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x23f33000 - 0x23f7afe3 +com.adobe.InDesign.Scripting 5.0.0.458 (???) <1C747E70-9A78-45B1-8584-D10BFD3D697D> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
    0x23f8b000 - 0x24029fef +com.adobe.InDesign.PrintUI 5.0.0.458 (???) <B9E289D4-F24D-4215-8F37-EED83FCC42A9> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/PrintUI.InDesignPlugin/PrintUI
    0x2405f000 - 0x240a6fef +com.adobe.InDesign.Color Picker Panel 5.0.0.458 (???) <9E669EF1-81DB-4240-B92C-764C2FBA1A58> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Color Picker Panel.InDesignPlugin/Color Picker Panel
    0x240bf000 - 0x2411cff7 +com.adobe.InDesign.Swatches Panel 5.0.0.458 (???) <56EBE10D-2DC0-4FA7-B070-286D676158B0> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Swatches Panel.InDesignPlugin/Swatches Panel
    0x24139000 - 0x24146fff +com.adobe.InDesign.Text Style Panel 5.0.0.458 (???) <F6F81FD7-63CA-4FB2-90B4-EC9E5BEE2177> /Applications/Adobe InDesign CS3/Plug-ins/Text/Text Style Panel.InDesignPlugin/Text Style Panel
    0x2414e000 - 0x24157fef +com.adobe.InDesign.PS Import UI 5.0.0.458 (???) <16038163-C648-4332-8CC6-02C31913BAAD> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/PS Import UI.InDesignPlugin/PS Import UI
    0x2429c000 - 0x242aefff +com.adobe.InDesign.Swatch Library Panel 5.0.0.458 (???) <EEE63A20-73E7-430E-BF01-86BE03DA7B6B> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Swatch Library Panel.InDesignPlugin/Swatch Library Panel
    0x242b6000 - 0x242b9fff +TINthread.dylib ??? (???) /Library/Application Support/Adobe/SING/TINthread.dylib
    0x242c0000 - 0x24324fff +com.adobe.Reader for Excel Reader for Excel 4.2 (4.2.0.22) <310C8E2F-2D48-4F97-98CE-E9FB28145370> /Applications/Adobe InDesign CS3/Plug-ins/Filters/Sangam Readers/Reader for Excel.smrd/Contents/MacOS/Reader for Excel
    0x2434a000 - 0x2435afe7 +com.adobe.epic adobe_registration 2.0.1.1082 (2.0.1.1082) /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/adobe_registration.framework/adobe_registration
    0x243fe000 - 0x24456ff2 +com.adobe.ESD.AdobeUpdaterLibFramework AdobeUpdater 5.1.0.1082 (5.1.0.1082) <CA913CDD-FA7B-4435-8BEB-052BB879AED6> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/Frameworks/AdobeUpdater.framework/AdobeUpdater
    0x2446e000 - 0x2449cffb +com.adobe.InDesign.Photoshop Import Filter 5.0.4.682 (???) <E96030C1-3305-4E49-9A09-34B8A7B25EC8> /Applications/Adobe InDesign CS3/Adobe InDesign CS3.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
    0x244b0000 - 0x244c1fc7 +com.adobe.InDesign.InCopy Bridge UI 5.0.0.458 (???) <2F896ACD-EEA3-4CB2-95C5-AF85352EF339> /Applications/Adobe InDesign CS3/Plug-ins/InCopyWorkflow/InCopy Bridge UI.InDesignPlugin/InCopy Bridge UI
    0x2470f000 - 0x2476effb +com.adobe.InDesign.Transparency UI 5.0.0.458 (???) <4AE9180A-FF7A-4B57-9201-A456B7EF89B2> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Transparency UI.InDesignPlugin/Transparency UI
    0x2478e000 - 0x247c7fff +com.adobe.InDesign.Style Panel 5.0.0.458 (???) <CBFB03D6-5E53-46FA-BB0D-9E7AA49727A1> /Applications/Adobe InDesign CS3/Plug-ins/Text/Style Panel.InDesignPlugin/Style Panel
    0x247e1000 - 0x247f0fff +com.adobe.InDesign.Bookmark Panel 5.0.0.458 (???) <7C19089F-6F87-44A8-AAAC-48BFE95E8340> /Applications/Adobe InDesign CS3/Plug-ins/Layout/Bookmark Panel.InDesignPlugin/Bookmark Panel
    0x24a00000 - 0x24b31feb +com.mediaspansoftware.IQue.DragInUI 5.3.5 .0 (???) <CD2AAFBF-9B99-4E74-913C-D44303C20B33> /Applications/Adobe InDesign CS3/Plug-ins/DragIn/DragInUI.InDesignPlugin/DragInUI
    0x24c7c000 - 0x24cbdff3 +com.adobe.InDesign.Graphic Panels 5.0.0.458 (???) <ADC596C1-A326-4D9F-A330-B17892050B98> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/Graphic Panels.InDesignPlugin/Graphic Panels
    0x24cd5000 - 0x24ce1fef +com.adobe.InDesign.OutputMiscUI 5.0.0.458 (???) <BB613486-4008-40E8-99C3-5BDB31A02392> /Applications/Adobe InDesign CS3/Plug-ins/Graphics/OutputMiscUI.InDesignPlugin/OutputMiscUI
    0x24ced000 - 0x24cf5fff +com.adobe.InDesi

    Thanks Peter,
    One last question.  Will reinstall on top of itself overite any preferences or third party plugins?
    Thanks again for your help.  This issue has been very random and has not led me to an actual issue to fix.  We can have a could days good, and then we have a night or two where it crashes all night for different reasons with no consistancy or patterns to follow.

  • Adding namespace prefix to the XMLa root element

    I am facing a problem in our application. I am assigning an XML content to a XSD variable. While assignment operation is performed the prefix of the XML root element alone is getting replaced with default namespace, though the source XML has the prefix. Please let me know if any patch or workaround is available to address this issue.
    Thanks!

    Hi All,
    we are also facing the same issue, Please provide the solution if anyone knows. We are also using the SOA Suite 11g Version.

  • (Fatal Error) Start of root element expected

    Hi,
    When running the app, I have got
    Error(1,1): <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    I think it is due to some libraries missed inside the app. How to resolve this?
    Regards,

    did u check this file?
    C:\dp\jdev11113\Login\ViewController\public_html\mdssys\mdx\Login4.jspx.rdf
    actually these files gets created which we normally ignore.. you can remove this file.. and wrok normally without this error.. make sure that you have Login4.jspx file
    or fix this file an check if there is a xml root element like
    <?xml version="1.0" encoding="UTF-8"?>

  • The markup in the document following the root element must be well-formed.

    I have my XML root element that looks like this:
    <DataResponseOfListOfSite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www
    .w3.org/2001/XMLSchema" xmlns="http://xxxxxx/webservices/sites/">
    and I get the error "The markup in the document following the root element must be well-formed."
    If I use this it works fine:
    <DataResponseOfListOfSite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www
    .w3.org/2001/XMLSchema" xmlns:xsi="http://xxxxxx/webservices/sites/">
    Does anyone know why I have to have the xmlns:xsi="" instead of just xmlns=""
    If I paste this XML into any validator, it says that its good, so I dont know why Flex is complaining about it.

    In the first one you have two namespaces both with the same prefix.
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" and xmlns:xsi="http://xxxxxx/webservices/sites/"
    Thanks,
    Gaurav Jain
    Flex SDK Team
    http://www.gauravj.com/blog

  • Java script will not work after creating new page

    I am using dreamweaver cs3 and have a java script to rotate a banner in a template.  This script has worked fine in the past when I created pages in Dreamwever.  Now the  script works fine only when I test it in a template but when I try to upload to my ISP the script will no longer work.  At first I thought it was the ISP made changes but the person who sits next to me running the same version of Dreamweaver can create a page and the java works.  The java is placed in a template, tested by viewing in a brower and it works, however once I try to create a new page using the template the scriipt will not work.  To get around this I have the person sitting next to me save my template and then I can create pages.  Also if I save the template with my pc and it updates the pages created by the template the java will no longer work.
    This is very frustrating as I cannot create or modify my template on this pc.  What would prevent this from working?

    OK - now we are on to something ..... the script on the template only contains:
    function randomImages(){
      if(counter == (imgs.length)){
        counter = 0;
    MM_swapImage('rotator', '', imgs[counter++]);
      setTimeout('randomImages()', delay);
    However when I create a new page from the template with this javascript in it the code changes to:
    function randomImages(){
      if(counter == (imgs.length)){
        counter = 0;
    MM_swapImage('rotator', '', imgs[counter++]imgs[i]);
    function randomImages(){
      if(counter == (imgs.length)){
        counter = 0;
    MM_swapImage('rotator', '', imgs[counter++]);
      setTimeout('randomImages()', delay);

  • Add xml Tags in Indesign CS4 by Apple/Java script

    Hi,
    All, I'm new to Indesign Scripting, and I'm hoping someone can help me with the following add xml tags in my xml indesign cs4 files.
    I have IDML (ETMV2) xml Indesign CS4 files. But i have lots of powermath equation without xml tags. So i want how i can insert xml tags.
    My probleam like this =>
    <no open xml tags>[&x^{2}+y_{3}&]<no close xml tags>
    I want like this (But i do manualy)
    <inlineequation><inlinemediaobject><textobject role="xpressmath">[&x^{2}+y_{3}&</textobject></inlinemediaobject></inlineequation>
    Can anyone write/suggest me how i can add xml Tags. By Apple/Java Script
    Any insight is appreciated!
    snegig

    Hi,
    John Hawkinson thank you so much your suggestion.
    I am new  this type of discusion (on this page). So i think anybody could not replay my answer. So i repost my question.
    I want insert tags in my Indesign CS4 files. Is this posible when i select my powermath equaiton then run script. Script add tags automatically before/after my equation. Please ignore IDML word.
    Yes i an comfortable with XSLT presently i working with Pearson ETMV2.
    I have one more question when i past my snapshot its appear properly but when i agin see my commant then my snapshot disappear (see small blue rectangle).
    Thank you John again i am new in this industry please guide.
    snegig

  • I am getting Java Script errors for InDesign only in CS3 on my Mac OSX 10.9.1

    When I try to open InDesign (CS3) on my Mac OSX 10.9.1 I get Java Script Error
    Error Number 45
    Error String Object is Invalid
    Line 387
    later
    Line 428
    I tried checking the prompt line & I get this message
    "CGSFlushWindow" is obsolete use "GGSFlushWindowContentRegion" instead
    I have NO clue what that means
    HELP!!!!!!!!

    It means what it says: The respective function no longer exists. Anyway, ask in the ID forum. I'm sure someone there can help you fix whatever script is running amok.
    Mylenium

Maybe you are looking for

  • Control File Sequential Read in 11.2

    Hi to all, i'm in 11.2 database and i'm looking an awr report. Time: Begin Snap: 9642 31-Gen-12 16:00:26 51 2.5 End Snap: 9643 31-Gen-12 16:40:27 52 2.6 This is my load profile: Load Profile              Per Second    Per Transaction   Per Exec   Per

  • Delete Class or Interface

    Hello,        I am implementing OSS note 725170, I pasted the content of the note at the bottom of this message. As per the note I created the class CX_BSP_WD_HTTP_RESPONSE_ERROR with superclass CX_NO_CHECK. Instead of selecting the 'Installation = 3

  • Tag Depoyment-How to?

    Hi, I am tryiny to learn tag libraries and created a simple taghandler like this: import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; import java.util.*; import java.io.*; public class SimpleTag extends TagSupport public int doStartTag() t

  • Internet Explorer Problem with Spry Menu Bar

    http://www.cloud9industries.com/clients/jewelryworld/index4.html OK here we go #1) In IE, the toolbar doesn't appear with the same decreased opacity as it does in Firefox and Safari. I'm using a png background image with a transparent background and

  • IMac startup error

    I've been having some issues with my iMac freezing (especially after sleep) and sometimes not starting up. It usually makes a scratchy noise when this happens and I wonder if there is something wrong with the hard drive. However I have run several te