Drop down menu filter

Hi all,
I am trying to create a VC app with BI query.  The query has structures e.g.
_____________________Actual Sales | Budget Sales
Current week Product A
Current week Product B
Current week Product C
Last Week Product A
Last Week Product B
Last Week Product C
Last Month
Last Year
(actual sales and Budget sales are key figures and Current week and last week are defined by custom weeks (from sunday to saturday) these are the selections)
Ideally I would like to have a drop down menu to show the Structures (current week, last week,...) when I choose current week this should pass this filter to the graph to show current week sales vs budget for products ABC...)
Is this possible and if so how??
You help is appreciated and thanks in advance.
Regards
Avinesh

I am doing exactly that, but with the dynamic filter, it does not give me the options to filter using the structure or selections.  it only gives me the option to select products and web api.  I donot know how to use the web api to filter my selections and i donot know how to use the expression editer.  I tried the static list and had the keys the same as the ones in the query.  that does not work, can you outline the steps with the provided example.
Regards
Avinesh
Thanks

Similar Messages

  • Filter query based on a value from a drop down menu

    I am using ADFBC/JDev 10.1.3/ADF-faces (JSPX)
    I would like to display a table of data based on a view object and have a drop down menu of values that the user can select from which would filter the table of data. The filter would be applied to a field in the VO. For example, have a JSPX page that shows all employees and have a drop down menu that filters the employees by a specific department with an option to show all departments too in the drop down. I'm not sure if Steve Muench's example #76 (http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html) would serve as a basis for this requirement or not.
    Can anybody give me high level guidance on how to do this? Both declaratively and programmatically would be great.
    Thanks,
    Quoc

    I can't get the JSPX page to display the correct data. It's displaying the entire VO and when you try to select Yes or No or All from the drop down menu, it just changes the Active Flag column in the table to whatever you select for the first row only and still displays the rest of the rows in the VO.
    Here's my JSPX code:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
              xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML"
                  doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:head title="showEmployees">
            <meta http-equiv="Content-Type"
                  content="text/html; charset=windows-1252"/>
          </afh:head>
          <afh:body>
            <af:messages/>
            <h:form>
              <af:panelForm>
                <af:selectOneChoice value="#{bindings['bind_active_flag1'].inputValue}"
                                    label="#{bindings['bind_active_flag1'].label}">
                  <f:selectItems value="#{bindings['bind_active_flag1'].items}"/>
                </af:selectOneChoice>
                <af:commandButton actionListener="#{bindings.ExecuteWithParams.execute}"
                                  text="ExecuteWithParams"
                                  disabled="#{!bindings.ExecuteWithParams.enabled}"/>
              </af:panelForm>
              <af:table value="#{bindings.EmployeesView.collectionModel}" var="row"
                        rows="#{bindings.EmployeesView.rangeSize}"
                        first="#{bindings.EmployeesView.rangeStart}"
                        emptyText="#{bindings.EmployeesView.viewable ? 'No rows yet.' : 'Access Denied.'}">
                <af:column sortProperty="EmployeeId" sortable="true"
                           headerText="#{bindings.EmployeesView.labels.EmployeeId}">
                  <af:outputText value="#{row.EmployeeId}">
                    <f:convertNumber groupingUsed="false"
                                     pattern="#{bindings.EmployeesView.formats.EmployeeId}"/>
                  </af:outputText>
                </af:column>
                <af:column sortProperty="FirstName" sortable="true"
                           headerText="#{bindings.EmployeesView.labels.FirstName}">
                  <af:outputText value="#{row.FirstName}"/>
                </af:column>
                <af:column sortProperty="LastName" sortable="true"
                           headerText="#{bindings.EmployeesView.labels.LastName}">
                  <af:outputText value="#{row.LastName}"/>
                </af:column>
                <af:column sortProperty="ActiveFlag" sortable="true"
                           headerText="#{bindings.EmployeesView.labels.ActiveFlag}">
                  <af:outputText value="#{row.ActiveFlag}"/>
                </af:column>
              </af:table>
            </h:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root>Here's the bindings page:
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                    version="10.1.3.41.57" id="showEmployeesPageDef"
                    Package="view.pageDefs"
                    MsgBundleClass="view.pageDefs.showEmployeesPageDefMsgBundle">
      <parameters/>
      <executables>
        <iterator id="EmployeesViewIterator" RangeSize="10" Binds="EmployeesView"
                  DataControl="AppModuleDataControl"/>
        <variableIterator id="variables">
          <variableUsage DataControl="AppModuleDataControl"
                         Binds="EmployeesView.variablesMap.bind_active_flag"
                         Name="EmployeesView_bind_active_flag" IsQueriable="false"/>
        </variableIterator>
        <iterator id="DropDownIterator" RangeSize="-1" Binds="DropDown"
                  DataControl="AppModuleDataControl"/>
      </executables>
      <bindings>
        <table id="EmployeesView" IterBinding="EmployeesViewIterator">
          <AttrNames>
            <Item Value="EmployeeId"/>
            <Item Value="FirstName"/>
            <Item Value="LastName"/>
            <Item Value="Email"/>
            <Item Value="PhoneNumber"/>
            <Item Value="HireDate"/>
            <Item Value="JobId"/>
            <Item Value="Salary"/>
            <Item Value="CommissionPct"/>
            <Item Value="ManagerId"/>
            <Item Value="DepartmentId"/>
            <Item Value="ActiveFlag"/>
          </AttrNames>
        </table>
        <action id="ExecuteWithParams" IterBinding="EmployeesViewIterator"
                InstanceName="AppModuleDataControl.EmployeesView"
                DataControl="AppModuleDataControl" RequiresUpdateModel="true"
                Action="95">
          <NamedData NDName="bind_active_flag" NDType="java.lang.String"
                     NDValue="${bindings.EmployeesView_bind_active_flag}"/>
        </action>
        <attributeValues id="bind_active_flag" IterBinding="variables">
          <AttrNames>
            <Item Value="EmployeesView_bind_active_flag"/>
          </AttrNames>
        </attributeValues>
        <list id="bind_active_flag1" IterBinding="EmployeesViewIterator" StaticList="false"
              ListOperMode="0" ListIter="DropDownIterator" NullValueFlag="1"
              NullValueId="bind_active_flag1_null">
          <AttrNames>
            <Item Value="ActiveFlag"/>
          </AttrNames>
          <ListAttrNames>
            <Item Value="Value"/>
          </ListAttrNames>
          <ListDisplayAttrNames>
            <Item Value="Description"/>
          </ListDisplayAttrNames>
        </list>
      </bindings>
    </pageDefinition>Any ideas?

  • Grey out filter drop down menu

    Question: Why some of my filters in filter drop down menu such as filter galery, artistic, brush stroke, distort, pixelate, sketch and texture all grey out? I have my file(picture open). How do i bring back? thanks

    Hi,
    A lot of the artistic type filters in photoshop only work when an image is 8 bits/channel.
    Also, usually they work best if the image is RGB Color as well.
    Image>Mode

  • Filter drop down menu

    Question: Why some of my filters selection from drop down menu such as filter galery, artistic, brush stroke, distort, pixelate, sketch and texture are grey out and how do we bring them back? many thanks

    If this is happening in Photoshop, you should post this in the Photoshop forum to get the best responses.
    This forum is for questions regarding the entire Creative Suite, not individual applications.

  • Is anyone else having problems with Illustrator CS5 character drop down menu?

    I recently upgraded my 07 macbook pro to a 2012 macbook pro with retina display running 2.6 GHz Intel Core i7 with 16 GB 1600 MHz DDR3 memory. I had no issues with my old mac the entire adobe ran perfect now I am having issues with Illustrator CS5. Each time I navigate the character drop down menu Illustrator crashes on me. I get this page:
    Process:         Adobe Illustrator [797]
    Path:            /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         39 (15.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [126]
    User ID:         501
    Date/Time:       2012-12-14 12:17:36.218 -0700
    OS Version:      Mac OS X 10.8.2 (12C2034)
    Report Version:  10
    Interval Since Last Report:          71621 sec
    Crashes Since Last Report:           7
    Per-App Interval Since Last Report:  52693 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      F6A6FD93-F75A-394C-B86B-49FE750BF130
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000001a9d2000
    VM Regions Near 0x1a9d2000:
        MALLOC_LARGE           000000001a8c5000-000000001a9d2000 [ 1076K] rw-/rwx SM=PRV 
    -->
        mapped file            000000001a9fd000-000000001aa28000 [  172K] r--/rwx SM=COW  /Library/Fonts/Lao MN.ttc
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.HIToolbox                     0x956edbf8 HIStandardMenuView::DrawItem(unsigned char, CGContext*, unsigned char) + 2616
    1   com.apple.HIToolbox                     0x956ecf06 HIStandardMenuView::DrawSelf(short, __HIShape const*, CGContext*) + 492
    2   com.apple.HIToolbox                     0x95723eac HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 364
    3   com.apple.HIToolbox                     0x95723ba9 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 125
    4   com.apple.HIToolbox                     0x957b09d5 HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 759
    5   com.apple.HIToolbox                     0x957b0d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    6   com.apple.HIToolbox                     0x957b0d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    7   com.apple.HIToolbox                     0x957afdf0 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 802
    8   com.apple.HIToolbox                     0x957afa82 HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 82
    9   com.apple.HIToolbox                     0x957afa29 HIView::Render(unsigned long, CGContext*) + 45
    10  com.apple.HIToolbox                     0x9572c460 FlushWindowObject(WindowData*, void**, unsigned char) + 812
    11  com.apple.HIToolbox                     0x95734fb1 FlushAllBuffers(__CFRunLoopObserver*, unsigned long, void*) + 245
    12  com.apple.CoreFoundation                0x929aadfe __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    13  com.apple.CoreFoundation                0x929aad3d __CFRunLoopDoObservers + 381
    14  com.apple.CoreFoundation                0x92984623 CFRunLoopRunSpecific + 355
    15  com.apple.CoreFoundation                0x929844ab CFRunLoopRunInMode + 123
    16  com.apple.HIToolbox                     0x9572e15a RunCurrentEventLoopInMode + 242
    17  com.apple.HIToolbox                     0x9572ddf5 ReceiveNextEventCommon + 162
    18  com.apple.HIToolbox                     0x956f29e6 AcquireNextEventInMode + 68
    19  com.apple.HIToolbox                     0x956eff7d IsUserStillTracking(MenuSelectData*, unsigned char*) + 372
    20  com.apple.HIToolbox                     0x956dd6ae TrackMenuCommon(MenuSelectData&, unsigned char*) + 1724
    21  com.apple.HIToolbox                     0x958cfabd PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1733
    22  com.apple.HIToolbox                     0x958d029c PopUpMenuSelect + 252
    23  com.adobe.illustrator                   0x005e4e7d AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 2707053
    24  com.adobe.illustrator                   0x0041a471 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 828513
    25  com.adobe.coretech.adm                  0x1090b74d 0x10900000 + 46925
    26  com.adobe.coretech.adm                  0x1093a8f1 0x10900000 + 239857
    27  com.adobe.coretech.adm                  0x1095e0f9 0x10900000 + 385273
    28  com.adobe.coretech.adm                  0x10985139 0x10900000 + 545081
    29  com.adobe.coretech.adm                  0x109857f3 0x10900000 + 546803
    30  com.adobe.coretech.adm                  0x1096cf75 0x10900000 + 446325
    31  com.adobe.coretech.adm                  0x1096d48f 0x10900000 + 447631
    32  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    33  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    34  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    35  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    36  com.apple.HIToolbox                     0x9588dad2 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    37  com.apple.HIToolbox                     0x9588de74 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 540
    38  com.apple.HIToolbox                     0x9588d4a3 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    39  com.apple.HIToolbox                     0x956f5a38 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    40  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    41  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    42  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    43  com.apple.HIToolbox                     0x956f4fda CallNextEventHandler + 84
    44  com.adobe.owl                           0x06fe211d OWLControlBarCreateNonComposite + 1763
    45  com.adobe.owl                           0x06f4b2f4 OWLThemeAddBrush + 1428
    46  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    47  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    48  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    49  com.apple.HIToolbox                     0x956f4fda CallNextEventHandler + 84
    50  com.adobe.coretech.adm                  0x1096daf1 0x10900000 + 449265
    51  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    52  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    53  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    54  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    55  com.apple.HIToolbox                     0x9573d7b7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    56  com.apple.HIToolbox                     0x9570aa3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    57  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    58  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    59  com.adobe.illustrator                   0x000aaca0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 580772
    60  com.apple.HIToolbox                     0x95882b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    61  com.apple.HIToolbox                     0x9570a594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    62  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    63  com.apple.HIToolbox                     0x957097ca SendEventToEventTargetWithOptions + 94
    64  com.apple.HIToolbox                     0x9573db7e ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3108
    65  com.apple.HIToolbox                     0x9570aa3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    66  com.apple.HIToolbox                     0x95709980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    67  com.apple.HIToolbox                     0x9571d855 SendEventToEventTarget + 88
    68  com.apple.HIToolbox                     0x95882267 ToolboxEventDispatcher + 82
    69  com.apple.HIToolbox                     0x95882129 RunApplicationEventLoop + 240
    70  com.adobe.illustrator                   0x000aafa1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 581541
    71  com.adobe.illustrator                   0x00112f9c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 1007520
    72  com.adobe.illustrator                   0x000d412a AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 749870
    73  com.adobe.illustrator                   0x00003316 0x1000 + 8982
    Thread 1:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x935829ae kevent + 10
    1   libdispatch.dylib                       0x96c8ac71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x96c8a7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x046ea274 C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x046e3074 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x046ea2da C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    7   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x966dc512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x92d6b6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x92d6b184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x92d6b40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x92d511a3 TimerThread + 324
    7   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    8   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x967620a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92d6b492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92d6b68e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92cb7b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01681579 0x1647000 + 238969
    7   AdobeACE                                0x01680f71 0x1647000 + 237425
    8   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   AdobeAGM                                0x01abe59d AGMInitialize + 3243373
    4   AdobeAGM                                0x01abf1ed AGMInitialize + 3246525
    5   AdobeAGM                                0x01ac4de0 AGMInitialize + 3270064
    6   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    7   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x96769afc pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x17dab42f APXGetHostAPI + 2599903
    4   com.adobe.adobeswfl                     0x17b4453f APXGetHostAPI + 81135
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x93581c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x96761a61 nanosleep$UNIX2003 + 189
    2   com.adobe.illustrator.plugins.Scripting Support          0x1222994b PluginMain + 447467
    3   com.adobe.illustrator.plugins.Scripting Support          0x1220bb23 PluginMain + 325059
    4   com.adobe.illustrator.plugins.Scripting Support          0x12229a58 PluginMain + 447736
    5   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x9357f80e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00677ef4 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator                   0x006790d9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator                   0x006792a9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x9357f80e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00677ef4 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3309284
    2   com.adobe.illustrator                   0x006790d9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3313865
    3   com.adobe.illustrator                   0x006792a9 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 3314329
    4   com.apple.CoreServices.CarbonCore          0x92d3ea7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x93581b3e __recvfrom + 10
    1   libsystem_c.dylib                       0x96761bcb recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x1b59c2d7 Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x1b59b376 Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x1b59a227 Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x1b59a279 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x1b59a303 Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x1b594706 Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x1b5948ef Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x1b5954cf Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x1b5955cd Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x1b5989b8 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x1b598c61 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x1b59928f Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x1b59948c Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x1b58b11a Login + 1654
    16  ServiceManager-Launcher.dylib           0x1b58c6f7 Login + 7251
    17  ServiceManager-Launcher.dylib           0x1b5999fb Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x1b59bf49 Invoke + 53977
    19  libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    20  libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x966dc512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x17dab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x17dc5e4e APXGetHostAPI + 2708990
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x935818e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x966dc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x966dc512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x17dab3f7 APXGetHostAPI + 2599847
    4   com.adobe.adobeswfl                     0x17f22348 APXGetHostAPI + 4135672
    5   com.adobe.adobeswfl                     0x17dab51c APXGetHostAPI + 2600140
    6   com.adobe.adobeswfl                     0x17dab587 APXGetHostAPI + 2600247
    7   com.adobe.adobeswfl                     0x17dab6a6 APXGetHostAPI + 2600534
    8   libsystem_c.dylib                       0x966d7557 _pthread_start + 344
    9   libsystem_c.dylib                       0x966c1cee thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 26:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 27:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 28:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 29:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 30:
    0   libsystem_kernel.dylib                  0x935820ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x966da04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x966d9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x966c1cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x000024ec  ebx: 0x00103c50  ecx: 0x8010c5ff  edx: 0x000000ff
      edi: 0x1a9c8c50  esi: 0x000025f8  ebp: 0xbfffc4d8  esp: 0xbfffc3b0
       ss: 0x00000023  efl: 0x00010283  eip: 0x956edbf8   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x1a9d2000
    Logical CPU: 0
    Binary Images:
        0x1000 -  0x10ddfe7 +com.adobe.illustrator (39 - 15.1.0) <A59087EC-3C72-CC25-4C18-47FAB3D91DFE> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x13fe000 -  0x14cbfe7 +AdobeAXEDOMCore (0) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x153d000 -  0x154dfff  com.apple.carbonframeworktemplate (1.0 - 1.0) <02AB017F-BF6A-B96F-9D39-5F23B36EF2E5> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x1554000 -  0x156fff9 +AdobePDFSettings (1) /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
    0x158a000 -  0x15cefff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <65C09343-06AC-9256-3260-70AFDEA99C82> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1633000 -  0x1633fff +SPBasic (0) <00D26E34-33A4-31BF-3516-87513A07D019> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x1638000 -  0x163effb +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <5B4C881B-6885-96F2-BD05-BE9C44A7546C> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
    0x1647000 -  0x175cfff +AdobeACE (1) <BFF50B9A-8BCA-08D1-0260-FF251DA05EC7> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1782000 -  0x1ca8fff +AdobeAGM (1) <72363979-F9A0-0EA2-3E16-AB8D6EA0F12E> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1df2000 -  0x1e2efff +AdobeARE (1) <B2DBDCF9-944F-7C5A-43CF-A5E207BEE94B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1e38000 -  0x1e5eff6 +AdobeAXE8SharedExpat (0) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
    0x1e71000 -  0x1e8cfff +AdobeBIB (1) <5AA925B7-D30E-B230-1B81-7CB6E3B4F2DB> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1e97000 -  0x1eb8ff7 +AdobeBIBUtils (1) <1B33B3A5-2460-EDE8-C54F-16C0335C613D> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1ec5000 -  0x21b7ff7 +AdobeCoolType (1) <90757246-5467-2606-4095-19B63B255F2F> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2244000 -  0x22dcfff +com.adobe.AdobeExtendScript (ExtendScript 4.1.28 - 4.1.28.13048) <A9394CC7-8E48-FE0F-FDB5-37D0FE77435B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
    0x233d000 -  0x2420fef +AdobePDFPort (1) <26DE29E1-7799-DBE8-47AE-A95FEA7DE1EB> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x2458000 -  0x2a8dfeb +AdobePDFL (1) <B295BDBD-65E8-CE6D-865B-79276D0507B2> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x2bc3000 -  0x2c50ff7 +com.adobe.AdobeScCore (ScCore 4.1.28 - 4.1.28.13048) <68FB7168-645E-BD55-5EAA-007315B53997> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x2c97000 -  0x2d37fef +AdobeSVGExport (0) <9B8AE7D4-C7C8-B594-9E31-BEDC07A98A56> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x2d63000 -  0x3001ff2 +AdobeSVGRE (0) <95F2CE86-4B2D-C3DE-A783-8E0A0B24F74C> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x30df000 -  0x3137ff7 +AdobeXMP (0) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x3147000 -  0x31d3fef +AdobeXMPFiles (0) <A72BD678-CAD0-0C2A-0989-11E87B154AB5> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x320c000 -  0x32d9ff3 +libicui18n.dylib.36.0 (36) <08F15219-7F35-574E-7725-1ACAA1B18A00> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicu i18n.dylib.36.0
    0x333c000 -  0x3416fef +libicuuc.dylib.36.0 (36) <5EE72009-40B3-7FB7-3A49-576AEDE0D400> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x3456000 -  0x3e06fff +libicudata.dylib.36.0 (36) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x3e09000 -  0x41e1ff7 +AdobeMPS (1) <272DAEDE-FC7E-B412-7C97-CF47FF6BF242> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4318000 -  0x4386ffb +com.adobe.amtlib (amtlib 4.0.0.21 - 4.0.0.21) <3090D254-587A-A820-DBCD-729C27532FC8> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x439d000 -  0x442eff7 +libicucnv.dylib.36.0 (36) <581475CC-C039-1B42-49BA-71811D8B4E15> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.3 6.0
    0x444d000 -  0x4633ff7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11696) <AF804353-8B13-7180-F2C8-832361EB2D5A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x46c5000 -  0x4730fe7 +com.adobe.amt.services (AMTServices 4.0.0.21 [BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00] - 4.0.0.21) <018F21DE-7E2E-C850-4C32-D4A2131ABF74> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x474c000 -  0x47c9fff +AdobeOwlCanvas (1) <6718BCAA-AAF5-07C2-B2F5-D7CD3BF5B924> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x47e7000 -  0x491ffe7 +WRServices (0) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x4964000 -  0x4968ffc +com.adobe.AdobeCrashReporter (3.0 - 5.5.20101001) <EA9B7B55-7FE5-14D2-FBAE-817121F94086> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
    0x496f000 -  0x49c5ffb +com.adobe.headlights.LogSessionFramework (2.1.2.1263) <5B594BC9-5222-651B-6B70-7AD067035B1A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x4a0e000 -  0x4a43fef +com.adobe.pip (5.5.0.1272) <4AD1ED99-8BB9-B49E-16E5-B7E7A97AAA99> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x4a4e000 -  0x57a0feb +com.adobe.psl (AdobePSL 12.0.0.11086 - 12.0.0.11086) <ED38DE4D-2205-917F-EACE-6421DDE56A5B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x5af7000 -  0x5c74fef +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <49B04BBB-7249-AF03-A7B2-770443BA4AFB> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x5df1000 -  0x60e1fef +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <DDA3FFE0-C30C-9863-BD85-114636A448CE> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x640e000 -  0x6754ff3 +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <B7CF0778-96A1-0864-1BBA-63622803E3A3> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x6c68000 -  0x6c7afef +com.adobe.dvaai.framework (dvaai version 5.0.0 - 5.0.0.0) <A25DFA28-3208-0C10-BDC4-F164755BCDC6> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
    0x6c9e000 -  0x6ca4fef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <2CFE7AA3-09A8-EB42-AFEA-F7FB4D7DBC6F> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x6cb6000 -  0x6cc1ff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <90073BD0-99ED-2715-64B8-2BB79D6F619F> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
    0x6cd6000 -  0x6d54fe2 +com.adobe.boost_regex.framework (boost_regex version 5.0.0 - 5.0.0.0) <BCC13CF6-F0A5-1C84-422B-7B11E5BB061A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x6dba000 -  0x6dc4fff +com.adobe.boost_signals.framework (boost_signals version 5.0.0 - 5.0.0.0) <88FE6D06-B15C-787D-C69C-F522CD8D3F3E> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x6dd8000 -  0x6ddaffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <4E80B05E-DF55-2776-C886-02DFE2F104CD> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x6de3000 -  0x6deaff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <79C1A64C-42C7-26D1-E005-D6CB753F9B2B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x6dfb000 -  0x6e59fe2 +com.adobe.boost_serialization.framework (boost_serialization version 5.0.0 - 5.0.0.0) <8CAB6FC6-5F13-A5C5-DF9C-41EE813A0833> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
    0x6f31000 -  0x70d0fe7 +com.adobe.owl (AdobeOwl version 3.0.89 - 3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x713d000 -  0x71aafef +FileInfo (0) <4A4C74F9-CA83-B174-F56D-F7671DC61389> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x71c7000 -  0x7272fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x72b6000 -  0x72f2ff7  com.apple.vmutils (4.2.1 - 108) <7BAEDD02-19EB-33A3-85C0-9D5F8EA2F9B4> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x730c000 -  0x730fffc +com.adobe.ape.shim (adbeape version 3.1.74.12761 - 3.1.74.12761) <FE2ABE8A-1D3F-7AF5-297C-D22FC3E0FBDA> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x73ba000 -  0x73bbffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x77ea000 -  0x77f2fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x871c000 -  0x878cfeb +com.adobe.adobe_caps (adobe_caps 4.0.42.0 - 4.0.42.0) <55D7D2EA-D21E-98B1-77C6-58C0A0E07051> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x87bb000 -  0x87c8ff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xb2df000 -  0xb2e0ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1) <098CE576-3239-3B41-9141-A5BE6E476C84> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0xb400000 -  0xb4beff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xb506000 -  0xb506fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 15.1.0 - 15.1.0) <F9296CCC-1877-5C99-BD0D-98FF353B385B> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xb7f3000 -  0xb7faffe +com.adobe.illustrator.plugins.Action (Action version 15.1.0 - 15.1.0) <6B497277-940C-153D-D16C-A903B81D811A> /Applications/Adobe Illustrator CS5.1/*/Action
    0xf7c8000 -  0xf7d1fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 15.1.0 - 15.1.0) <DD79D8B9-BF28-BAFC-422F-320B82CCDEBE> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkServer
    0xf7d6000 -  0xf7dcff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 15.1.0 - 15.1.0) <B5D9F227-8EE9-5776-7473-A89363657087> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
    0xf7e1000 -  0xf7f1fff +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 15.1.0 - 15.1.0) <4ACF5555-4B25-ED68-8AA4-30C73D06ABD2> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xf7f9000 -  0xf7fafff +com.adobe.illustrator.plugins.ASLib (ASLib version 15.1.0 - 15.1.0) <C3CCAF66-C271-E38C-E728-8D0C3B130B64> /Applications/Adobe Illustrator CS5.1/*/ASLib
    0x101f8000 - 0x101fbfff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 15.1.0 - 15.1.0) <446F7740-8D38-8FFB-5C46-3D81EC06A7AA> /Applications/Adobe Illustrator CS5.1/*/GeometryS
    0x1030e000 - 0x10310fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x10331000 - 0x10339ffc  libcldcpuengine.dylib (2.1.19) <17C33F7F-C359-313B-8044-F0E9CAC750FB> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x10356000 - 0x103b6ff6 +com.adobe.illustrator.plugins.CharParaStyles (CharParaStyles version 15.1.0 - 15.1.0) <1F6B5D01-3C30-25EF-1983-F886C4525C72> /Applications/Adobe Illustrator CS5.1/*/CharParaStyles
    0x103cc000 - 0x103d8ffb +com.adobe.illustrator.plugins.Navigator (Adobe Navigator Plugin version 15.1.0 - 15.1.0) <B72460C1-5CDB-0C66-9081-338F77FDFB51> /Applications/Adobe Illustrator CS5.1/*/Navigator
    0x103e2000 - 0x103f7fef +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 15.1.0 - 15.1.0) <55369131-910C-3CB2-854C-51DA390475B7> /Applications/Adobe Illustrator CS5.1/*/AssetMgmt
    0x10400000 - 0x1044dfff +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 15.1.0 - 15.1.0) <913AD40A-14F4-52E7-2255-45F3A676AB40> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x10474000 - 0x10474ffd +cl_kernels (???) <0C9BDF67-97CD-48C6-8A11-95C10907B887> cl_kernels
    0x10735000 - 0x1078aff0 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 15.1.0 - 15.1.0) <1D5AF9B6-DC0A-B806-97F9-44990D2F8623> /Applications/Adobe Illustrator CS5.1/*/Photoshop Adapter
    0x1079c000 - 0x107c5fef +com.adobe.ape (adbeapecore version 3.1.74.12761 - 3.1.74.12761) <21548488-E9C3-4638-D7FC-895EE0F8EE30> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x107d7000 - 0x107ecfef +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 15.1.0 - 15.1.0) <3D465C24-5F12-ACCC-147B-5E26E38EE191> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
    0x107f7000 - 0x107fbffb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 15.1.0 - 15.1.0) <0465CDD6-6A03-97E4-34F5-D0438FF07B74> /Applications/Adobe Illustrator CS5.1/*/ToolSelector
    0x10900000 - 0x109d8fff +com.adobe.coretech.adm (3.10x04 - 3.1) <E520855A-838A-D4F1-D01F-8B606649C4A2> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x10a32000 - 0x10a5cfff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 15.1.0 - 15.1.0) <32526909-0C5A-CC37-F770-6C1E522FCA81> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
    0x10a65000 - 0x10a85fe2 +com.adobe.illustrator.plugins.Rasterize (Rasterize version 15.1.0 - 15.1.0) <C8CDF1D0-7A90-7B0D-7D7F-12AEC5D0E7B6> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0x10a8c000 - 0x10ac4fff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 15.1.0 - 15.1.0) <88C037AF-3B5A-73B3-70AE-B40F44DA92CA> /Applications/Adobe Illustrator CS5.1/*/BrushManager
    0x10ace000 - 0x10b7afea +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 15.1.0 - 15.1.0) <92A8DDDA-69D1-FEF2-6B8A-EBA76536B1D5> /Applications/Adobe Illustrator CS5.1/*/ColorHarmony
    0x10b98000 - 0x10baeffb +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 15.1.0 - 15.1.0) <DF11A043-A25B-3DC3-725C-FB308BB20F9A> /Applications/Adobe Illustrator CS5.1/*/ControlPalette
    0x10bb5000 - 0x10bcffe2 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 15.1.0 - 15.1.0) <B2A3F75F-6594-D7D7-100C-76F71926535B> /Applications/Adobe Illustrator CS5.1/*/KinsokuDlg
    0x10bdb000 - 0x10c6bfeb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 15.1.0 - 15.1.0) <4BAAEDDF-AE49-3E27-028D-2B817EDA4CC1> /Applications/Adobe Illustrator CS5.1/*/PaintStyle
    0x10f27000 - 0x10fa5fe2 +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 15.1.0 - 15.1.0) <4109E4C1-17DD-905D-7EDE-7A8C702230A7> /Applications/Adobe Illustrator CS5.1/*/SwatchLibraries
    0x10fb8000 - 0x10fe8ffc +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 15.1.0 - 15.1.0) <27FF4833-28D4-5E93-E861-18DBB0B7C436> /Applications/Adobe Illustrator CS5.1/*/SymbolPalette
    0x10ff3000 - 0x10ff7fff +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 15.1.0 - 15.1.0) <537CBBB0-D112-12E3-7213-09DB911E667A> /Applications/Adobe Illustrator CS5.1/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0x120f2000 - 0x12373fef +com.adobe.illustrator.plugins.Scr

    HI! I'm having the same problem! Only its happing both when I use the charater pallet and when I try to print! I tried to remove the font under "Library/Fonts/AmericanTypewriter.ttc, because I think its saying that that is the problem, however, when I drag it to the trash it says its still in use and wont let me delete it! Any suggestions?
    here is what it keeps giving me:
    Process:         Adobe Illustrator [15814]
    Path:            /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         13.0.0 (13.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [142]
    User ID:         502
    Date/Time:       2013-01-09 14:32:48.544 -0800
    OS Version:      Mac OS X 10.8.2 (12C3012)
    Report Version:  10
    Interval Since Last Report:          129934 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  115455 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      2DED6BCA-7994-CA68-85AE-239BF3A79E52
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000002cf1e000
    VM Regions Near 0x2cf1e000:
        MALLOC_LARGE           000000002cd90000-000000002cf1e000 [ 1592K] rw-/rwx SM=PRV 
    -->
        mapped file            000000002cf95000-000000002d08a000 [  980K] rw-/rwx SM=COW  /Library/Fonts/AmericanTypewriter.ttc
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.HIToolbox                     0x94335bf8 HIStandardMenuView::DrawItem(unsigned char, CGContext*, unsigned char) + 2616
    1   com.apple.HIToolbox                     0x94334f06 HIStandardMenuView::DrawSelf(short, __HIShape const*, CGContext*) + 492
    2   com.apple.HIToolbox                     0x9436beac HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 364
    3   com.apple.HIToolbox                     0x9436bba9 HIView::SendDraw(short, OpaqueGrafPtr*, __HIShape const*, CGContext*) + 125
    4   com.apple.HIToolbox                     0x943f89d5 HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 759
    5   com.apple.HIToolbox                     0x943f8d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    6   com.apple.HIToolbox                     0x943f8d5c HIView::RecursiveDrawComposited(__HIShape const*, __HIShape const*, unsigned long, HIView*, CGContext*, unsigned char, float) + 1662
    7   com.apple.HIToolbox                     0x943f7df0 HIView::DrawComposited(short, OpaqueGrafPtr*, __HIShape const*, unsigned long, HIView*, CGContext*) + 802
    8   com.apple.HIToolbox                     0x943f7a82 HIView::Draw(short, OpaqueGrafPtr*, unsigned long) + 82
    9   com.apple.HIToolbox                     0x943f7a29 HIView::Render(unsigned long, CGContext*) + 45
    10  com.apple.HIToolbox                     0x94374460 FlushWindowObject(WindowData*, void**, unsigned char) + 812
    11  com.apple.HIToolbox                     0x9437cfb1 FlushAllBuffers(__CFRunLoopObserver*, unsigned long, void*) + 245
    12  com.apple.CoreFoundation                0x95a68dfe __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    13  com.apple.CoreFoundation                0x95a68d3d __CFRunLoopDoObservers + 381
    14  com.apple.CoreFoundation                0x95a42623 CFRunLoopRunSpecific + 355
    15  com.apple.CoreFoundation                0x95a424ab CFRunLoopRunInMode + 123
    16  com.apple.HIToolbox                     0x9437615a RunCurrentEventLoopInMode + 242
    17  com.apple.HIToolbox                     0x94375df5 ReceiveNextEventCommon + 162
    18  com.apple.HIToolbox                     0x9433a9e6 AcquireNextEventInMode + 68
    19  com.apple.HIToolbox                     0x94337f7d IsUserStillTracking(MenuSelectData*, unsigned char*) + 372
    20  com.apple.HIToolbox                     0x943256ae TrackMenuCommon(MenuSelectData&, unsigned char*) + 1724
    21  com.apple.HIToolbox                     0x94517abd PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1733
    22  com.apple.HIToolbox                     0x9451829c PopUpMenuSelect + 252
    23  com.adobe.illustrator                   0x0049af6b 0x1000 + 4824939
    24  com.adobe.illustrator                   0x003246e8 0x1000 + 3290856
    25  com.adobe.coretech.adm                  0x2032212f 0x20319000 + 37167
    26  com.adobe.coretech.adm                  0x20347642 0x20319000 + 190018
    27  com.adobe.coretech.adm                  0x2036706b 0x20319000 + 319595
    28  com.adobe.coretech.adm                  0x2038d0ba 0x20319000 + 475322
    29  com.adobe.coretech.adm                  0x2038d77b 0x20319000 + 477051
    30  com.adobe.coretech.adm                  0x203737de 0x20319000 + 370654
    31  com.adobe.coretech.adm                  0x203741e6 0x20319000 + 373222
    32  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    33  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    34  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    35  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    36  com.apple.HIToolbox                     0x944d5ad2 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    37  com.apple.HIToolbox                     0x944d5e74 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 540
    38  com.apple.HIToolbox                     0x944d54a3 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    39  com.apple.HIToolbox                     0x9433da38 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    40  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    41  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    42  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    43  com.apple.HIToolbox                     0x9433cfda CallNextEventHandler + 84
    44  com.adobe.coretech.adm                  0x203741bb 0x20319000 + 373179
    45  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    46  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    47  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    48  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    49  com.apple.HIToolbox                     0x943857b7 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2141
    50  com.apple.HIToolbox                     0x94352a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    51  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    52  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    53  com.adobe.illustrator                   0x0007c742 0x1000 + 505666
    54  com.apple.HIToolbox                     0x944cab6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    55  com.apple.HIToolbox                     0x94352594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    56  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    57  com.apple.HIToolbox                     0x943517ca SendEventToEventTargetWithOptions + 94
    58  com.apple.HIToolbox                     0x94385b7e ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3108
    59  com.apple.HIToolbox                     0x94352a3f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    60  com.apple.HIToolbox                     0x94351980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    61  com.apple.HIToolbox                     0x94365855 SendEventToEventTarget + 88
    62  com.apple.HIToolbox                     0x944ca267 ToolboxEventDispatcher + 82
    63  com.apple.HIToolbox                     0x944ca129 RunApplicationEventLoop + 240
    64  com.adobe.illustrator                   0x0007c987 0x1000 + 506247
    65  com.adobe.illustrator                   0x000d2537 0x1000 + 857399
    66  com.adobe.illustrator                   0x0009dfb2 0x1000 + 642994
    67  com.adobe.illustrator                   0x00003902 0x1000 + 10498
    68  com.adobe.illustrator                   0x00003829 0x1000 + 10281
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x983a79ae kevent + 10
    1   libdispatch.dylib                       0x96652c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x966527a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x983a47d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x983a3cb0 mach_msg + 68
    2   com.apple.CoreServices.CarbonCore          0x92e4535b TS_exception_listener_thread + 89
    3   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    4   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x949cc512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x922163c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x922161ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9221b740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.adobe.illustrator                   0x00906805 0x1000 + 9459717
    7   com.adobe.illustrator                   0x008b6409 0x1000 + 9131017
    8   com.adobe.illustrator                   0x00906260 0x1000 + 9458272
    9   com.apple.Foundation                    0x921e81d8 -[NSThread main] + 45
    10  com.apple.Foundation                    0x921e815b __NSThread__main__ + 1396
    11  libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    12  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94a520a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92e48492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92e4868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92d94b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x0134c8e3 0x131c000 + 198883
    7   AdobeACE                                0x0134c111 0x131c000 + 196881
    8   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94a520a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92e48492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92e4868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92d94b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x0134c8e3 0x131c000 + 198883
    7   AdobeACE                                0x0134c111 0x131c000 + 196881
    8   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x983a68e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x949cc220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x94a520a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92e48492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x92e4868e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x92d94b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x0134c8e3 0x131c000 + 198883
    7   AdobeACE                                0x0134c111 0x131c000 + 196881
    8   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    10  libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x983a48e6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x94a58c1c nanosleep + 375
    2   com.adobe.illustrator.plugins.Save For Web(AI)          0x22e452a3 PowerPlug::Initializer::ReloadInitializers() + 141067
    3   com.adobe.illustrator.plugins.Save For Web(AI)          0x22e356b5 PowerPlug::Initializer::ReloadInitializers() + 76573
    4   com.adobe.illustrator.plugins.Save For Web(AI)          0x22e4538d PowerPlug::Initializer::ReloadInitializers() + 141301
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x983a47d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x983a3cb0 mach_msg + 68
    2   com.macromedia.Flash Player.authplaylib          0x2610be83 ExternalPlayer_Initialize + 292947
    3   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    4   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x983a48e6 mach_wait_until + 10
    1   libsystem_c.dylib                       0x94a58c1c nanosleep + 375
    2   com.adobe.illustrator.plugins.Scripting Support          0x20a99db7 PluginMain + 377533
    3   com.adobe.illustrator.plugins.Scripting Support          0x20a9cb81 PluginMain + 389255
    4   com.adobe.illustrator.plugins.Scripting Support          0x20a99ea1 PluginMain + 377767
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x983a480e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00b2ba4e AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 432762
    2   com.adobe.illustrator                   0x004f83f9 0x1000 + 5207033
    3   com.adobe.illustrator                   0x004f8673 0x1000 + 5207667
    4   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x983a480e semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x00b2ba4e AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 432762
    2   com.adobe.illustrator                   0x004f83f9 0x1000 + 5207033
    3   com.adobe.illustrator                   0x004f8673 0x1000 + 5207667
    4   com.apple.CoreServices.CarbonCore          0x92e1ba7b PrivateMPEntryPoint + 68
    5   libsystem_c.dylib                       0x949c7557 _pthread_start + 344
    6   libsystem_c.dylib                       0x949b1cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x983a70ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x949ca04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x949c9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949b1cca start_wqthread + 30
    Thread 13:
    0   libsystem_kernel.dylib                  0x983a70ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x949ca04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x949c9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949b1cca start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x983a70ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x949ca04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x949c9e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x949b1cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00002f00  ebx: 0x00182400  ecx: 0x8018d8ff  edx: 0x00000000
      edi: 0x2cf12400  esi: 0x00003a20  ebp: 0xbfffcb88  esp: 0xbfffca60
       ss: 0x00000023  efl: 0x00010283  eip: 0x94335bf8   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x2cf1e000
    Logical CPU: 2
    Binary Images:
        0x1000 -   0xeadffa +com.adobe.illustrator (13.0.0 - 13.0.0) <C84D4611-B74B-452A-BA0C-E186A7070438> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1198000 -  0x11dffc7 +com.adobe.adobe_caps (adobe_caps 0.0.120.0 - 0.0.120.0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x11ef000 -  0x120aff9 +AdobePDFSettings (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSetting s
    0x1223000 -  0x1272fff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <2FC98FF8-FF21-4169-B712-073D05875AE0> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x1308000 -  0x1309027 +SPBasic (0) <96841877-B752-4649-AFB7-B22A39526A19> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x130d000 -  0x1313fe7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
    0x131c000 -  0x141cff7 +AdobeACE (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x143b000 -  0x18cdfff +AdobeAGM (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a32000 -  0x1a71fef +AdobeARE (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1a7b000 -  0x1a9eff6 +AdobeAXE8SharedExpat (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
    0x1ab0000 -  0x1acafff +AdobeBIB (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1ad5000 -  0x1af6ff7 +AdobeBIBUtils (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1b03000 -  0x1d6ffc7 +AdobeCoolType (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1df2000 -  0x1e77fff +AdobeExtendScript (3.7) <EF6B3A34-C43A-45D3-BCD3-D7D450B5C6CD> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
    0x1ed9000 -  0x21f6fef +AdobeMPS (1) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x226d000 -  0x234efdf +AdobePDFPort (1) <1BD25A6B-E2A1-4EC1-8292-B9A378590EF7> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
    0x2392000 -  0x287b053 +AdobePDFL (1) <E38E0313-B32B-4E1B-8698-73B902B95CDF> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x298b000 -  0x2a07fef +AdobeScCore (3.7) <17A0DA14-E4D4-42B0-81B4-B75E4CB2DD8C> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x2a5d000 -  0x2b0cfd7 +AdobeSVGExport (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
    0x2b3f000 -  0x2de7fe2 +AdobeSVGRE (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2ed1000 -  0x2f26ffd +AdobeXMP (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2f34000 -  0x36fc067 +libagldata.dylib.28.0 (28) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AGLData.framework/Versions/2.8/libagldata.dylib.28.0
    0x3710000 -  0x37c4feb +libagli18n.dylib.28.0 (28) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AGLInternationalization.framework/Versions/2.8/libagl i18n.dylib.28.0
    0x384e000 -  0x38d7fef +libagluc.dylib.28.0 (28) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AGLUnicode.framework/Versions/2.8/libagluc.dylib.28.0
    0x392d000 -  0x39e3fcc +FileInfo (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x3d8c000 -  0x3dd6fef +AdobeXMPFiles (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
    0x3de6000 -  0x3decfff +com.adobe.AdobeCrashReporter (2.5 - 2.5.03072007) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
    0x3df3000 -  0x3e0ffd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x3e1a000 -  0x416ffc7 +com.adobe.linguistic.LinguisticManager (3.1.0 - 3.1RC) <8111F571-D718-411E-9624-6FB83187D84A> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x4308000 -  0x436bfff +AdobeAXEParser (0) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEParser.framework/Versions/A/AdobeAXEParser
    0x43d7000 -  0x4413ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x44b5000 -  0x44b5ffd +cl_kernels (???) <7751748D-A7D8-43F3-BC83-56779CB55F61> cl_kernels
    0x44bb000 -  0x44bcffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x44c4000 -  0x44d2fff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x57f6000 -  0x57f7ffd  com.apple.ironwoodcore (1.1.1 - 1.1.1) <098CE576-3239-3B41-9141-A5BE6E476C84> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0x9b00000 -  0x9bbeff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9f67000 -  0x9f6dfc3 +CSLinguist.dylib (1) /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/CSLinguist.dylib
    0x9f72000 -  0x9f81fe7 +PACLib.dylib (1) <282B0EF8-6943-426B-BC69-0153E0E7E13D> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/PACLib.dylib
    0x9f85000 -  0x9f8cfff +com.adobe.illustrator.plugins.Action (Action version 13.0.0 - 13.0.0) <311929C0-D530-4C36-8F55-3B185EEF4183> /Applications/Adobe Illustrator CS3/*/Action
    0x9f90000 -  0x9f98ffc +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 13.0.0 - 13.0.0) <63866FAA-4F0C-4E2D-BAEF-E88787FAF95E> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/FrameworkServer.aip/Contents/MacOS/FrameworkServer
    0x9f9c000 -  0x9fa2fef +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 13.0.0 - 13.0.0) <9D1F1116-3277-4307-9A45-F42520E07D75> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ArtConverters.aip/Contents/MacOS/ArtConverters
    0x9fdb000 -  0x9fedffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x9ff1000 -  0x9ff2fff +com.adobe.illustrator.plugins.ASLib (ASLib version 13.0.0 - 13.0.0) <8CFB81A2-F098-4F73-9E77-D091C27A6B0E> /Applications/Adobe Illustrator CS3/*/ASLib
    0x9ff6000 -  0x9ffafef +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 13.0.0 - 13.0.0) <940B0DFC-7F3D-4213-8E07-641E82F7BCC7> /Applications/Adobe Illustrator CS3/*/ToolSelector
    0xdf9d000 -  0xdfa5ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xdfc8000 -  0xdfcafff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0xdfd7000 -  0xdfe6fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 13.0.0 - 13.0.0) <CAA23368-A524-40C6-8B4A-0A1454B45925> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xdfec000 -  0xdff2ffc +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 13.0.0 - 13.0.0) <04CB69E2-4F10-4C5A-B4D8-CE972A7D21E5> /Applications/Adobe Illustrator CS3/*/TextWrapDlg
    0xdff6000 -  0xdff9fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 13.0.0 - 13.0.0) <E1925377-7FF2-47C4-827D-7F2BB9E95DE4> /Applications/Adobe Illustrator CS3/*/GeometryS
    0x1e87c000 - 0x1e888fe3 +com.adobe.epic (adobe_eula 2.0.1.1082 - 2.0.1.1082) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x1e93e000 - 0x1e94cfc5 +com.adobe.epic (adobe_personalization 2.0.1.1082 - 2.0.1.1082) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/adobe_personalization.framework/adobe_personalization
    0x1e955000 - 0x1e962ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/asneu
    0x1e973000 - 0x1e982ffe +CNSLib.dylib (1) /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/CNSLib.dylib
    0x1e9bc000 - 0x1e9dffd3 +MORPHLibs.dylib (1) <98B00167-ADA9-4864-B80E-1F48A0519C68> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/MORPHLibs.dylib
    0x1e9e7000 - 0x1e9fbfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 13.0.0 - 13.0.0) <5480C033-5198-446C-88F1-900A9B397C8F> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/Rasterize.aip/Contents/MacOS/Rasterize
    0x1f3f2000 - 0x1f41fffa +com.winsoft.wrliloplugin (1.0rc7 - 1.0rc7) <396F5FC6-A698-4EC8-9581-F41119129A5B> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/MacOS/WRLiloPlugin1.0
    0x1f56e000 - 0x1f595fc3 +HSNFT.dylib (1) <8C6B1963-5120-4802-88B5-446461BAD6A3> /Library/Application Support/Adobe/*/WRLiloPlugin1.0.bundle/Contents/SharedSupport/HSNFT.dylib
    0x1fb5d000 - 0x1fbabff8 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 13.0.0 - 13.0.0) <BC03C9ED-EEC2-4BD4-93E9-608C2A1A92FF> /Applications/Adobe Illustrator CS3/*/Photoshop Adapter
    0x1fbbb000 - 0x1fbddffe  libssl.0.9.7.dylib (106) <FC1F6C04-EAD3-39D1-8E25-B1192E89D98B> /usr/lib/libssl.0.9.7.dylib
    0x1fbeb000 - 0x1fbf3fef +com.adobe.illustrator.plugins.DiffusionRaster (DiffusionRaster version 13.0.0 - 13.0.0) <AEAE0310-CA8D-49BB-AEB7-B489759E7DFD> /Applications/Adobe Illustrator CS3/*/DiffusionRaster
    0x1fbf7000 - 0x1fbfcfff +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 13.0.0 - 13.0.0) <BFF9EA6B-237C-4466-99A0-A233D13E230C> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ShapeS.aip/Contents/MacOS/ShapeS
    0x1fd00000 - 0x20139ff7 +com.adobe.versioncue (3.1.0.0 - 3.1.0.0) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x2022a000 - 0x202d5fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x20319000 - 0x203e1fef +com.adobe.coretech.adm (3.10x04 - 3.1) <60FE4C91-19AF-4EA5-A497-CE4D23EBD639> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x20438000 - 0x205a3ff7 +AdobeOwl (1) <C917D2C5-55F5-4B51-ABCA-5AC6BBE781D8> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x205fc000 - 0x20624fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 13.0.0 - 13.0.0) <78D07C4D-D0E1-4BC2-9FB7-D8AFD44B5FE3> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
    0x2062a000 - 0x20651ffc +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 13.0.0 - 13.0.0) <BB120316-6B28-4CB7-B10A-0445CC1585B2> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
    0x20661000 - 0x206b7fef +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 13.0.0 - 13.0.0) <89C93D81-8635-46C7-A23D-9412501ADF00> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x206d3000 - 0x20721053 +FilterPort (0) <DC409E7E-F41E-43E8-AB82-B262818F750B> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x207be000 - 0x207f0fff +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 13.0.0 - 13.0.0) <8DF92ECB-A263-48AE-B646-B95F6839022E> /Applications/Adobe Illustrator CS3/*/BrushManager
    0x207f9000 - 0x2080bfff +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 13.0.0 - 13.0.0) <D44C98A1-1763-4805-8B3C-02E8FF634C91> /Applications/Adobe Illustrator CS3/*/ControlPalette
    0x20811000 - 0x2083bffc +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 13.0.0 - 13.0.0) <9FCEDFB4-0E1D-41A4-A6B8-FAD2C0802065> /Applications/Adobe Illustrator CS3/*/KinsokuDlg
    0x2084a000 - 0x20924fce +com.adobe.illustrator.plugins.PlanetX (Live Paint version 13.0.0 - 13.0.0) <8CC60325-34AD-44A6-90E7-DD59D4987B70> /Applications/Adobe Illustrator CS3/*/PlanetX
    0x20940000 - 0x2099cfc5 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 13.0.0 - 13.0.0) <1FE42DDE-1094-4B3E-A954-23BE2E0F0A52> /Applications/Adobe Illustrator CS3/*/PaintStyle
    0x209a6000 - 0x20bb9fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 13.0.0 - 13.0.0) <06BE5318-3778-42F3-930E-139B31CC1356> /Applications/Adobe Illustrator CS3/*/Scripting Support
    0x20d47000 - 0x20d74ff3  com.apple.audio.CoreAudioKit (1.6.4 - 1.6.4) <5F0E55AF-BDA6-36B3-86F2-8A84A8F5D089> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x20f59000 - 0x20fd0ffe +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 13.0.0 - 13.0.0) <9898DD56-4D02-4D11-AB55-7F859607EE79> /Applications/Adobe Illustrator CS3/*/SwatchLibraries
    0x20fe1000 - 0x20ff3ff2 +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 13.0.0 - 13.0.0) <12478E76-78BA-45D9-B40B-37B90B4E0940> /Applications/Adobe Illustrator CS3/*/Mojikumi
    0x20ffa000 - 0x20ffbfff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 13.0.0 - 13.0.0) <937C6C99-8543-410B-B227-F85BC263D731> /Applications/Adobe Illustrator CS3/*/MPSCommon
    0x21100000 - 0x2112dff8 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 13.0.0 - 13.0.0) <EC374655-5A06-4916-9D74-E8BD7506B19A> /Applications/Adobe Illustrator CS3/*/SymbolPalette
    0x21136000 - 0x211bffe4 +com.adobe.illustrator.plugins.TracingSuite (TracingSuite version 13.0.0 - 13.0.0) <08B8133D-4AA8-4842-85FD-12FFF1673982> /Applications/Adobe Illustrator CS3/*/TracingSuite
    0x212aa000 - 0x212dbfc3 +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 13.0.0 - 13.0.0) <CBEA146C-66B0-41C0-9A4F-CCC9FFC138C2> /Applications/Adobe Illustrator CS3/*/VariablesPalette
    0x212e7000 - 0x213c5ff7 +com.adobe.illustrator.plugins.SVG Format ( SVG Format version 13.0.0 - 13.0.0) <B6BD30EA-2734-4228-B649-151E71ED4ED3> /Applications/Adobe Illustrator CS3/*/SVG Format
    0x21402000 - 0x21453fcc +com.adobe.illustrator.plugins.Deform (Envelope and Warp version 13.0.0 - 13.0.0) <CBC9D52F-4C4F-40E0-9D7A-736B76E859DD> /Applications/Adobe Illustrator CS3/*/Deform
    0x21464000 - 0x2148afe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 13.0.0 - 13.0.0) <154871A4-4551-4C1E-8CF8-577F19A305D2> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/sliceAttributes.aip/Contents/MacOS/slicingAttributes
    0x21491000 - 0x214bcfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 13.0.0 - 13.0.0) <CE94DF1C-00DD-4ABC-BC1A-3CB141A26179> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/PathFinderS.aip/Contents/MacOS/PathfinderS
    0x214c5000 - 0x214cbff7 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 13.0.0 - 13.0.0) <A48266FF-5E48-45FA-9435-00433002689A> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ExpandS.aip/Contents/MacOS/ExpandS
    0x214cf000 - 0x214e5fff +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 13.0.0 - 13.0.0) <6A939CE3-A62D-4B9A-99DC-3943815E1667> /Applications/Adobe Illustrator CS3/*/AssetMgmt
    0x214ed000 - 0x214fefff +com.adobe.illustrator.plugins.DocInfo (Document Info version 13.0.0 - 13.0.0) <EF7AE7A1-958A-4E8C-A4A8-0923F9E401BA> /Applications/Adobe Illustrator CS3/*/DocInfo
    0x21505000 - 0x21518ffe +com.adobe.illustrator.plugins.Penguin (Eureka version 13.0.0 - 13.0.0) <46FB1816-0FFD-4AFF-A654-CDEC10AB5C2B> /Applications/Adobe Illustrator CS3/*/Penguin
    0x21521000 - 0x2154ffdd +com.adobe.illustrator.plugins.kuler (kuler version 13 . 0 . 0 . 0 - 13 . 0 . 0 . 0) <B8C0EA2A-8DF5-4DD7-9388-CE3F51B56B08> /Applications/Adobe Illustrator CS3/*/kuler
    0x21564000 - 0x2158bfff +com.adobe.illustrator.plugins.LinkPalette (Links Palette version 13.0.0 - 13.0.0) <127D9B3C-5A55-4351-9FC5-1A44537ACFF4> /Applications/Adobe Illustrator CS3/*/LinkPalette
    0x21596000 - 0x215bdfef +com.adobe.illustrator.plugins.Snap (Snap version 13.0.0 - 13.0.0) <21028162-40AF-4D00-95A2-C711C1AF2B94> /Applications/Adobe Illustrator CS3/*/Snap
    0x215ca000 - 0x215d1ff7 +com.adobe.illustrator.plugins.Colors (Colors version 13.0.0 - 13.0.0) <C560CC12-07E7-4C85-86B0-7566811F4759> /Applications/Adobe Illustrator CS3/*/Colors
    0x215d5000 - 0x215d8ffb +com.adobe.illustrator.plugins.Crop Marks (Crop Marks version 13.0.0 - 13.0.0) <80714EF4-9C08-4966-BA24-1E4CA8269701> /Applications/Adobe Illustrator CS3/*/Crop Marks
    0x215dc000 - 0x215e1fff +com.adobe.illustrator.plugins.Distort (Free Distort version 13.0.0 - 13.0.0) <5276554B-B603-43C5-B6F7-05D139C993CD> /Applications/Adobe Illustrator CS3/*/Distort
    0x215e5000 - 0x215f5ffa +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 13.0.0 - 13.0.0) <0616F9A1-F445-4B9E-8600-18EB542D45A0> /Applications/Adobe Illustrator CS3/*/DropShadow
    0x215fb000 - 0x21624feb +com.adobe.illustrator.plugins.EraserTool (EraserTool version 13.0.0 - 13.0.0) <6FA7620F-AEFB-40BE-B05C-9BFAE2BC9FC1> /Applications/Adobe Illustrator CS3/*/EraserTool
    0x2162b000 - 0x2163ffe7 +com.adobe.illustrator.plugins.EyeBucketTool (Eye Bucket Tool version 13.0.0 - 13.0.0) <91A97121-ACD1-4503-90AC-052DA456075E> /Applications/Adobe Illustrator CS3/*/EyeBucketTool
    0x21647000 - 0x2164afff +com.adobe.illustrator.plugins.TwirlTool (Twist Tool version 13.0.0 - 13.0.0) <1142FF3F-1B5F-4365-B140-07ACFCB41FCA> /Applications/Adobe Illustrator CS3/*/TwirlTool
    0x2164e000 - 0x21656fc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 13.0.0 - 13.0.0) <D4152480-9AA9-4FE6-BCB0-3E2814ED7AE9> /Applications/Adobe Illustrator CS3/*/ADMTP
    0x2165a000 - 0x2165dfff +com.adobe.illustrator.plugins.Simplify (Simplify version 13.0.0 - 13.0.0) <4773F767-EC85-4815-B543-CD7341206FA2> /Applications/Adobe Illustrator CS3/*/Simplify
    0x21661000 - 0x2166afff +com.adobe.illustrator.plugins.ShapeTool (ShapeTool version 13.0.0 - 13.0.0) <E55749A8-A857-403B-A725-92FDB8D37FD5> /Applications/Adobe Illustrator CS3/*/ShapeTool
    0x2166e000 - 0x2167b08f +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 13.0.0 - 13.0.0) <C621DF1B-8FB4-431F-9646-0D0EBEEECA19> /Applications/Adobe Illustrator CS3/*/Segment Tools
    0x2167f000 - 0x2169afea +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 13.0.0 - 13.0.0) <723FEA11-2F3D-4CA3-BF0B-7728CCEFB9FE> /Applications/Adobe Illustrator CS3/*/ScatterBrushTool
    0x216a1000 - 0x216a5fef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 13.0.0 - 13.0.0) <ECA91AE1-1922-4AE6-A920-BDA78A717F83> /Applications/Adobe Illustrator CS3/*/GlobalAdjust
    0x216a9000 - 0x216c7fdf +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 13.0.0 - 13.0.0) <80E795AC-82BC-4BEE-BA37-B2CF10D763AF> /Applications/Adobe Illustrator CS3/*/ParticlePaint
    0x216d0000 - 0x216d8ff7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 13.0.0 - 13.0.0) <9FAB53E3-00DD-4DC9-8009-7E1AAF67DD9E> /Applications/Adobe Illustrator CS3/*/Magic Wand
    0x216dc000 - 0x216f3ff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 13.0.0 - 13.0.0) <14FE5C88-4BEC-4FFF-B724-123565CDB88D> /Applications/Adobe Illustrator CS3/*/Liquify
    0x216f7000 - 0x216fafff +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 13.0.0 - 13.0.0) <9EB86F09-260C-4126-BE82-5E29E52898DB> /Applications/Adobe Illustrator CS3/*/KnifeTool
    0x21800000 - 0x21807fff +com.adobe.illustrator.plugins.Lasso (Lasso version 13.0.0 - 13.0.0) <C566E81E-6C1A-4EAE-AFE9-51784FD97413> /Applications/Adobe Illustrator CS3/*/Lasso
    0x2180b000 - 0x2181ffe3 +com.adobe.illustrator.plugins.Flare (Flare version 13.0.0 - 13.0.0) <7A0DBF51-EF40-4340-BBC1-2121C0E6283B> /Applications/Adobe Illustrator CS3/*/Flare
    0x21824000 - 0x2184efec +com.adobe.illustrator.plugins.CropAreaTool (CropAreaTool version 13.0.0 - 13.0.0) <E6D65156-8E6A-4014-9DC3-BEE29566BBD4> /Applications/Adobe Illustrator CS3/*/CropAreaTool
    0x2185c000 - 0x21878fea +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 13.0.0 - 13.0.0) <245149CC-6DA5-4087-909B-FDF688E54A65> /Applications/Adobe Illustrator CS3/*/CalligBrushTool
    0x2187e000 - 0x2188efe7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 13.0.0 - 13.0.0) <9317ECE9-EAE9-4DE4-8A13-BCA992490D17> /Applications/Adobe Illustrator CS3/*/BoundingBox
    0x21892000 - 0x218bbfc6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 13.0.0 - 13.0.0) <D3748C4A-4B38-4545-94F6-11094FC7CE27> /Applications/Adobe Illustrator CS3/*/ArtBrushTool
    0x218c2000 - 0x218d0fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 13.0.0 - 13.0.0) <5C185B8A-6D3F-40E2-A7A1-3C244108DF80> /Applications/Adobe Illustrator CS3/*/Advanced Select
    0x218e4000 - 0x218e7fff +com.adobe.illustrator.plugins.TypeCase (Change Case version 13.0.0 - 13.0.0) <7683DD9D-76E7-4DC3-9DB7-B38C466CEE9E> /Applications/Adobe Illustrator CS3/*/TypeCase
    0x218eb000 - 0x218f2fff +com.adobe.illustrator.plugins.TextSmart (Text Smart Punctuation version 13.0.0 - 13.0.0) <24F99A94-EC3F-4E39-A1BF-782881BC208D> /Applications/Adobe Illustrator CS3/*/TextSmart
    0x218f7000 - 0x218feff7 +com.adobe.illustrator.plugins.TextColumns (Split Into Grid version 13.0.0 - 13.0.0) <F23407A0-E728-4023-8F4C-C6A3EA4AEA06> /Applications/Adobe Illustrator CS3/*/TextColumns
    0x21902000 - 0x21917fff +com.adobe.illustrator.plugins.SpellcheckUI (SpellCheckUI version 13.0.0 - 13.0.0) <FE59FD19-ED91-4163-A08B-A3729D71C3AF> /Applications/Adobe Illustrator CS3/*/SpellcheckUI
    0x2191e000 - 0x21927fff +com.adobe.illustrator.plugins.SpellCheckDictionary (SpellCheckDictionary version 13.0.0 - 13.0.0) <F37F4ADF-300A-4E9A-86B6-A4AA77AF647E> /Applications/Adobe Illustrator CS3/*/SpellCheckDictionary
    0x2192d000 - 0x21945fff +com.adobe.illustrator.plugins.FindReplaceUI ( FindReplaceUI version 13.0.0 - 13.0.0) <E2FFED8B-6B02-4BC9-9390-73FB5CDFD120> /Applications/Adobe Illustrator CS3/*/FindReplaceUI
    0x2194c000 - 0x2196dffc +com.adobe.illustrator.plugins.FindFont (Find Font version 13.0.0 - 13.0.0) <E600F98C-EE39-4011-A79A-9E68BA762B4A> /Applications/Adobe Illustrator CS3/*/FindFont
    0x2197a000 - 0x219ceff7 +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 13.0.0 - 13.0.0) <1B31BBB6-81D0-4949-8DB1-8D4ABDB9412A> /Applications/Adobe Illustrator CS3/*/PhotoshopImport
    0x219e4000 - 0x2268bfeb +com.adobe.psl (10.312765.46.313722 - 10.312765.46.313722) <C0C4D40C-B84D-4740-BF61-35D5FBFC00FF> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x229aa000 - 0x229f0ff7 +com.adobe.illustrator.plugins.PhotoshopExport (Photoshop Import version 13.0.0 - 13.0.0) <2573EC3E-03D1-4943-9C33-54682E8A3593> /Applications/Adobe Illustrator CS3/*/PhotoshopExport
    0x22a04000 - 0x22a30fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 13.0.0 - 13.0.0) <586248DB-8F5F-4661-87B1-A8236FCA6D2B> /Applications/Adobe Illustrator CS3/*/ExpressView Support
    0x22a3b000 - 0x22a87ffa +com.adobe.illustrator.plugins.TIFF (TIFF Format version 13.0.0 - 13.0.0) <5CDC182D-D2D2-4992-94EE-905AFD8D8EC7> /Applications/Adobe Illustrator CS3/*/TIFF
    0x22a98000 - 0x22a9dfff +com.adobe.illustrator.plugins.TextExport (TextExport version 13.0.0 - 13.0.0) <56A283C9-899D-4AAF-807C-58B53DECBC6F> /Applications/Adobe Illustrator CS3/*/TextExport
    0x22aa4000 - 0x22b75fc8 +com.adobe.illustrator.plugins.SWFExport (FlashFileFormat version 13.0.0 - 13.0.0) <08C603AF-64AC-431D-B5F9-02E4ACC47717> /Applications/Adobe Illustrator CS3/*/SWFExport
    0x22b97000 - 0x231dffff +com.adobe.illustrator.plugins.Save For Web(AI) (SaveForWebEN version 13.0.0 - 13.0.0) <3A09B960-25E7-4286-877A-4D338FFD7ABD> /Applications/Adobe Illustrator CS3/*/Save For Web(AI)
    0x236ac000 - 0x23707fd0 +com.adobe.illustrator.plugins.Sangam2AIMapper Plugin (Sangam2AIMapper Plugin version 13.0.0 - 13.0.0) <7782B248-6ED6-49F8-BAD4-984216622024> /Applications/Adobe Illustrator CS3/*/Sangam2AIMapper Plugin
    0x2371e000 - 0x23782fe4 +com.adobe.AdobeSangam (AdobeSangam 4.2 - 4.2.0.12) <55225CBC-4D30-4785-A4F9-9F18B67F6AD1> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0x237f4000 - 0x237fcfff +com.adobe.illustrator.plugins.PNGFileFormat (PNGFileFormat version 13.0.0 - 13.0.0) <09DF3683-BDCD-46E6-B918-BAFFD3AD4690> /Applications/Adobe Illustrator CS3/*/PNGFileFormat
    0x23800000 - 0x2383fff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 13.0.0 - 13.0.0) <C483D26A-5184-4271-AF28-92DCDEE4AAAD> /Applications/Adobe Illustrator CS3/*/MPSParser
    0x23853000 - 0x23882fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 13.0.0 - 13.0.0) <FD707AC2-D721-41D8-A80D-BB776F076126> /Applications/Adobe Illustrator CS3/*/MPSExport
    0x23891000 - 0x238affc8 +com.adobe.illustrator.plugins.Jpeg2000 ( Jpeg2000 version 13.0.0 - 13.0.0) <083BE56D-EF5B-4B4F-BFE8-7ED8CC4D3371> /Applications/Adobe Illustrator CS3/*/Jpeg2000
    0x238b8000 - 0x238f9060 +com.adobe.illustrator.plugins.JPEG (JPEGFormat version 13.0.0 - 13.0.0) <DD08B53F-B781-4BE7-82AD-9B00849A19AF> /Applications/Adobe Illustrator CS3/*/JPEG
    0x23904000 - 0x23908feb +com.adobe.illustrator.plugins.GIF89 (GIF89a Format version 13.0.0 - 13.0.0) <5438BC32-8866-48FD-803D-132DB88C0A34> /Applications/Adobe Illustrator CS3/*/GIF89
    0x2390c000 - 0x2393fffe +com.adobe.illustrator.plugins.FHImport (FHImport version 13.0.0 - 13.0.0) <64A1AAA7-962C-4244-93CD-812892F92918> /Applications/Adobe Illustrator CS3/*/FHImport
    0x23950000 - 0x24580fd7 +com.adobe.illustrator.plugins.DxfDwg (DxfDwg version 13.0.0 - 13.0.0) <E9B63DB1-03E5-4623-BE59-E6068FA30C1F> /Applications/Adobe Illustrator CS3/*/DxfDwg
    0x2481e000 - 0x24823ff7 +com.adobe.illustrator.plugins.ZigZag (Zig Zag version 13.0.0 - 13.0.0) <FADE1DDF-516D-42AB-AC35-4DF29ED031B6> /Applications/Adobe Illustrator CS3/*/ZigZag
    0x24827000 - 0x2482cfff +com.adobe.illustrator.plugins.Tweak (Tweak version 13.0.0 - 13.0.0) <4DCF5BD9-2073-4D9D-909B-7762BEE80CD6> /Applications/Adobe Illustrator CS3/*/Tweak
    0x24830000 - 0x24836ff7 +com.adobe.illustrator.plugins.ShapeEffects (Shape Effects version 13.0.0 - 13.0.0) <43B01685-0021-4708-A96E-6AF8B22C323B> /Applications/Adobe Illustrator CS3/*/ShapeEffects
    0x2483a000 - 0x24856ffc +com.adobe.illustrator.plugins.Scribble (Scribble version 13.0.0 - 13.0.0) <5D13AAC0-7D78-4D9F-AFFE-BBD7596D7B61> /Applications/Adobe Illustrator CS3/*/Scribble
    0x2485d000 - 0x24861fff +com.adobe.illustrator.plugins.Saturate (Saturate version 13.0.0 - 13.0.0) <370EB08D-51ED-4DAB-8E16-250D05836A22> /Applications/Adobe Illustrator CS3/*/Saturate
    0x24865000 - 0x24868fff +com.adobe.illustrator.plugins.Round (Round Corners version 13.0.0 - 13.0.0) <14FD80D5-D6CB-42A5-8A0D-0DF9E59B9A53> /Applications/Adobe Illustrator CS3/*/Round
    0x2486c000 - 0x24871ff7 +com.adobe.illustrator.plugins.Roughen (Roughen version 13.0.0 - 13.0.0) <1B976EA3-6118-49B6-BA19-0680AAB3F823> /Applications/Adobe Illustrator CS3/*/Roughen
    0x24875000 - 0x24877fff +com.adobe.illustrator.plugins.Punk (Punk version 13.0.0 - 13.0.0) <B294E686-8B90-4DD9-81B5-93D196B3FA68> /Applications/Adobe Illustrator CS3/*/Punk
    0x2487b000 - 0x24886ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 13.0.0 - 13.0.0) <733F9980-CDD0-4089-9CAB-B51B247CB633> /Applications/Adobe Illustrator CS3/*/Pathfinder
    0x2488a000 - 0x2488dffc +com.adobe.illustrator.plugins.Overprint (Overprint version 13.0.0 - 13.0.0) <29DAC3F6-32E9-4914-9D2E-C1BC1EC17B57> /Applications/Adobe Illustrator CS3/*/Overprint
    0x24891000 - 0x24894fff +com.adobe.illustrator.plugins.OffsetPath (Offset Path version 13.0.0 - 13.0.0) <CD28F1F3-53D1-4992-BE6C-1ABEB934E388> /Applications/Adobe Illustrator CS3/*/OffsetPath
    0x24898000 - 0x2489cfef +com.adobe.illustrator.plugins.ObjectMosaic (AI Object Mosaic Plug-in version 13.0.0 - 13.0.0) <92F33171-413F-4AD5-AD42-D0739BB1AE1B> /Applications/Adobe Illustrator CS3/*/ObjectMosaic
    0x248a0000 - 0x248a1fff +com.adobe.illustrator.plugins.MaskHelper (MaskHelper version 13.0.0 - 13.0.0) <8E6E313E-F8EB-48CE-9957-CA1FE2771780> /Applications/Adobe Illustrator CS3/*/MaskHelper
    0x248a5000 - 0x248a6fff +com.adobe.illustrator.plugins.Inverse (Inverse version 13.0.0 - 13.0.0) <684C9A86-2E3B-47F8-9744-EB46D4B0DD24> /Applications/Adobe Illustrator CS3/*/Inverse
    0x248aa000 - 0x248c0ff2 +com.adobe.illustrator.plugins.FuzzyEffect (FuzzyEffect version 13.0.0 - 13.0.0) <916BCE56-EACB-4E4B-9CC1-D348FEE1D5C6> /Applications/Adobe Illustrator CS3/*/FuzzyEffect
    0x248c7000 - 0x248ceff7 +com.adobe.illustrator.plugins.Find (Find version 13.0.0 - 13.0.0) <252CE2ED-7198-4F7F-95D4-8DA1DA6C3D7A> /Applications/Adobe Illustrator CS3/*/Find
    0x248d2000 - 0x248d4fff +com.adobe.illustrator.plugins.Expand (Expand version 13.0.0 - 13.0.0) <07D375EB-081F-402E-9A00-7BC928E1748B> /Applications/Adobe Illustrator CS3/*/Expand
    0x248d8000 - 0x248dbffc +com.adobe.illustrator.plugins.Cleanup (Cleanup version 13.0.0 - 13.0.0) <D10CF1E9-0ABF-4A4F-B820-8CEB538EA81B> /Applications/Adobe Illustrator CS3/*/Cleanup
    0x248df000 - 0x248e5fff +com.adobe.illustrator.plugins.Adjust (Adjust version 13.0.0 - 13.0.0) <08451097-D2A9-48F3-884C-DD5A5BEF30B0> /Applications/Adobe Illustrator CS3/*/Adjust
    0x248e9000 - 0x248edff3 +com.adobe.illustrator.plugins.AddArrow (AddArrow version 13.0.0 - 13.0.0) <F8CAE8A1-1EC4-49B8-B9A2-A4AA8B1A6FC4> /Applications/Adobe Illustrator CS3/*/AddArrow
    0x248f1000 - 0x248f2fff +com.adobe.illustrator.plugins.AddAnchor (AddAnchor version 13.0.0 - 13.0.0) <819DCDF7-FC8E-4010-A2E8-9F832E1AD801> /Applications/Adobe Illustrator CS3/*/AddAnchor
    0x248f6000 - 0x24909fff +com.adobe.illustrator.plugins.Workspaces (Workspaces version 13.0.0 - 13.0.0) <671AEA7C-8402-4CF1-87C3-1F3FDE2C5975> /Applications/Adobe Illustrator CS3/*/Workspaces
    0x24910000 - 0x24924fff +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 13.0.0 - 13.0.0) <9220C436-E4BB-41F1-9F67-91B094260B1E> /Applications/Adobe Illustrator CS3/*/WelcomeScreen
    0x2492a000 - 0x2493afff +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 13.0.0 - 13.0.0) <A1528B1E-2054-4A31-ABBE-34338C44F617> /Applications/Adobe Illustrator CS3/*/TransparencyPalette
    0x2493e000 - 0x24946fef +com.adobe.illustrator.plugins.Transform (Transform Each version 13.0.0 - 13.0.0) <4DA1234F-50B2-416B-A655-88C084A938E1> /Applications/Adobe Illustrator CS3/*/Transform
    0x2494a000 - 0x24952fef +com.adobe.illustrator.plugins.TransformPalette (Transform Palette version 13.0.0 - 13.0.0) <25D3DA1E-DD1F-4A15-BB85-464B483B18A2> /Applications/Adobe Illustrator CS3/*/TransformPalette
    0x24956000 - 0x24978fff +com.adobe.illustrator.plugins.TracingUI (TracingUI version 13.0.0 - 13.0.0) <230085B2-D0B3-415C-B611-D3260EC0FE3B> /Applications/Adobe Illustrator CS3/*/TracingUI
    0x24980000 - 0x249c1ff0 +com.adobe.illustrator.plugins.SVGFilterEffect (SVG Filter Effect version 13.0.0 - 13.0.0) <C1E5531F-1211-4EB4-BAD3-1AC98C7A6AFF> /Applications/Adobe Illustrator CS3/*/SVGFilterEffect
    0x249d8000 - 0x249f9024 +com.adobe.illustrator.plugins.StrokeOffset (StrokeOffset version 13.0.0 - 13.0.0) <6CB78495-D979-4351-9F92-8349283D996B> /Applications/Adobe Illustrator CS3/*/StrokeOffset
    0x24a06000 - 0x24a33ffa +com.adobe.illustrator.plugins.SmoothShade (Gradient Mesh version 13.0.0 - 13.0.0) <023D23AA-BB5F-47BF-8D5A-8104602E5285> /Applications/Adobe Illustrator CS3/*/SmoothShade
    0x24a3f000 - 0x24a45ffd +com.adobe.illustrator.plugins.Scripts Menu (Scripts Menu version 13.0.0 - 13.0.0) <905A1F05-394A-43FD-AFFD-1BD59B67EF44> /Applications/Adobe Illustrator CS3/*/Scripts Menu
    0x24a49000 - 0x24a81fff +com.adobe.illustrator.plugins.Print (Print version 13.0.0 - 13.0.0) <6FC8ADA9-3CE3-425F-AFB8-6B2FA793BFA5> /Applications/Adobe Illustrator CS3/*/Print
    0x24a89000 - 0x24a8efff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 13.0.0 - 13.0.0) <F4D0C1D9-068C-4FCE-B453-99EE63C08D72> /Applications/Adobe Illustrator CS3/*/PathSuite
    0x24a92000 - 0x24a9efeb +com.adobe.illustrator.plugins.Navigator (Adobe Navigator Plugin version 13.0.0 - 13.0.0) <E0C36A9A-A0A4-41A6-8A21-6A379E54AA06> /Applications/Adobe Illustrator CS3/*/Navigator
    0x24aa2000 - 0x24ac7fff +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 13.0.0 - 13.0.0) <C261F9D5-60C1-4137-BB4E-63BC4BE289E9> /Applications/Adobe Illustrator CS3/*/LiveBlends
    0x24acb000 - 0x24af8fdf +com.adobe.illustrator.plugins.Layers (Layers Palette version 13.0.0 - 13.0.0) <5A03CAAF-7002-4908-A4F5-30B172C18876> /Applications/Adobe Illustrator CS3/*/Layers
    0x24c00000 - 0x24c15fff +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 13.0.0 - 13.0.0) <EEC61802-AB4D-42AE-915F-FCD01663AF12> /Applications/Adobe Illustrator CS3/*/KBSCPlugin
    0x24c1c000 - 0x24c1dfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 13.0.0 - 13.0.0) <0821A5EC-94EE-402A-B33F-73A4F54E80A2> /Applications/Adobe Illustrator CS3/*/FlattenS
    0x24c21000 - 0x24c4afff +com.adobe.illustrator.plugins.FlatteningPreview (Flattening Preview version 13.0.0 - 13.0.0) <EAE38B73-FFC8-4E29-84B6-662B09C73587> /Applications/Adobe Illustrator CS3/*/FlatteningPreview
    0x24c58000 - 0x24c5dfff +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 13.0.0 - 13.0.0) <5DA73755-8966-40AD-ACE3-211861D563B6> /Applications/Adobe Illustrator CS3/*/FileClipboardPref
    0x24c61000 - 0x24d05fec +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 13.0.0 - 13.0.0) <AA38822E-C338-4E8C-99A7-243FD59EC16A> /Applications/Adobe Illustrator CS3/*/ColorHarmony
    0x24d22000 - 0x24d81fca +com.adobe.illustrator.plugins.CharParaStyles (CharParaStyles version 13.0.0 - 13.0.0) <AE72754D-59F1-45AF-92EF-171AAB7E8D63> /Applications/Adobe Illustrator CS3/*/CharParaStyles
    0x24d96000 - 0x24dd3ff8 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 13.0.0 - 13.0.0) <B6FD2BA5-CCAD-40D1-B65F-F63E5D996FA2> /Applications/Adobe Illustrator CS3/*/ArtStyle
    0x24dde000 - 0x24e0dff6 +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 13.0.0 - 13.0.0) <E74D41AB-7CE6-4E2C-818C-E7A7F815A549> /Applications/Adobe Illustrator CS3/*/AltGlyphPal
    0x24e1d000 - 0x24e2cffe +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 13.0.0 - 13.0.0) <C4A0E30D-BEED-4993-95FA-12CD9CEDCACC> /Applications/Adobe Illustrator CS3/*/Align
    0x24e30000 - 0x24e67fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 13.0.0 - 13.0.0) <B97CA0B0-0B30-4B1F-ABB5-8438D8FA135E> /Applications/Adobe Illustrator CS3/*/ActionPalette
    0x24e71000 - 0x24fb8fff +com.adobe.illustrator.plugins.3D (3D version 13.0.0 - 13.0.0) <3071CC58-02C0-40FD-8CD4-C1CF509840DC> /Applications/Adobe Illustrator CS3/*/3D
    0x25011000 - 0x2509ffe1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 13.0.0 - 13.0.0) <B4DC5098-F452-4E76-8198-2CB5BC942FD7> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/PDF Format.aip/Contents/MacOS/PDF Format
    0x250bc000 - 0x25100fef +ADMEveParserCarbon (???) <C973477C-919A-4593-AB7E-C6DDF3866961> /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Required/ADMEveParserCarbon.bundle/Contents/MacOS/ADMEveParserCarbon
    0x25d00000 - 0x262a7fd7 +com.macromedia.Flash Player.authplaylib (9.0.43.0 - 1.0.4f43) /Applications/Adobe Illustrator CS3/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bundle/Conte nts/MacOS/AuthPlayLib
    0x273d

  • Spry Drop Down menu issue in IE

    I created a menu bar with Spry and it works fine in Firefox
    but playing up in IE. The drop down menu starts displaying from the
    top of the page and not where the menu bar is. I have never come
    across this issue with Spry and cannot figure out whats wrong. the
    page is www.cerdomustile.com.au/new if you want to have a look. the
    Spry code is:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release
    1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box
    with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 11px;
    cursor: default;
    width: 500px;
    background-color: #000000;
    font-weight: normal;
    font-family: "Trebuchet MS";
    height: 18px;
    /* Set the active Menu Bar with this class, currently setting
    z-index to accomodate IE rendering bug:
    http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this
    container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 11px;
    position: relative;
    text-align: left;
    cursor: default;
    width: 100px;
    float: left;
    background-color: #000000;
    font-weight: normal;
    font-family: "Trebuchet MS";
    height: 18px;
    /* Submenus should appear below their parent (top: 0) with a
    higher z-index, but they are initially off the left side of the
    screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width:100px;
    position: absolute;
    left: -1000em;
    height: 18px;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to auto so it comes onto the
    screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    height: 18px;
    position:absolute
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 100px;
    /* Submenus should appear slightly overlapping to the right
    (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    /* Menu items are a light gray block with padding and no text
    decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #000000;
    padding: 0.5em 0.75em;
    color: #FFFFFF;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue
    background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #000000;
    color: #FFF;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal
    a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal
    a.MenuBarSubmenuVisible
    background-color: #000000;
    color: #625647;
    SUBMENU INDICATION: styles if there is a submenu under a
    given menu item
    /* Menu items that have a submenu have the class designation
    MenuBarItemSubmenu and are set to use a background image positioned
    on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation
    MenuBarItemSubmenu and are set to use a background image positioned
    on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class
    designation MenuBarItemSubmenuHover and are set to use a "hover"
    background image positioned on the far left (95%) and centered
    vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class
    designation MenuBarItemSubmenuHover and are set to use a "hover"
    background image positioned on the far left (95%) and centered
    vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless
    you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form
    controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the
    slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;
    }

    No one has any ideas? Someone had mentioned to me that it was
    some hybrid code that would have to be inserted to make IE read
    differently that Safari, Firefox. Not sure how to go about finding
    the code I'd need, though.
    Thanks in advance,
    Burt

  • DW CS4 Horizontal Spry drop down menu not displaying correctly in Internet Explorer 8

    Hi,
    I have created a horizontal Spry drop down menu in Dreamweaver CS4 with my own background images. I have done various modifications to the CSS script to accommodate the style and feel needed; including making the main buttons' height twice the size of the sub menu buttons and some alignments. It seems to work different depending which browser is used.
    It works well in Google Chrome.
    It works well in Firefox with the exception that if any of the buttons are clicked, thereafter a thin black line is diplayed horizontally across center of the top main buttons when the mouse rolls over them. I would like to correct this but is not nearly as bad as the problem I'm having in Internet Explorer 8.
    Here is my biggest concern and I would greatly appreciate if anyone can shed some light on this matter.
    Once opened in Internet Explorer 8 the main navigation buttons appear as they should. IE8 prompts me the following: "To help protect your security, Internet Explorer has restricted this webpage from running scripts or ActiveX controls that could access your computer. Click here for options..". Once I allow IE8 to run scripts or ActiveX controls, the background image disappears and only shows on any menu or submenu button when the mouse rolls over that particular button. Can someone please help.
    The menu can be seen at work by clicking on this link:
    www.bargainxchange.com/BXC Main Navigation Spry Drop Menu.html
    Below are all the scrips involved.
    Here is the CSS script named "SpryMenuBarHorizontal4.css" in use :
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 10;
        padding: 0;
        list-style-type: none;
        font-size: 80%;
        cursor: default;
        width: auto;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        text-align: center;
        /*whole menu moves*/
        margin-left: 100px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* My Note --Top buttons' background, height and font size adjust-- */
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        /* My note --I added the height and background-image as Main-Buttons.jpg-- */
        height: 55px;   
        background-image: url(../Main-Buttons.jpg);
        margin: -2;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: center;
        /*text-align: left;*/
        cursor: pointer;
        width: 99px;
        float: left;
    /* My note --Submenu font size adjust-- */
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        /*height:38px;*/
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 87%;
        z-index: 1020;
        cursor: default;
        width: 160px;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        /* My note --this margin alligns the drop buttons up and down-- */
        margin-top: 24px;
        height: 25px;   
        left: auto;
    /* My note --drop menu size adjustments-- */
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        height: 25px;
        width: 160px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position:absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        /*border: 1px solid #CCC;*/
    /* My note --Text Allignment global-- */
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        /*height: 40px;*/
        text-align: center;
        /*vertical-align: center;*/
        display: block;
        cursor: pointer;
        padding: 0.5em 0.75em;
        text-decoration: none;
        /*zzzzzzzz Text Color*/
        color: #333;        /*background-color: #CCC;*/
        letter-spacing: -0.00px;
        margin-left: 1px;   
        margin-right: 0px;
        /*alligns text up or down globally*/
        margin-top: 1px;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        /*background-color: #33C;
        color: #FFF;*/
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-image: url(../Main-Buttons-mouse-over.jpg);    /*background-color: #33C;
        color: #FFF;*/
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* My note --mouse over-- */
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f&#92;loat: left;
            background: #FFF;
    Here is the JavaScrip file named "SpryMenuBar.js" that has not been modified in any way:
    // SpryMenuBar.js - version 0.12 - Spry Pre-Release 1.6.1
    // Copyright (c) 2006. Adobe Systems Incorporated.
    // All rights reserved.
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are met:
    //   * Redistributions of source code must retain the above copyright notice,
    //     this list of conditions and the following disclaimer.
    //   * Redistributions in binary form must reproduce the above copyright notice,
    //     this list of conditions and the following disclaimer in the documentation
    //     and/or other materials provided with the distribution.
    //   * Neither the name of Adobe Systems Incorporated nor the names of its
    //     contributors may be used to endorse or promote products derived from this
    //     software without specific prior written permission.
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
    // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    // POSSIBILITY OF SUCH DAMAGE.
    SpryMenuBar.js
    This file handles the JavaScript for Spry Menu Bar.  You should have no need
    to edit this file.  Some highlights of the MenuBar object is that timers are
    used to keep submenus from showing up until the user has hovered over the parent
    menu item for some time, as well as a timer for when they leave a submenu to keep
    showing that submenu until the timer fires.
    var Spry; if (!Spry) Spry = {}; if (!Spry.Widget) Spry.Widget = {};
    Spry.BrowserSniff = function()
        var b = navigator.appName.toString();
        var up = navigator.platform.toString();
        var ua = navigator.userAgent.toString();
        this.mozilla = this.ie = this.opera = this.safari = false;
        var re_opera = /Opera.([0-9&#92;.]*)/i;
        var re_msie = /MSIE.([0-9&#92;.]*)/i;
        var re_gecko = /gecko/i;
        var re_safari = /(applewebkit|safari)&#92;/([&#92;d&#92;.]*)/i;
        var r = false;
        if ( (r = ua.match(re_opera))) {
            this.opera = true;
            this.version = parseFloat(r[1]);
        } else if ( (r = ua.match(re_msie))) {
            this.ie = true;
            this.version = parseFloat(r[1]);
        } else if ( (r = ua.match(re_safari))) {
            this.safari = true;
            this.version = parseFloat(r[2]);
        } else if (ua.match(re_gecko)) {
            var re_gecko_version = /rv:&#92;s*([0-9&#92;.]+)/i;
            r = ua.match(re_gecko_version);
            this.mozilla = true;
            this.version = parseFloat(r[1]);
        this.windows = this.mac = this.linux = false;
        this.Platform = ua.match(/windows/i) ? "windows" :
                        (ua.match(/linux/i) ? "linux" :
                        (ua.match(/mac/i) ? "mac" :
                        ua.match(/unix/i)? "unix" : "unknown"));
        this[this.Platform] = true;
        this.v = this.version;
        if (this.safari &amp;&amp; this.mac &amp;&amp; this.mozilla) {
            this.mozilla = false;
    Spry.is = new Spry.BrowserSniff();
    // Constructor for Menu Bar
    // element should be an ID of an unordered list (&lt;ul&gt; tag)
    // preloadImage1 and preloadImage2 are images for the rollover state of a menu
    Spry.Widget.MenuBar = function(element, opts)
        this.init(element, opts);
    Spry.Widget.MenuBar.prototype.init = function(element, opts)
        this.element = this.getElement(element);
        // represents the current (sub)menu we are operating on
        this.currMenu = null;
        this.showDelay = 250;
        this.hideDelay = 600;
        if(typeof document.getElementById == 'undefined' || (navigator.vendor == 'Apple Computer, Inc.' &amp;&amp; typeof window.XMLHttpRequest == 'undefined') || (Spry.is.ie &amp;&amp; typeof document.uniqueID == 'undefined'))
            // bail on older unsupported browsers
            return;
        // Fix IE6 CSS images flicker
        if (Spry.is.ie &amp;&amp; Spry.is.version &lt; 7){
            try {
                document.execCommand("BackgroundImageCache", false, true);
            } catch(err) {}
        this.upKeyCode = Spry.Widget.MenuBar.KEY_UP;
        this.downKeyCode = Spry.Widget.MenuBar.KEY_DOWN;
        this.leftKeyCode = Spry.Widget.MenuBar.KEY_LEFT;
        this.rightKeyCode = Spry.Widget.MenuBar.KEY_RIGHT;
        this.escKeyCode = Spry.Widget.MenuBar.KEY_ESC;
        this.hoverClass = 'MenuBarItemHover';
        this.subHoverClass = 'MenuBarItemSubmenuHover';
        this.subVisibleClass ='MenuBarSubmenuVisible';
        this.hasSubClass = 'MenuBarItemSubmenu';
        this.activeClass = 'MenuBarActive';
        this.isieClass = 'MenuBarItemIE';
        this.verticalClass = 'MenuBarVertical';
        this.horizontalClass = 'MenuBarHorizontal';
        this.enableKeyboardNavigation = true;
        this.hasFocus = false;
        // load hover images now
        if(opts)
            for(var k in opts)
                if (typeof this[k] == 'undefined')
                    var rollover = new Image;
                    rollover.src = opts[k];
            Spry.Widget.MenuBar.setOptions(this, opts);
        // safari doesn't support tabindex
        if (Spry.is.safari)
            this.enableKeyboardNavigation = false;
        if(this.element)
            this.currMenu = this.element;
            var items = this.element.getElementsByTagName('li');
            for(var i=0; i&lt;items.length; i++)
                if (i &gt; 0 &amp;&amp; this.enableKeyboardNavigation)
                    items[i].getElementsByTagName('a')[0].tabIndex='-1';
                this.initialize(items[i], element);
                if(Spry.is.ie)
                    this.addClassName(items[i], this.isieClass);
                    items[i].style.position = "static";
            if (this.enableKeyboardNavigation)
                var self = this;
                this.addEventListener(document, 'keydown', function(e){self.keyDown(e); }, false);
            if(Spry.is.ie)
                if(this.hasClassName(this.element, this.verticalClass))
                    this.element.style.position = "relative";
                var linkitems = this.element.getElementsByTagName('a');
                for(var i=0; i&lt;linkitems.length; i++)
                    linkitems[i].style.position = "relative";
    Spry.Widget.MenuBar.KEY_ESC = 27;
    Spry.Widget.MenuBar.KEY_UP = 38;
    Spry.Widget.MenuBar.KEY_DOWN = 40;
    Spry.Widget.MenuBar.KEY_LEFT = 37;
    Spry.Widget.MenuBar.KEY_RIGHT = 39;
    Spry.Widget.MenuBar.prototype.getElement = function(ele)
        if (ele &amp;&amp; typeof ele == "string")
            return document.getElementById(ele);
        return ele;
    Spry.Widget.MenuBar.prototype.hasClassName = function(ele, className)
        if (!ele || !className || !ele.className || ele.className.search(new RegExp("&#92;&#92;b" + className + "&#92;&#92;b")) == -1)
            return false;
        return true;
    Spry.Widget.MenuBar.prototype.addClassName = function(ele, className)
        if (!ele || !className || this.hasClassName(ele, className))
            return;
        ele.className += (ele.className ? " " : "") + className;
    Spry.Widget.MenuBar.prototype.removeClassName = function(ele, className)
        if (!ele || !className || !this.hasClassName(ele, className))
            return;
        ele.className = ele.className.replace(new RegExp("&#92;&#92;s*&#92;&#92;b" + className + "&#92;&#92;b", "g"), "");
    // addEventListener for Menu Bar
    // attach an event to a tag without creating obtrusive HTML code
    Spry.Widget.MenuBar.prototype.addEventListener = function(element, eventType, handler, capture)
        try
            if (element.addEventListener)
                element.addEventListener(eventType, handler, capture);
            else if (element.attachEvent)
                element.attachEvent('on' + eventType, handler);
        catch (e) {}
    // createIframeLayer for Menu Bar
    // creates an IFRAME underneath a menu so that it will show above form controls and ActiveX
    Spry.Widget.MenuBar.prototype.createIframeLayer = function(menu)
        var layer = document.createElement('iframe');
        layer.tabIndex = '-1';
        layer.src = 'javascript:""';
        layer.frameBorder = '0';
        layer.scrolling = 'no';
        menu.parentNode.appendChild(layer);
        layer.style.left = menu.offsetLeft + 'px';
        layer.style.top = menu.offsetTop + 'px';
        layer.style.width = menu.offsetWidth + 'px';
        layer.style.height = menu.offsetHeight + 'px';
    // removeIframeLayer for Menu Bar
    // removes an IFRAME underneath a menu to reveal any form controls and ActiveX
    Spry.Widget.MenuBar.prototype.removeIframeLayer =  function(menu)
        var layers = ((menu == this.element) ? menu : menu.parentNode).getElementsByTagName('iframe');
        while(layers.length &gt; 0)
            layers[0].parentNode.removeChild(layers[0]);
    // clearMenus for Menu Bar
    // root is the top level unordered list (&lt;ul&gt; tag)
    Spry.Widget.MenuBar.prototype.clearMenus = function(root)
        var menus = root.getElementsByTagName('ul');
        for(var i=0; i&lt;menus.length; i++)
            this.hideSubmenu(menus[i]);
        this.removeClassName(this.element, this.activeClass);
    // bubbledTextEvent for Menu Bar
    // identify bubbled up text events in Safari so we can ignore them
    Spry.Widget.MenuBar.prototype.bubbledTextEvent = function()
        return Spry.is.safari &amp;&amp; (event.target == event.relatedTarget.parentNode || (event.eventPhase == 3 &amp;&amp; event.target.parentNode == event.relatedTarget));
    // showSubmenu for Menu Bar
    // set the proper CSS class on this menu to show it
    Spry.Widget.MenuBar.prototype.showSubmenu = function(menu)
        if(this.currMenu)
            this.clearMenus(this.currMenu);
            this.currMenu = null;
        if(menu)
            this.addClassName(menu, this.subVisibleClass);
            if(typeof document.all != 'undefined' &amp;&amp; !Spry.is.opera &amp;&amp; navigator.vendor != 'KDE')
                if(!this.hasClassName(this.element, this.horizontalClass) || menu.parentNode.parentNode != this.element)
                    menu.style.top = menu.parentNode.offsetTop + 'px';
            if(Spry.is.ie &amp;&amp; Spry.is.version &lt; 7)
                this.createIframeLayer(menu);
        this.addClassName(this.element, this.activeClass);
    // hideSubmenu for Menu Bar
    // remove the proper CSS class on this menu to hide it
    Spry.Widget.MenuBar.prototype.hideSubmenu = function(menu)
        if(menu)
            this.removeClassName(menu, this.subVisibleClass);
            if(typeof document.all != 'undefined' &amp;&amp; !Spry.is.opera &amp;&amp; navigator.vendor != 'KDE')
                menu.style.top = '';
                menu.style.left = '';
            if(Spry.is.ie &amp;&amp; Spry.is.version &lt; 7)
                this.removeIframeLayer(menu);
    // initialize for Menu Bar
    // create event listeners for the Menu Bar widget so we can properly
    // show and hide submenus
    Spry.Widget.MenuBar.prototype.initialize = function(listitem, element)
        var opentime, closetime;
        var link = listitem.getElementsByTagName('a')[0];
        var submenus = listitem.getElementsByTagName('ul');
        var menu = (submenus.length &gt; 0 ? submenus[0] : null);
        if(menu)
            this.addClassName(link, this.hasSubClass);
        if(!Spry.is.ie)
            // define a simple function that comes standard in IE to determine
            // if a node is within another node
            listitem.contains = function(testNode)
                // this refers to the list item
                if(testNode == null)
                    return false;
                if(testNode == this)
                    return true;
                else
                    return this.contains(testNode.parentNode);
        // need to save this for scope further down
        var self = this;
        this.addEventListener(listitem, 'mouseover', function(e){self.mouseOver(listitem, e);}, false);
        this.addEventListener(listitem, 'mouseout', function(e){if (self.enableKeyboardNavigation) self.clearSelection(); self.mouseOut(listitem, e);}, false);
        if (this.enableKeyboardNavigation)
            this.addEventListener(link, 'blur', function(e){self.onBlur(listitem);}, false);
            this.addEventListener(link, 'focus', function(e){self.keyFocus(listitem, e);}, false);
    Spry.Widget.MenuBar.prototype.keyFocus = function (listitem, e)
        this.lastOpen = listitem.getElementsByTagName('a')[0];
        this.addClassName(this.lastOpen, listitem.getElementsByTagName('ul').length &gt; 0 ? this.subHoverClass : this.hoverClass);
        this.hasFocus = true;
    Spry.Widget.MenuBar.prototype.onBlur = function (listitem)
        this.clearSelection(listitem);
    Spry.Widget.MenuBar.prototype.clearSelection = function(el){
        //search any intersection with the current open element
        if (!this.lastOpen)
            return;
        if (el)
            el = el.getElementsByTagName('a')[0];
            // check children
            var item = this.lastOpen;
            while (item != this.element)
                var tmp = el;
                while (tmp != this.element)
                    if (tmp == item)
                        return;
                    try{
                        tmp = tmp.parentNode;
                    }catch(err){break;}
                item = item.parentNode;
        var item = this.lastOpen;
        while (item != this.element)
            this.hideSubmenu(item.parentNode);
            var link = item.getElementsByTagName('a')[0];
            this.removeClassName(link, this.hoverClass);
            this.removeClassName(link, this.subHoverClass);
            item = item.parentNode;
        this.lastOpen = false;
    Spry.Widget.MenuBar.prototype.keyDown = function (e)
        if (!this.hasFocus)
            return;
        if (!this.lastOpen)
            this.hasFocus = false;
            return;
        var e = e|| event;
        var listitem = this.lastOpen.parentNode;
        var link = this.lastOpen;
        var submenus = listitem.getElementsByTagName('ul');
        var menu = (submenus.length &gt; 0 ? submenus[0] : null);
        var hasSubMenu = (menu) ? true : false;
        var opts = [listitem, menu, null, this.getSibling(listitem, 'previousSibling'), this.getSibling(listitem, 'nextSibling')];
        if (!opts[3])
            opts[2] = (listitem.parentNode.parentNode.nodeName.toLowerCase() == 'li')?listitem.parentNode.parentNode:null;
        var found = 0;
        switch (e.keyCode){
            case this.upKeyCode:
                found = this.getElementForKey(opts, 'y', 1);
                break;
            case this.downKeyCode:
                found = this.getElementForKey(opts, 'y', -1);
                break;
            case this.leftKeyCode:
                found = this.getElementForKey(opts, 'x', 1);
                break;
            case this.rightKeyCode:
                found = this.getElementForKey(opts, 'x', -1);
                break;
            case this.escKeyCode:
            case 9:
                this.clearSelection();
                this.hasFocus = false;
            default: return;
        switch (found)
            case 0: return;
            case 1:
                //subopts
                this.mouseOver(listitem, e);
                break;
            case 2:
                //parent
                this.mouseOut(opts[2], e);
                break;
            case 3:
            case 4:
                // left - right
                this.removeClassName(link, hasSubMenu ? this.subHoverClass : this.hoverClass);
                break;
        var link = opts[found].getElementsByTagName('a')[0];
        if (opts[found].nodeName.toLowerCase() == 'ul')
            opts[found] = opts[found].getElementsByTagName('li')[0];
        this.addClassName(link, opts[found].getElementsByTagName('ul').length &gt; 0 ? this.subHoverClass : this.hoverClass);
        this.lastOpen = link;
        opts[found].getElementsByTagName('a')[0].focus();
            //stop further event handling by the browser
        return Spry.Widget.MenuBar.stopPropagation(e);
    Spry.Widget.MenuBar.prototype.mouseOver = function (listitem, e)
        var link = listitem.getElementsByTagName('a')[0];
        var submenus = listitem.getElementsByTagName('ul');
        var menu = (submenus.length &gt; 0 ? submenus[0] : null);
        var hasSubMenu = (menu) ? true : false;
        if (this.enableKeyboardNavigation)
            this.clearSelection(listitem);
        if(this.bubbledTextEvent())
            // ignore bubbled text events
            return;
        if (listitem.closetime)
            clearTimeout(listitem.closetime);
        if(this.currMenu == listitem)
            this.currMenu = null;
        // move the focus too
        if (this.hasFocus)
            link.focus();
        // show menu highlighting
        this.addClassName(link, hasSubMenu ? this.subHoverClass : this.hoverClass);
        this.lastOpen = link;
        if(menu &amp;&amp; !this.hasClassName(menu, this.subHoverClass))
            var self = this;
            listitem.opentime = window.setTimeout(function(){self.showSubmenu(menu);}, this.showDelay);
    Spry.Widget.MenuBar.prototype.mouseOut = function (listitem, e)
        var link = listitem.getElementsByTagName('a')[0];
        var submenus = listitem.getElementsByTagName('ul');
        var menu = (submenus.length &gt; 0 ? submenus[0] : null);
        var hasSubMenu = (menu) ? true : false;
        if(this.bubbledTextEvent())
            // ignore bubbled text events
            return;
        var related = (typeof e.relatedTarget != 'undefined' ? e.relatedTarget : e.toElement);
        if(!listitem.contains(related))
            if (listitem.opentime)
                clearTimeout(listitem.opentime);
            this.currMenu = listitem;
            // remove menu highlighting
            this.removeClassName(link, hasSubMenu ? this.subHoverClass : this.hoverClass);
            if(menu)
                var self = this;
                listitem.closetime = window.setTimeout(function(){self.hideSubmenu(menu);}, this.hideDelay);
            if (this.hasFocus)
                link.blur();
    Spry.Widget.MenuBar.prototype.getSibling = function(element, sibling)
        var child = element[sibling];
        while (child &amp;&amp; child.nodeName.toLowerCase() !='li')
            child = child[sibling];
        return child;
    Spry.Widget.MenuBar.prototype.getElementForKey = function(els, prop, dir)
        var found = 0;
        var rect = Spry.Widget.MenuBar.getPosition;
        var ref = rect(els[found]);
        var hideSubmenu = false;
        //make the subelement visible to compute the position
        if (els[1] &amp;&amp; !this.hasClassName(els[1], this.MenuBarSubmenuVisible))
            els[1].style.visibility = 'hidden';
            this.showSubmenu(els[1]);
            hideSubmenu = true;
        var isVert = this.hasClassName(this.element, this.verticalClass);
        var hasParent = els[0].parentNode.parentNode.nodeName.toLowerCase() == 'li' ? true : false;
        for (var i = 1; i &lt; els.length; i++){
            //when navigating on the y axis in vertical menus, ignore children and parents
            if(prop=='y' &amp;&amp; isVert &amp;&amp; (i==1 || i==2))
                continue;
            //when navigationg on the x axis in the FIRST LEVEL of horizontal menus, ignore children and parents
            if(prop=='x' &amp;&amp; !isVert &amp;&amp; !hasParent &amp;&amp; (i==1 || i==2))
                continue;
            if (els[i])
                var tmp = rect(els[i]);
                if ( (dir * tmp[prop]) &lt; (dir * ref[prop]))
                    ref = tmp;
                    found = i;
        // hide back the submenu
        if (els[1] &amp;&amp; hideSubmenu){
            this.hideSubmenu(els[1]);
            els[1].style.visibility =  '';
        return found;
    Spry.Widget.MenuBar.camelize = function(str)
        if (str.indexOf('-') == -1){
            return str;   
        var oStringList = str.split('-');
        var isFirstEntry = true;
        var camelizedString = '';
        for(var i=0; i &lt; oStringList.length; i++)
            if(oStringList[i].length&gt;0)
                if(isFirstEntry)
                    camelizedString = oStringList[i];
                    isFirstEntry = false;
                else
                    var s = oStringList[i];
                    camelizedString += s.charAt(0).toUpperCase() + s.substring(1);
        return camelizedString;
    Spry.Widget.MenuBar.getStyleProp = function(element, prop)
        var value;
        try
            if (element.style)
                value = element.style[Spry.Widget.MenuBar.camelize(prop)];
            if (!value)
                if (document.defaultView &amp;&amp; document.defaultView.getComputedStyle)
                    var css = document.defaultView.getComputedStyle(element, null);
                    value = css ? css.getPropertyValue(prop) : null;
                else if (element.currentStyle)
                        value = element.currentStyle[Spry.Widget.MenuBar.camelize(prop)];
        catch (e) {}
        return value == 'auto' ? null : value;
    Spry.Widget.MenuBar.getIntProp = function(element, prop)
        var a = parseInt(Spry.Widget.MenuBar.getStyleProp(element, prop),10);
        if (isNaN(a))
            return 0;
        return a;
    Spry.Widget.MenuBar.getPosition = function(el, doc)
        doc = doc || document;
        if (typeof(el) == 'string') {
            el = doc.getElementById(el);
        if (!el) {
            return false;
        if (el.parentNode === null || Spry.Widget.MenuBar.getStyleProp(el, 'display') == 'none') {
            //element must be visible to have a box
            return false;
        var ret = {x:0, y:0};
        var parent = null;
        var box;
        if (el.getBoundingClientRect) { // IE
            box = el.getBoundingClientRect();
            var scrollTop = doc.documentElement.scrollTop || doc.body.scrollTop;
            var scrollLeft = doc.documentElement.scrollLeft || doc.body.scrollLeft;
            ret.x = box.left + scrollLeft;
            ret.y = box.top + scrollTop;
        } else if (doc.getBoxObjectFor) { // gecko
            box = doc.getBoxObjectFor(el);
            ret.x = box.x;
            ret.y = box.y;
        } else { // safari/opera
            ret.x = el.offsetLeft;
            ret.y = el.offsetTop;
            parent = el.offsetParent;
            if (parent != el) {
                while (parent) {
                    ret.x += parent.offsetLeft;
                    ret.y += parent.offsetTop;
                    parent = parent.offsetParent;
            // opera &amp; (safari absolute) incorrectly account for body offsetTop
            if (Spry.is.opera || Spry.is.safari &amp;&amp; Spry.Widget.MenuBar.getStyleProp(el, 'position') == 'absolute')
                ret.y -= doc.body.offsetTop;
        if (el.parentNode)
                parent = el.parentNode;
        else
            parent = null;
        if (parent.nodeName){
            var cas = parent.nodeName.toUpperCase();
            while (parent &amp;&amp; cas != 'BODY' &amp;&amp; cas != 'HTML') {
                cas = parent.nodeName.toUpperCase();
                ret.x -= parent.scrollLeft;
                ret.y -= parent.scrollTop;
                if (parent.parentNode)
                    parent = parent.parentNode;
                else
                    parent = null;
        return ret;
    Spry.Widget.MenuBar.stopPropagation = function(ev)
        if (ev.stopPropagation)
            ev.stopPropagation();
        else
            ev.cancelBubble = true;
        if (ev.preventDefault)
            ev.preventDefault();
        else
            ev.returnValue = false;
    Spry.Widget.MenuBar.setOptions = function(obj, optionsObj, ignoreUndefinedProps)
        if (!optionsObj)
            return;
        for (var optionName in optionsObj)
            if (ignoreUndefinedProps &amp;&amp; optionsObj[optionName] == undefined)
                continue;
            obj[optionName] = optionsObj[optionName];
    And last, here is the HTML code that has also not been modified in any way:
    &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
    &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
    &lt;head&gt;
    &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
    &lt;title&gt;Untitled Document&lt;/title&gt;
    &lt;script src="../BXC Main Navigation Spry Drop Menu/SpryAssets/SpryMenuBar.js" type="text/javascript"&gt;&lt;/script&gt;
    &lt;link href="../BXC Main Navigation Spry Drop Menu/SpryAssets/SpryMenuBarHorizontal4.css" rel="stylesheet" type="text/css" /&gt;
    &lt;/head&gt;
    &lt;body&gt;
    &lt;ul id="MenuBar1" class="MenuBarHorizontal"&gt;
      &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;Buy&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop from Private Owner&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop Direct from Stores&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Buying&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Bid&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop from Auction&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Bidding&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Trade&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop for Trades&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Trading&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;List Items&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;List Items in Auction&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;List Items for Sale&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;List Items for Trade&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Listing Items&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Intro&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Flash Site &amp;amp; Intro&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;About Us&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;My Xchange&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Activity&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Account&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Mail&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#"&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Help&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Main Help&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Site Map&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
    &lt;script type="text/javascript"&gt;
    &lt;!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //--&gt;
    &lt;/script&gt;
    &lt;/body&gt;
    &lt;/html&gt;
    Thanks in advance for any of your help.
    Jose H.

    Hello Nancy,
    I was troubleshooting For the next 8 hours after my post here and eventually I got it right, I uploaded the files to the test server and at the time did not have the chance to post the solution here. This is why, as you saw, it is working correctly now.  Both the CSS and HTML files needed modifications. While working on the code I had to run IE8, Chrome and Firefox simultaneously and refresh all three after every change in the code because what would fix the problem in one would cause a problem for the other.
    In addition to the problems listed in my original post, there were also other graphical issues in IE8, such as; the main menu buttons without sub-menus would only display at half their size vertically. The border around the buttons would not display despite that the background images were rendered in Photoshop as flattened JPEGs with boarders as part of the background image. Being so, I removed all borders from the CSS script.
    By the way.. the IE8 security measure did pop up while working from the server.
    Anyhow for those of you who are experiencing similar problems you can take a look at the working code bellow and compare it to the initial code. I've included detail comments on every line I have changed, modified or added.
    Good luck.. as I know it can become a complicated task when creating custom Spry menus.
    <b>Here is the finished CSS script</b>
    <code>@charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 10;
        padding: 0;
        list-style-type: none;
        /* font size for top menu*/
        font-size: 80%;
        cursor: default;
        width: auto;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        text-align: center;
        /*whole menu moves*/
        margin-left: 100px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* My Note --Top buttons' background, height and font size adjust-- */
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        /* My note --I added the height and background-image as Main-Buttons.jpg-- */
        height: 55px;   
        background-image: url(../Main-Buttons.jpg);
        margin: -2;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: center;
        /*text-align: left;*/
        cursor: pointer;
        width: 99px;
        float: left;
    /* My note --Submenu font size adjust-- */
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 87%;
        z-index: 1020;
        cursor: default;
        width: 160px;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        /* My note --this margin alligns the drop buttons up and down-- */
        margin-top: 0px;
        height: 25px;
        left: auto;
    /* My note --drop menu size adjustments-- */
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        height: 25px;
        width: 162px;
        /* New addition */
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position:absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        /*border: 1px solid #CCC;*/
    /* My note --Text Allignment global-- */
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        /*My note -- took out borders &amp; changed text color to #333(black)&amp; added my own mouse not over image-- */   
        /*border: 0px solid #333332;*/
        background-image: url(../Main-Buttons.jpg);
        /*height: 40px;*/
        text-align: center;   
        display: block;
        cursor: pointer;
        padding: 0.5em 0.75em;
        text-decoration: none;
        /*My note --Text Color-- */
        color: #333;        /*background-color: was #CCC;*/
        letter-spacing: -0.00px;
        margin-left: 1px;   
        margin-right: 0px;
        /*alligns text up or down globally*/
        margin-top: 1px;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        /* My note --took out all backgound &amp; text color for mouse over-- */
        /*background-color: #33C;
        color: #FFF;*/
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        /*My note -- took out background &amp; text &amp; added my own mouse over image-- */
        background-image: url(../Main-Buttons-mouse-over.jpg);
        /*background-color: #33C;
        color: #FFF;*/
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        /* My note --!!!!!This height setting adjusts the main buttons' background height in IE8!!!!-- */
        height: 40px;
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* My note --mouse over-- */
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f&#92;loat: left;
            /* My note --The backgound color below was changed here to the same color #3e6487 as the darkest tone in the background image graphic to mimic the original image borders; dark blue, since IE8 for some reason would cut them out. This change allows this dark blue background to display around the main top buttons in IE8 giving the appearance of borders*/
            background: #3e6487;
    </code>
    <b>Here is the modified HTML script</b>
    <code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
    &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
    &lt;head&gt;
    &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
    &lt;title&gt;Untitled Document&lt;/title&gt;
    &lt;script src="/SpryAssets/SpryMenuBar.js" type="text/javascript"&gt;&lt;/script&gt;
    &lt;link href="/SpryAssets/SpryMenuBarHorizontal4.css" rel="stylesheet" type="text/css" /&gt;
    &lt;/head&gt;
    &lt;body&gt;
    &lt;ul id="MenuBar1" class="MenuBarHorizontal"&gt;
      &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;Buy&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop from Private Owner&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop Direct from Stores&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Buying&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Bid&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop from Auction&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Bidding&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Trade&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Shop for Trades&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Trading&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a class="MenuBarItemSubmenu" href="#"&gt;List Items&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;List Items in Auction&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;List Items for Sale&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;List Items for Trade&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Help Listing Items&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Intro&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Flash Site &amp;amp; Intro&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;About Us&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;My Xchange&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Activity&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Account&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Mail&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;!-- My note --the bellow line was: &lt;li&gt;&lt;a href="#"&gt;Contact Us&lt;/a&gt;&lt;/li&gt; --- changing it to: &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Contact Us&lt;/a&gt;     corrected the height of the Contact us button wich did not have sub menus and because of this only diplayed at half size vertically in IE8 //--&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Contact Us&lt;/a&gt;
      &lt;li&gt;&lt;a href="#" class="MenuBarItemSubmenu"&gt;Help&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#"&gt;Main Help&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#"&gt;Site Map&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
    &lt;/ul&gt;
    &lt;script type="text/javascript"&gt;
    &lt;!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    //--&gt;
    &lt;/script&gt;
    &lt;/body&gt;
    &lt;/html&gt;
    </code>
    And Richard.. Thanks again for the time and your help, truly appreciated.
    Jose H.

  • Adobe Premier Pro cs4: Maximum render quality not showing in drop down menu in Export screen

    I have been trying to export a movie with settings i previously used but for some reason the Maximum render quality option that comes from the drop down menu next to video audio filter multiplexer etc is not showing up.. will someone plz tell me how to fix this...

    Maximum render quality was introduced in an update for Premiere Pro CS4. Choose Help -> Check for Updates.

  • 'Weird' Terminology: rigs, snapshots and checkboxes/My odyssey, to create a simple drop-down menu ;)

    The Preface
    I'm a hobbyist! "Daddy does movies", enthusiastic about the -zillions of features, tools like FCPX and Motion5 offer! I'm no designer, no engineer, no 'pro'. My goals are sky-high, results more down-to-earth
    This is no request for help, just to share my … quest for a 'simple' effect. Or feature… Or box.-
    In hope, it helps YOU to solve your problems…
    The Issue
    Simple: I wanted to create my very own 'title' template for FCPX. Concept: a lil' animation, the two teams logos reveal a lower third, showing the actual score. Plus, an insert showing the scorer (=my kids love to see themselve in such 'sports graphics' )
    Usually, I 'manufacture' such graphics as single Motion-Projects. This time, my goal was a template, my kids slaughtered in the first season's game the other team by 11:1 (which is in soccer…  a goal-fest) To 'built' each Title manually as individual Projects would spend too much time. I needed a template! … so, step #1: using a Dropzone for opponents logo - easy. Animating - been there, done that, easy.-
    But that 'show players face&name' … 18 team-members… wouldn't it be nice to have some 'drop down menu'?
    How to accomplish that?
    The Manual, with all respect, is written for experts. Describing ALL options in one sentence. I need a cookbook, step-by-step-instruction … My preferred source of imagination, MacBreakStudio/rippletraining/Mark Spencer, hasn't done a tutorial for 'drop downs' yet.-
    My guts told me, it has something to do with 'rigs' …
    The Rig
    I dragged my folder with player-pics into my Motion5 project; there, I could check/uncheck each player. But I wanted these 'boxes' avail in FCPX, I wanted to 'publish' this check-list. Trying 'tis&'tat, I noticed, I can apply to the opacity of each player-pic a Rig. And a Checkbox-rig - hey, that close!!
    … soooo?
    No 'checkbox' in FCPX after publishing my title. No list after publishing to FCPX! What have I done wrong?
    The Snapshots
    I was confused by the meaning of  'snapshot'! … and since it made "ping!" in my head, it's so simple:
    As I would done it in a 'manufactured', single Motion project, I have to select each team-member, create a New Snapshot, set opacity to show only this player; create another New Snapshot, showing a diff. player. … and so on, and so on.
    … for sure, for convenience I renamed each Snapshot to each Player's name…
    In my amateurish mind, I had the imagination, Motion5 would offer me a 'behavior' (or 'filter' or whatever) to create checkboxes; or drop-downs; … uhm, well it does, but for me the work-flow is back-to-front: first creating a status-quo, then tell 'this is option#1/#2/#3' … I had the idea, you can select first an 'empty box', then drag its content into it. I've learned: professional don't tic this way.
    Eighteen Snapshots later …
    The Result
    After publishing my hand-crafted Title, it appears like that in FCPX:
    The Dropzone is to apply the actual contestants team-logo; the 'Title' is the score, just type the number; and - finally! - I had my drop-down-menu, listing all players,  for simple selection.- Me happy … !
    In movin' images:
    http://youtu.be/wIeu1cVMu94
    As mentioned before: the design isn't meant to win a price; and most probably, there are 'shorter ways to Rome' … so, if any of you 'pros' like to comment or recomment a 'better', in terms of 'easier' way, don't hesitate to teach me!
    K.

    Motion-guru Marc Spencer from rippletraining.com has an episode upon Rigging at MacBreak Studio
    MacBreak Studio - Episode 151: Setting up a Rig in Motion 5 for Final Cut Pro X    
    … I'm no expert (as you notice in my first post ), but I'm really overwhelmed by the endless options, esp. in correlation with FCPX… on first sight, 'rigging' looked like 'bundled color sliders' to me, but by creating your very own drop-down menus you can create extremely powerful tools, handcrafted for your very own needs.
    For sport-reports, with its tons of statistics and inserts, you can create a box of 'title genrators' - once done, multiple times used, and extreeeemly fast then.
    … And when a 'nnob' like me manages it, it is really no rocket-science…
    Kudos to the DevTeam at Cupertino!!!

  • Multiple Filters Mode Checkboxes = Drop-Down Menu

    How to change the Multiple Filters Mode Checkboxes to the Drop-Down Menu?
    Here ist a adobe-lab-example:
    http://labs.adobe.com/technologies/spry/samples/data_region/MultipleFiltersModeSample.html
    The idea is a spry-dataset with 3 Multiple Filter Mode Drop-Down Menu's.
    As example:
    the first Drop-Down Menu with "None", "Glazed", "Sugar"
    the second with "Powdered Sugar", "Chocolate with Sprinkles"
    the third with "Chocolate", "Maple"
    Thanks

    This will get you started
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <script src="SpryAssets/xpath.js"></script>
    <script src="SpryAssets/SpryData.js"></script>
    <script src="SpryAssets/SpryDataExtensions.js"></script>
    <script>
    var dsMusic = new Spry.Data.XMLDataSet("alles.xml", "state/cities/city");
    function ff20er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 2 ? row : null; };
    function ff30er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 3 ? row : null; };
    function ff40er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 4 ? row : null; };
    function ff50er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 5 ? row : null; };
    function ff60er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 6 ? row : null; };
    function ff70er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 7 ? row : null; };
    function ff80er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 8 ? row : null; };
    function ff90er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 9 ? row : null; };
    function ff2000er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 2 && d >= 0 ? row : null; };
    function ZeitFilter(f) {
        dsMusic.removeAllFilters(true);
        if (f=='ff20er') dsMusic.addFilter(ff20er, true);
        if (f=='ff30er') dsMusic.addFilter(ff30er, true);
        if (f=='ff40er') dsMusic.addFilter(ff40er, true);
        if (f=='ff50er') dsMusic.addFilter(ff50er, true);
        if (f=='ff60er') dsMusic.addFilter(ff60er, true);
        if (f=='ff70er') dsMusic.addFilter(ff70er, true);
        if (f=='ff80er') dsMusic.addFilter(ff80er, true);
        if (f=='ff90er') dsMusic.addFilter(ff90er, true);
        if (f=='ff2000er') dsMusic.addFilter(ff2000er, true);
    </script>
    </head>
    <body>
    <select onchange="ZeitFilter(this.value);">
      <option value="" selected="selected">Zeit:</option>
      <option value="ff20er">20er</option>
      <option value="ff30er">30er</option>
      <option value="ff40er">40er</option>
      <option value="ff50er">50er</option>
      <option value="ff60er">60er</option>
      <option value="ff70er">70er</option>
      <option value="ff80er">80er</option>
      <option value="ff90er">90er</option>
      <option value="ff2000er">ab 2000</option>
    </select>
    <div spry:region="dsMusic">
      <table>
        <tr>
          <th spry:sort="name">Name</th>
          <th spry:sort="category">Category</th>
          <th spry:sort="jahr">Jahr</th>
          <th spry:sort="lang">Lang</th>
        </tr>
        <tr spry:repeat="dsMusic">
          <td>{name}</td>
          <td>{category}</td>
          <td>{jahr}</td>
          <td>{lang}</td>
        </tr>
      </table>
    </div>
    </body>
    </html>
    It will still need some tweeking when you add the other filters.
    For some reason, IE did not show the data, haven't worked out why yet, but FF no problem.
    Cheers

  • Fireworks cs6 drop down menu crossbrowser

    Hi there,,
    I am doing this drop down menu on fireworks cs6,its a horizontal menu,  and the dropdouwn menus on chrome appears on the middle of the button, the same happends on iexplorer,firefox and Opera.But on Safari it works perfectly.I send the fotos on atachment one  from google chrome and one from Safari.
    The one on the left is from google chrome, the drop down menu on all the buttons appears on the midle of the button,and its the same on all browsers,except on safari, the right foto.
    I tryed to use google chrome inspect tools and uncheck some of the css proprieties of the div correspondent to the uploads drop down link("uploads"), but nothing happends.it doesnt move up or down , not even a pixel.
    I want it to look like the Safari right foto on all browsers, How can i do that?
    i did the menu on fireworks cs6 and exported to dreamweaver cs6 as HTML, then i inserted the menu as fireworks html inside a div #nav, this is on the fluid grid layout on the  phone and tablet css:
    #nav {
              margin-top: 0px;
              clear: both;
              float: left;
              margin-left: 0;
              width: 100%;
              height: auto;
              min-height: 180px;
              display: block;
              background: rgba(66,65,66,1);
              background: -moz-linear-gradient(top, rgba(66,65,66,1) 0%, rgba(115,115,115,1) 2%, rgba(168,168,168,1) 57%, rgba(247,246,247,1) 97%, rgba(253,252,253,1) 100%);
              background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(66,65,66,1)), color-stop(2%, rgba(115,115,115,1)), color-stop(57%, rgba(168,168,168,1)), color-stop(97%, rgba(247,246,247,1)), color-stop(100%, rgba(253,252,253,1)));
              background: -webkit-linear-gradient(top, rgba(66,65,66,1) 0%, rgba(115,115,115,1) 2%, rgba(168,168,168,1) 57%, rgba(247,246,247,1) 97%, rgba(253,252,253,1) 100%);
              background: -o-linear-gradient(top, rgba(66,65,66,1) 0%, rgba(115,115,115,1) 2%, rgba(168,168,168,1) 57%, rgba(247,246,247,1) 97%, rgba(253,252,253,1) 100%);
              background: -ms-linear-gradient(top, rgba(66,65,66,1) 0%, rgba(115,115,115,1) 2%, rgba(168,168,168,1) 57%, rgba(247,246,247,1) 97%, rgba(253,252,253,1) 100%);
              background: linear-gradient(to bottom, rgba(66,65,66,1) 0%, rgba(115,115,115,1) 2%, rgba(168,168,168,1) 57%, rgba(247,246,247,1) 97%, rgba(253,252,253,1) 100%);
       filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424142', endColorstr='#fdfcfd', GradientType=0 );
              padding: 0px;
    i used a http://www.cssmatic.com/  linear gradient as background for the div #nav and i also tryed to remove the background and still the problem remains,except on safari.
    On fireworks cs6 preview in browser(chrome) it also works perfectly, its only wen i export it to dreamweaver it only works like the preview on Apple safari.

        PVII's Pop-Menu  Magic2 (commercial DW Extension)
        http://www.projectseven.com/products/menusystems/pmm2/index.htm
        jQuery Superfish
        http://users.tpg.com.au/j_birch/plugins/superfish/
        jQuery Mega Menus 
        http://www.javascriptkit.com/script/script2/jkmegamenu.shtml
        CSS3 Dropdown Menus
        http://www.red-team-design.com/css3-dropdown-menu
        10 Responsive Menus
        http://speckyboy.com/2012/08/29/10-responsive-navigation-solutions-and-tutorials/
    Nancy O.

  • Serial resourse name drop down menu problem in built versions of software.

    Hi,
    I have developed Labview programs to test new PCBs as they come off the production line, by stimulating the PCBs via RS232 serial.  These programs work well on my development PC, and have been built as appilcations with installer ready to be transferred to the test PC, so our production department can use them.  The problem is that when I install the built applications onto the production PC, the serial resource name selection drop down menu is grayed out and disabled.  This stops anyone from being able to select the correct serial port.
    I am using Labview 6.1, Windows XP.
    Regards,
    Wardo.

    My first guess is that you have not installed VISA on the target machine.
    See the link below: -
    http://search.ni.com/nisearch/nisearchservlet?nist​ype=default&ddown=2&filter=%2Btaxonomy:%22Drivers+​And+Updates%22&q=visa+windows
    My second is that there is no serial port.

  • Where is 'Textures' in the filters drop down menu?

    In the filters drop down menu there are no TEXTURES.  How can I install or access this.

    Filter>Filter Gallery>Textures

  • Drop Down Menu selection query for recordset.

    I am looking to utilize a dynamic drop down menu to query a recordset...I am using Colfusion to import an MS Access database that contains the following fields: "Model Date", "Name", "Points" and "Target".  Each time the database updates, the "Model Date" field contains the date and time the model was run.  I have figured out how to create a dynamic drop down using SELECT DISTINCT "model date" and have also figured out how to create the dynamic recordset to be displayed showing the "Name", "Points" and "Target" data. 
    I want the user to select the "Model Date" from the drop down, hit a submit button and then have the appropriate "Name", "Points" and "Target" data queried and shown below.
    The query should take the selection from the "model date" dropdown and then query the "name", "points" and "target" fields for that particular "model date"
    I admit my knowledge of SQL and Coldfusion is not the best, but it seems like this is a somewhat simple task and I am just missing one or two pieces of the cog to put it all together.
    The database basically looks like this:
    Model Date...........Name..........Points........Target
    8/1/2010 08:00......John Doe.....1,250.........5.55%
    8/1/2010 08:00......Jane Doe.....850............2.35%
    8/1/2010 08:00......Bill Smith....11,832........-123.23%
    8/2/2010 09:02......John Doe.....1,323.........6.67%
    8/2/2010 09:02......Jane Doe.....1,001.........3.21%
    8/2/2010 09:02......Bill Smith....10,235........-110.26%
    The dropdown will only show the "model dates"
    8/1/2010 08:00
    8/2/2010 09:02
    For example, if 8/1/2010 08:00 was selected from the dropdown, I want the following displayed:
    Name..................Points...................Target
    John Doe.............1,250....................5.55%
    Jane Doe.............850.......................2.35%
    Bill Smith............11,832...................-123.23%
    Any help or suggestions would be greatly appreciated!!!
    Thanks,
    Mike

    My second paragraph talks about just displaying the filtered data, so I'm assuming that's what you're looking for, but still not quite sure based on what the other responses are. 
    But I head on anyway -
    On your first page, make note of the instance name of your drop down menu, such as "ModelDate".  Make sure it's in a Form and set the form action to the page where you want to display your data, set the form action to POST.
    On the results page, create a table with cells for each of the data elements you want to display. Create a recordset which you can do in Simple mode. Leave it at select all, and set the filter drop down to the database field which contains your Model Date. In the box to the right, select "=". the next dropdown selct "Form Variable" and the variable name type in the instance name of the drop down on the first page. 
    I may not have the terminology right, doing it from memory.
    From the data bindings tab, expand your recordset and locate each of the database fields you want to display.  Drag each one to the table cell on the page where you want it displayed.  The table cells have to be in a linear row.
    Now, select the table row buy selecting the TR tag in the tags just above the properties panel.  In the server behaviors tab, select repeat region and "All Records"
    Publish your pages and test!

  • Default values for dependent drop down menu

    Hi!
    I did create an insert record page that lets the user put in information using text fields. In addition the form has a dependent drop down menu for a category and then depending on the chosen category, the user is presented with choices in a second drop down menu for subcategories.
    The insert of the record itself works fine.
    The records are then listed in a table. A link to a details page should then list all fields of a chosen record. I have another form sporting them dependent drop down menus again. Since I retrieve a record from the database I would like to have the drop down menus default to the values stored in the database.
    But whatever I tried the menus always default to the respective first entries in each menu.
    I tried to use the "select value equal to" field in the "insert record" for the category and the "Default detail value" field in the dependent drop down item for the subcategory field.
    Any pointers anybody?
    Thanks in advance
    Juergen

    Hi there I cannot understand your request fully but I think I understand....
    I think I have done nearly exactly what you need
    I will try to explain
    for a start I am working on a art gallery site that has many different artists and many different paintings
    I am able to add a new artist and have that artist name appear automatically in a dropdown menu on my add painting form page so that when I add a new painting I do not have to type the arrtists name every time
    I am not sure this is what you need but I think maybe....
    (i have another site that displays different categories of jewellry... with a form that has same dropdown and can choose product category.... but the process is the same)
    the way I did it was to first create an 'artist_info' table in my database and an 'add artist page' pretty simple
    Then an painting_pnt table in my database and an 'add painting' page with a form that contains a dropdown menu that is dynamically populated from the artist_infotable... label from the artist_name field value from the artist_id field so the form uses two recordsets.......
    Then in my painting_pnt table I have a field that stores the artist_id
    So when I add a new artist..... the name automatically appears in the dropdown menu when I add a new painting I choose the artist name and then later I can filter recordsets on my detail pages using the id_artist....
    there is a lot more to it as well but that should get you started
    I hope this helps
    If you have any questions at all I will try to explain better
    takiteasy

Maybe you are looking for

  • Balance mismatching between FAGLB03 and FAGLL03?

    Hello Experts, I found difference in balance in one of my Bank payment clearing GL Account in faglb03 and fagll03 report. But when i double click on "Cumulative balance column for any month the balance is matching with the balance of fagll03 report.

  • Deleted all iphoto Library

    I have accidentally sent all my iPhoto Library to the trash and deleted it. Is there a way to recover the files knowing that I don't save on Time Machine? Help me please, I am desesperate?

  • RSL problem in Flex3..

    Hi, I am new to Flex and need help to use Runtime Shared Library in my project. I am trying to create simple RSL Project, but it always gives me error when I try to run from my Tomcat Application Server : VerifyError: Error #1014: Class mx.core::Appl

  • How can I turn off your browser pop-up adds at the bottom?

    Since your most update of Firefox software your advertising is annoying and a work distraction. I want to stop them , turn them off. Can I do that?

  • Sample code to process stylesheet on serverside

    Hi, Can u please give me a sample code to process style sheet on server side. The xml document is obtained from database. Thanks RAJ