Popup window of Web Dynpro  hangs up by Clicking the ESC button

Hello!
I have the trouble in Web Dynpro while using the Firefox browser.
All the popup windows hang up when user clicks the ESC button.
Can you please suggest how to avoid this bug?
Thanks,
Mariya.

Hi Maria,
There are quite a lot of things which would bring the issue to the limelight.
First and foremost, check the version of Firefox. Firefox 3 has come up with some new features which support Series based web browsers. Also, as the firefox is the open source, there is a possibility that many other codes might be running in the background paralelly while working with WDA.
For the most ERP based applications, IE6 from SP1 is best supported and mostly preferable.
Please check the same.
Regards,
-Syed.

Similar Messages

  • How to create ALV as a POPUP in abap web dynpro?

    I have a requirement to display an ALV report as a popup for ESS application in HR module. Data fetching and binding is done in component controller
    WDINIT method and it is displaying ALV in ESS. Now my requirement is to show this alv as a popup in ESS, I have used the method "Generate_Popup" using wizard however it is showing error that "Instance is already used for window".
    Please let me know how to create POPUP alv where data fetching is done in "Component controller" hence I have only 1 view and 1 window in my web dynpro program.
    Below is the logic for data fetching and data binding in WDINIT method of "Component controller":
    method WDDOINIT .
      DATA: lv_pernr type p0105-PERNR,
            lv_user  TYPE P0105-USRID.
      lv_user = sy-uname.
       CALL FUNCTION 'RP_GET_PERNR_FROM_USERID'
         EXPORTING
           begda           = sy-datum
           endda           = sy-datum
           usrid           = lv_user
           usrty           = '0001'
        IMPORTING
          USR_PERNR        = lv_pernr
        EXCEPTIONS
          RETCD            = 1
          OTHERS           = 2.
    IF sy-subrc = 0.
    TYPES: BEGIN OF ty_pa2001,
                 PERNR TYPE PERSNO,
                 SUBTY TYPE SUBTY,
                 ENDDA TYPE ENDDA,
                 BEGDA TYPE BEGDA,
                 END OF   ty_pa2001.
          DATA: lt_pa2001 TYPE TABLE OF ty_pa2001.
    "Changes by shiromani
          DATA lo_nd_node_pernr TYPE REF TO if_wd_context_node.
          DATA lo_el_node_pernr TYPE REF TO if_wd_context_element.
          DATA ls_node_pernr TYPE wd_this->element_node_pernr.
    *    navigate from <CONTEXT> to <NODE_PERNR> via lead selection
          lo_nd_node_pernr = wd_context->get_child_node( name = wd_this->wdctx_node_pernr ).
    *    get element via lead selection
          lo_el_node_pernr = lo_nd_node_pernr->get_element( ).
    *    @TODO handle not set lead selection
          IF lo_el_node_pernr IS INITIAL.
          ENDIF.
    *    get all declared attributes
          lo_el_node_pernr->get_static_attributes(
            IMPORTING
              static_attributes = ls_node_pernr ).
    SELECT PERNR
            SUBTY
            ENDDA
            BEGDA FROM pa2001
    INTO CORRESPONDING FIELDS OF TABLE lt_pa2001
    WHERE pernr = lv_pernr AND subty = 'ITEL'.
    if sy-subrc = 0.
       DATA lo_nd_node_details TYPE REF TO if_wd_context_node.
       DATA lo_el_node_details TYPE REF TO if_wd_context_element.
       DATA ls_node_details TYPE wd_this->element_node_details.
    * navigate from <CONTEXT> to <NODE_DETAILS> via lead selection
       lo_nd_node_details = wd_context->get_child_node( name = wd_this->wdctx_node_details ).
    * get element via lead selection
       lo_el_node_details = lo_nd_node_details->get_element( ).
       lo_nd_node_details->bind_table( lt_pa2001 ).
    * alternative access  via index
    ENDIF.
    ENDIF.
    endmethod.

    Hi
    You ca use this function to Create a new window..
      CALL METHOD wd_window->create_window
          EXPORTING
            modal             = abap_true
            window_name       = 'MMPUR_CPPR_RFQ_WDW'
            title             = lv_otr_text
            close_button      = abap_true
            button_kind       = 3
            close_in_any_case = abap_true
          RECEIVING
            window            = wd_comp_controller->window.
        wd_comp_controller->window->open( ).
    here you acn impliment buttons, if you want to subcribe window button please use this window subcribe method.
        CALL METHOD wd_comp_controller->window->subscribe_to_button_event
          EXPORTING
            button            = if_wd_window=>co_button_ok
            action_name       = 'RFQ_WT_VENDOR'
            action_view       = l_api
            is_default_button = abap_false
            button_text       = lv_otr_text
            tooltip           = lv_otr_text.
        wd_comp_controller->window->open( ).
    Please let me know if you have any issue. Please reword if its solve your problem.
    Regards
    Satrajit

  • Closing window of web dynpro application with exit-plug don't run in the EP

    Hi everybody,
    I want to close a window that contains a Web Dynpro with a close button, because it's used and create as a popup from an other iView (that's not created with web dynpros) in the EP. I read the different threads how to close a window in web dynpro, like JavaScript in WD
    I create a HTML file with the javascript code to close the window and it works fine, when I start the application separately.
    If I used it in the portal and click the close button I get the following error message:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Exit-Plug must no be triggered with an URL when running in portal. Use portal navigation instead to navigate to another application!
    I tried also: ...wdFirePlugExit("javascript:self.parent.close();") or some other javascript code, but got the same error message.
    Then I tried:
    WDPortalNavigation.navigateAbsolute(url,WDPortalNavigationMode.SHOW_INPLACE,(String) null, (String) null,(String) null);
    instead of fireing the outbound plug in the action of the close button
    (...InterfaceViewController().wdFirePlugExit(url);)
    but than a new window with the EP open and the old is still there!
    We use the NWDS2004s an the EP 7.00.
    It must be possible to close a (this) window!
    Thanks for any hint
    christian

    Hi,
       This is what you can do:
    1. You have already created the HTML file with the necessary javascript in the foloowing folder structure :
    src->Mimes->Components-><your component name>-><fileName.html>.
    2. Create a new iView of type URL in your portal.
    3. Get the absolute URL of this HTML file inside your project. This will be in the following format:
    http://<server>:<port>/webdynpro/resources/sap.com/<development ComponentName>/Components/<namespace>/<fileName>.html
    You can find it thus:
    try {
    String u = WDURLGenerator.getAbsoluteWebResourceURL(wdComponentAPI.getDeployableObjectPart(),"filename.html");
    wdComponentAPI.getMessageManager().reportSuccess(u);
    } catch (WDURLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    4. Now enter this URL string as the URL for the iview.
    5. Do a normal portal navigation to this iview on-click of the button.
    Regards,
    Satyajit.

  • TS3212 Trying to download iTunes 10.7 in Windows 7 64-bit. When I click the download now button, it immediately goes to the "Thank you for downloading" screen, but the file has not downloaded. Popups unblocked. Any thoughts? Thanks!

    Trying to download iTunes 10.7 in Windows 7 64-bit. When I click the download now button, it immediately goes to the "Thank you for downloading" screen, but the file has not downloaded. Popups unblocked. Any thoughts? Thanks!

    I'd first try downloading an installer from the Apple website using a different web browser:
    http://www.apple.com/quicktime/download/
    If you use Firefox instead of IE for the download (or vice versa), do you get a working installer?

  • My "Save for Web" dialogue box is so huge the save button is off screen

    I'm running Windows XP with Photoshop CS6.
    Since the "Save" button runs off the edge of my monitor, I can't click Save. I also can't move the dialogue box up far enough to get to it before running out of screen space. I tried just hitting the enter key, but nothing happened. I end up having to do a control-alt-delete to get out of Photoshop altogether.
    I've never had this problem before when I had CS2 or with the CS6 I have at work.
    Is there a way around this?

    I was able to drag the window down, but it would not resize. The cursor did change to what is normally a resize cursor, but it had no effect. Again, I could drag the window up by the title bar, but not far enough to get to the save button. I right-clicked the start button, but I didn't see any options for moving windows.
    I recently had virus problems and they wiped my computer and reinstalled everything. Since then, I've noticed every web page in all my browsers are too wide to fit in the browser without scrolling (but I never had that problem before the wipe). Now I'm wondering if that problem is somehow related to this Photoshop problem. Maybe my screen resolution was set wrong? But I hesitate to mess with it; the last time I tried messing with that to make my parents' computer easier for them to see, it just threw everything out of whack and it was difficult getting it back to normal.

  • HELP STATES 5.Click to uncheck the Enable Web Shield box, then click the Apply button, but the AVG indicates "resident shield" ; is that the same?

    Help states 5.Click to uncheck the Enable Web Shield box, then click the Apply button when correcting Firefox. but the AVG info just has "resident Shield". Is that the same item
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; MathPlayer 2.10b; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; OfficeLiveConnector.1.4; OfficeLivePatch.0.0; .NET CLR 3.0.30729; .NET4.0C)

    Which "Help" are are you referring to?

  • When a website launches a new window to enter information, Firefox no longer automatically closes the window when you click the submit button. Why?

    For example, when I create a message in my autoresponder service and want to attach an image a new window opens up so I can enter the details of the image (url, position, alt text). When I click the Save button, the information is captured but the window remains open and I have to manually close it.
    Firefox used to close the window automatically.

    YES!! Thank you jscher2000! You sir are a legend. Thanks for this, changed the newtaburl in about:config, totally worked. Nope, never saw it happening! Speedy machine this one :P Yep, that change completely sorted the issue, just opened about 741 new tabs through the shortcut on my mouse just to celebrate. Thanks guys who helped, no thanks those who didn't.

  • Service Order creation from CRM Web-IC hwen user click the push button.

    Hi experts,
                        I need to create the service order (in IS-U) when the user will click the push button in CRM-Web-IC.
    I know the RFC for the same to be used in IS-U but for that I need to get order type which is mandatory importing parameter for RFC.
    I know BP, Premise & Installation.So,How can I get order type for that?
    Reply will be greatly appreciated.
    Thanks in advance.
    Regards,
    Abhay.

    Hi Gagan
    Could you please share with your solution, i am kind looking help in same are. We are using CRM 7.0, but i can not find BOL component which is ISUSRV.
    My requirement is to create Service Order from Webclient, example meter problem reporting, etc
    Please kindly reply or by email shankar no dot vangari at gmail com
    regards
    shankar

  • I am trying to surf the Net and every time I click the SAFARI button, a window pops up saying that this application was closed all of a sudden

    I am trying to surf the Net and every time I click the SAFARI button, a window pops up saying that this application was closed all of a sudden. What can I do to solve this problem?

    How are you connecting to this website?

  • How to export the Apex web page to PDF with click of a button?

    How to export the Apex web page to PDF with click of a button?
    Am looking at exporting the Form view on APEX to be exported to PDF.

    In order to get a PDF, you need to generate a Report....in PDF format.
    If you are using the APEX Listener, you can initiate the download of the PDF by calling APEX_UTILS.download_print_document()  (I normally place this in a Process)
    BUT -- You have to create the Report (under Shared Components) and a Template (also under Shared Components).
    The white paper in my first post gives you the HOWTO "[Create] Custom PDF Reports with Oracle Application Express and the APEX Listener".
    Start by creating a Report (in Shared Components, bottom right) that uses a simple SQL statement like:
    Select * from emp where empno = :P15_EMPNO
    You may need to hard code the parameter before you hit "Download XML" button.
    The XML that you get from clicking "Download XML" satisfies the "Step 1 - Create an XML Data Source" found on Page 11 of the document.
    The rest of the instructions is in that whitepaper.
    MK

  • When I get directions from Mapquest and click the "print" button, a new window opens but it is blank. How do I fix this? Thanks

    When I click the "print" button a simplified set of directions should pop up for me to print.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]

  • After the latest update to FF13, I double click the bookmark button and the window won't open so I can edit.

    When I double click the bookmark button (star) a window always drops down so I can edit the bookmark or place it into the folder I want. Now after the latest update to FF13 (june 2012) I can click once and the page is bookmarked to the "unsorted" folder, but when I double click nothing happens. 1) I restarted FF, didn't help 2) I rebooted computer, didn't help.

    Thank you very much for pointing me in the right direction. I had 5 extensions installed. I disabled all of them then restarted FF. My bookmark window started working again. Then I enabled each extension one at a time to find the culprit. It was "Compact Menu 2 version 4.3.1". It's a handy extension for me, but I can live without it till they have a version that will work for me. Thanks again.

  • Where i click some thing on facebook a window pops up before i could right click the link in the window but now its got a dot line box around it and i cant help

    when i click some thing on facebook a window pops up
    before i could right click the link in the window
    but now its got a dot line box around it and i cant help

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • HT201066 Quick time player quit "unexpectedly" and won't reopen when I click the reopen button on the window that pops up when I try to play clips.I'm on an iMac with Lion.

    Quick time player quit "unexpectedly" and won't reopen when I click the reopen button on the window that pops up when I try to play clips.I'm on an iMac with Lion.

    Process:         QuickTime Player [4931]
    Path:            /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Identifier:      com.apple.QuickTimePlayerX
    Version:         10.2 (603.6)
    Build Info:      QuickTimePlayerX-603006000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [159]
    User ID:         502
    Date/Time:       2012-12-03 08:21:05.935 -0500
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          216924 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  130926 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      87ED4856-73EF-7C4D-A91D-F0942AC91C1E
    Crashed Thread:  6  Dispatch queue: com.apple.quicktimeplayerx.recents-queue
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    [4931] stack overflow
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   dyld                                    0x00007fff621a3660 dyld::findMappedRange(unsigned long) + 57
    1   dyld                                    0x00007fff621ad1df client_dyld_find_unwind_sections(void*, dyld_unwind_sections*) + 14
    2   libdyld.dylib                           0x00007fff8850af56 _dyld_find_unwind_sections + 59
    3   libunwind.dylib                         0x00007fff878cedaa libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::setInfoBasedOnIPRegister(bool) + 70
    4   libunwind.dylib                         0x00007fff878ced5b unw_init_local + 143
    5   libobjc.A.dylib                         0x00007fff8de387a0 objc_addExceptionHandler + 64
    6   com.apple.CoreFoundation                0x00007fff8ff0c20c _CFDoExceptionOperation + 380
    7   com.apple.AppKit                        0x00007fff8c23632c _NSAppKitLock + 77
    8   com.apple.AppKit                        0x00007fff8c32650b -[NSObject(_NSBindingAdaptorAccess) _releaseBindingAdaptor] + 67
    9   com.apple.AppKit                        0x00007fff8c402da7 -[NSController dealloc] + 65
    10  com.apple.AppKit                        0x00007fff8c402d3d -[NSUserDefaultsController awakeAfterUsingCoder:] + 35
    11  com.apple.Foundation                    0x00007fff89b7ea1c _decodeObjectBinary + 2760
    12  com.apple.Foundation                    0x00007fff89b7ddb4 _decodeObject + 226
    13  com.apple.AppKit                        0x00007fff8c1d59f4 -[NSNibConnector initWithCoder:] + 401
    14  com.apple.AppKit                        0x00007fff8c367f9b -[NSNibBindingConnector initWithCoder:] + 52
    15  com.apple.Foundation                    0x00007fff89b7ea09 _decodeObjectBinary + 2741
    16  com.apple.Foundation                    0x00007fff89b7f7e6 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1189
    17  com.apple.Foundation                    0x00007fff89b7fd58 -[NSArray(NSArray) initWithCoder:] + 538
    18  com.apple.Foundation                    0x00007fff89b7ea09 _decodeObjectBinary + 2741
    19  com.apple.Foundation                    0x00007fff89b7ddb4 _decodeObject + 226
    20  com.apple.AppKit                        0x00007fff8c1d4aca -[NSIBObjectData initWithCoder:] + 2025
    21  com.apple.Foundation                    0x00007fff89b7ea09 _decodeObjectBinary + 2741
    22  com.apple.Foundation                    0x00007fff89b7ddb4 _decodeObject + 226
    23  com.apple.AppKit                        0x00007fff8c40ba0b -[NSNib _instantiateNibWithExternalNameTable:] + 519
    24  com.apple.AppKit                        0x00007fff8c40b7d3 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 254
    25  com.apple.AppKit                        0x00007fff8c40ad87 -[NSViewController loadView] + 184
    26  com.apple.QuickTimePlayerX              0x00000001025bb688 0x1025a2000 + 104072
    27  com.apple.QuickTimePlayerX              0x00000001025bad10 0x1025a2000 + 101648
    28  com.apple.AppKit                        0x00007fff8c3b2be9 -[NSViewController view] + 41
    29  com.apple.QuickTimePlayerX              0x00000001025b60be 0x1025a2000 + 82110
    30  com.apple.Foundation                    0x00007fff89bbc5f8 _NSSetObjectValueAndNotify + 257
    31  com.apple.QuickTimePlayerX              0x00000001025b8808 0x1025a2000 + 92168
    32  com.apple.Foundation                    0x00007fff89bbb860 NSKeyValueNotifyObserver + 390
    33  com.apple.Foundation                    0x00007fff89bb30f3 -[NSObject(NSKeyValueObserverRegistration) _addObserver:forProperty:options:context:] + 584
    34  com.apple.Foundation                    0x00007fff89bb1efd -[NSObject(NSKeyValueObserverRegistration) addObserver:forKeyPath:options:context:] + 111
    35  com.apple.QuickTimePlayerX              0x00000001025b9001 0x1025a2000 + 94209
    36  com.apple.QuickTimePlayerX              0x00000001025b2190 0x1025a2000 + 65936
    37  com.apple.AppKit                        0x00007fff8c5781ba -[NSDocumentController _finishOpeningDocument:andShowWindows:] + 113
    38  com.apple.Foundation                    0x00007fff89be8a7c -[NSBlockOperation main] + 124
    39  com.apple.Foundation                    0x00007fff89bbe986 -[__NSOperationInternal start] + 684
    40  com.apple.Foundation                    0x00007fff89bc61a1 __block_global_6 + 129
    41  libdispatch.dylib                       0x00007fff8bce5f01 _dispatch_call_block_and_release + 15
    42  libdispatch.dylib                       0x00007fff8bce20b6 _dispatch_client_callout + 8
    43  libdispatch.dylib                       0x00007fff8bce70c8 _dispatch_main_queue_callback_4CF + 275
    44  com.apple.CoreFoundation                0x00007fff8febd0fe __CFRunLoopRun + 1614
    45  com.apple.CoreFoundation                0x00007fff8febc6b2 CFRunLoopRunSpecific + 290
    46  com.apple.HIToolbox                     0x00007fff857dc0a4 RunCurrentEventLoopInMode + 209
    47  com.apple.HIToolbox                     0x00007fff857dbe42 ReceiveNextEventCommon + 356
    48  com.apple.HIToolbox                     0x00007fff857dbcd3 BlockUntilNextEventMatchingListInMode + 62
    49  com.apple.AppKit                        0x00007fff8c234613 _DPSNextEvent + 685
    50  com.apple.AppKit                        0x00007fff8c233ed2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    51  com.apple.AppKit                        0x00007fff8c22b283 -[NSApplication run] + 517
    52  com.apple.AppKit                        0x00007fff8c1cfcb6 NSApplicationMain + 869
    53  libdyld.dylib                           0x00007fff8850b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8827dd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8bce4dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8bce49ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.coremedia.scheduledfileio
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.CoreMedia                     0x00007fff8c00edfe FigScheduledFileIOThread + 256
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 6 Crashed:: Dispatch queue: com.apple.quicktimeplayerx.recents-queue
    0   libsystem_kernel.dylib                  0x00007fff8827d212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8a09baf4 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8a0dfe9e __abort + 159
    3   libsystem_c.dylib                       0x00007fff8a0e0d17 __stack_chk_fail + 195
    4   com.apple.CoreServicesInternal          0x00007fff87a97a1e _CFURLCreateByResolvingBookmarkData + 3944
    5   com.apple.CoreFoundation                0x00007fff8ff4f3fe +[NSURL URLByResolvingBookmarkData:options:relativeToURL:bookmarkDataIsStale:error:] + 78
    6   com.apple.QuickTimePlayerX              0x000000010268880a 0x1025a2000 + 944138
    7   com.apple.QuickTimePlayerX              0x0000000102688607 0x1025a2000 + 943623
    8   com.apple.QuickTimePlayerX              0x0000000102687415 0x1025a2000 + 939029
    9   libdispatch.dylib                       0x00007fff8bce5f01 _dispatch_call_block_and_release + 15
    10  libdispatch.dylib                       0x00007fff8bce20b6 _dispatch_client_callout + 8
    11  libdispatch.dylib                       0x00007fff8bce347f _dispatch_queue_drain + 235
    12  libdispatch.dylib                       0x00007fff8bce32f1 _dispatch_queue_invoke + 52
    13  libdispatch.dylib                       0x00007fff8bce31c3 _dispatch_worker_thread2 + 249
    14  libsystem_c.dylib                       0x00007fff8a09ccab _pthread_wqthread + 404
    15  libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8827d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a09ceec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a09ccb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a087171 start_wqthread + 13
    Thread 8:: com.apple.coremedia.player.async
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8d5f922f 0x7fff8d59f000 + 369199
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 9:: AQClient
    0   libsystem_kernel.dylib                  0x00007fff8827b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8827ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8feb7803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8febcee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8febc6b2 CFRunLoopRunSpecific + 290
    5   com.apple.audio.toolbox.AudioToolbox          0x00007fff8a15bc9c GenericRunLoopThread::Entry(void*) + 204
    6   com.apple.audio.toolbox.AudioToolbox          0x00007fff8a15bb53 CAPThread::Entry(CAPThread*) + 175
    7   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 10:: com.apple.coremedia.audioqueue.source
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8d5d115a 0x7fff8d59f000 + 205146
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 11:: com.apple.coremedia.audiomentor
    0   libsystem_kernel.dylib                  0x00007fff8827d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8a09ef89 _pthread_cond_wait + 869
    2   com.apple.CoreMedia                     0x00007fff8c012ff8 FigSemaphoreWaitRelative + 273
    3   com.apple.MediaToolbox                  0x00007fff8d61a3ba 0x7fff8d59f000 + 504762
    4   com.apple.CoreMedia                     0x00007fff8c0134c9 figThreadMain + 382
    5   libsystem_c.dylib                       0x00007fff8a09a742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8a087181 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000104a1d088  rdx: 0x0000000000000000
      rdi: 0x0000000000014e07  rsi: 0x0000000000000006  rbp: 0x0000000104a1d0b0  rsp: 0x0000000104a1d088
       r8: 0x00007fff7603c278   r9: 0x0000000000000000  r10: 0x0000000030000000  r11: 0x0000000000000206
      r12: 0x00007fea19037000  r13: 0x00007fea18c9f630  r14: 0x0000000104a1e000  r15: 0x0000000000000000
      rip: 0x00007fff8827d212  rfl: 0x0000000000000206  cr2: 0x00007fff76035fe8
    Logical CPU: 0
    Binary Images:
           0x1025a2000 -        0x1027fafef  com.apple.QuickTimePlayerX (10.2 - 603.6) <C05152C9-652A-3CB1-9091-F0A48CB5B725> /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
           0x106479000 -        0x10647efff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <E807EE74-4241-36B2-87A6-92AFAE41D68F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x106483000 -        0x1065d7fff  com.apple.audio.units.Components (1.8 - 1.8) <7846E0A3-4AFB-3E29-96D3-BF87348024ED> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x106905000 -        0x106999ff7  com.apple.proapps.AppleProResCodec (1.0.2 - 5718) <573A32C9-17C7-33C8-B691-A68BB23E9A05> /System/Library/Video/Plug-Ins/AppleProResCodec.bundle/Contents/MacOS/AppleProR esCodec
           0x106f9c000 -        0x107153fff  GLEngine (8.6.1) <94C4C4C0-E96C-30B2-8CD7-DE8D82CA74F1> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10718a000 -        0x1072ccfff  libGLProgrammability.dylib (8.6.1) <FC866EA6-6263-3F51-BF7C-EA1A9A4162B4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x107300000 -        0x1075a1fef  com.apple.AMDRadeonX3000GLDriver (1.0.29 - 1.0.0) <AFF4FFE6-F389-3E65-A224-F7382FB94620> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
           0x1075f0000 -        0x1075f3fff  com.apple.IOAccelerator (19.0.26 - 19.0.26) <0CA40D23-427D-3AF9-8C5C-E2592CEF3DFD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
           0x1075fa000 -        0x107607ff7  libGPUSupportMercury.dylib (8.6.1) <5762E7E4-C76E-3442-8C30-3BA1DDCD8BAE> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
           0x107a0f000 -        0x107a3cfff  GLRendererFloat (8.6.1) <B598274C-3C23-3EBB-A7C5-13C131FAC651> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x107a45000 -        0x107a4efe7  libcldcpuengine.dylib (2.1.19) <50800DA2-7233-32E5-9553-A02171B68399> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x107a54000 -        0x107a57ff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
        0x7fff621a2000 -     0x7fff621d693f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff85770000 -     0x7fff8577bfff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8577c000 -     0x7fff85aacff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff85aad000 -     0x7fff85afcff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff85b65000 -     0x7fff85b6ffff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff85b99000 -     0x7fff85ba4fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff85cbf000 -     0x7fff85dd8ff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff85de7000 -     0x7fff85dfcfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff85e25000 -     0x7fff867b5c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff867b6000 -     0x7fff86850fff  com.apple.CoreSymbolication (3.0 - 87) <3D9CBE8D-F047-3DFA-B067-F9589E2AF8BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff86851000 -     0x7fff86855fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff86856000 -     0x7fff869dcfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff869dd000 -     0x7fff86a25fff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff86aae000 -     0x7fff86abcfff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86abd000 -     0x7fff86ac1ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff86b2b000 -     0x7fff86b7cff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff86bb6000 -     0x7fff86c38fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff86c39000 -     0x7fff86c3bfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8770b000 -     0x7fff8770dff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8770e000 -     0x7fff8775dff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff877b4000 -     0x7fff877e5ff7  com.apple.sociald.Social (167.6 - 167.6) <D609BE09-3D78-358F-8316-FFE3A7D37687> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff877e6000 -     0x7fff877f3fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff87847000 -     0x7fff8784bfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8784c000 -     0x7fff87854fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff87856000 -     0x7fff87870fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff87871000 -     0x7fff878cdff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff878ce000 -     0x7fff878d4ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff87930000 -     0x7fff879f5ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff879f6000 -     0x7fff87a02ff7  com.apple.LegacyMediaBridge (1.1 - 39.1) <90494D75-89AB-3F3B-A47D-CBA0D77EF0AA> /System/Library/PrivateFrameworks/LegacyMediaBridge.framework/Versions/A/Legacy MediaBridge
        0x7fff87a53000 -     0x7fff87a89fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff87a8a000 -     0x7fff87ab8fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff87ab9000 -     0x7fff87eb0fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff87f21000 -     0x7fff87f33ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff87fb7000 -     0x7fff87fe2fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff87fe3000 -     0x7fff8802fff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff88082000 -     0x7fff88095ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff880a0000 -     0x7fff880a4fff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff880a5000 -     0x7fff880a5ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff880a6000 -     0x7fff880b4fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff880b5000 -     0x7fff880d4ff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff880d5000 -     0x7fff880d7ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff88104000 -     0x7fff88151fff  com.apple.CoreMediaIO (301.0 - 4147) <3B748499-C173-357B-976C-9FF257C5171E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff88152000 -     0x7fff881f8ff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff881f9000 -     0x7fff88200fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff88201000 -     0x7fff8826afff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8826b000 -     0x7fff88286ff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
        0x7fff88509000 -     0x7fff8850cff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8850d000 -     0x7fff88618fff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88619000 -     0x7fff88a55fff  com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff88a56000 -     0x7fff88af0fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff88db8000 -     0x7fff88de9ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88df0000 -     0x7fff88e8dff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff88f1e000 -     0x7fff88f26ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88f27000 -     0x7fff891c1ff7  com.apple.JavaScriptCore (8536 - 8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8924d000 -     0x7fff8925bff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
        0x7fff8925c000 -     0x7fff89265fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff892ab000 -     0x7fff892adfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff892ae000 -     0x7fff892aefff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff892af000 -     0x7fff892dbfff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff892dc000 -     0x7fff892e1fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff893a8000 -     0x7fff893e4fff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8962d000 -     0x7fff8971efff  com.apple.DiskImagesFramework (10.8 - 344) <B1B477F6-316D-32BD-8FCB-107F88649F69> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8971f000 -     0x7fff8976afff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8976f000 -     0x7fff897a6ff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff897a7000 -     0x7fff89845ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89847000 -     0x7fff8988aff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8988b000 -     0x7fff89b2ffff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff89b30000 -     0x7fff89e8cfff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89eb6000 -     0x7fff89fb8fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff89fc8000 -     0x7fff8a085ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8a086000 -     0x7fff8a152fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8a153000 -     0x7fff8a153fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a154000 -     0x7fff8a2a5fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8a2a6000 -     0x7fff8a2a6fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8a2b2000 -     0x7fff8a2b3ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff8a312000 -     0x7fff8b2cbfff  com.apple.WebCore (8536 - 8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8b2cc000 -     0x7fff8b323ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b324000 -     0x7fff8b343ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8bbf9000 -     0x7fff8bc05fff  libCSync.A.dylib (324.6) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8bc49000 -     0x7fff8bc91fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8bc92000 -     0x7fff8bc96ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8bc97000 -     0x7fff8bc9dfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8bc9e000 -     0x7fff8bcacff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8bcbe000 -     0x7fff8bcdffff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8bce0000 -     0x7fff8bcf5ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8bd23000 -     0x7fff8bdd4fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8bdd5000 -     0x7fff8bdf7ff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
        0x7fff8bdf8000 -     0x7fff8bdfafff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8bfec000 -     0x7fff8bfeffff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8bff0000 -     0x7fff8bff2fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8bff3000 -     0x7fff8c03eff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c0df000 -     0x7fff8cd0cff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8cd18000 -     0x7fff8cd2ffff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8cd30000 -     0x7fff8cd43ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8cd44000 -     0x7fff8cdacff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8cdad000 -     0x7fff8cdbcff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8cdbd000 -     0x7fff8cebbfff  com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8cf5a000 -     0x7fff8d0e4fff  com.apple.WebKit (8536 - 8536.26.14) <7C4D5DE6-7153-3E54-8D4F-BB2E9AE74878> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8d0e5000 -     0x7fff8d105fff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d106000 -     0x7fff8d112fff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8d113000 -     0x7fff8d116fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8d152000 -     0x7fff8d1aefff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8d1af000 -     0x7fff8d1beff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d1bf000 -     0x7fff8d46dfff  com.apple.imageKit (2.2 - 667) <66A64289-6259-335E-9D8C-E3E02ECE7837> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8d46e000 -     0x7fff8d473fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8d474000 -     0x7fff8d48afff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8d48b000 -     0x7fff8d4d5ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8d4d6000 -     0x7fff8d567fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8d570000 -     0x7fff8d58afff  com.apple.geokit (2.1 - 2.1) <2B0ED144-9284-3396-8B34-292C29F4EED6> /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit
        0x7fff8d598000 -     0x7fff8d59efff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8d59f000 -     0x7fff8d998ff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8d999000 -     0x7fff8d999fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8d99a000 -     0x7fff8d9efff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8d9f0000 -     0x7fff8dac3ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8dac4000 -     0x7fff8dac4fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8dac5000 -     0x7fff8db46fff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8db9e000 -     0x7fff8dca0fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8dca1000 -     0x7fff8dcb7fff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8dcb8000 -     0x7fff8de2cfff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8de2d000 -     0x7fff8df4592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8df46000 -     0x7fff8df74ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8df75000 -     0x7fff8dfabfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8dfb1000 -     0x7fff8dfc5fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8dfc6000 -     0x7fff8e033ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8e034000 -     0x7fff8e06efff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8e06f000 -     0x7fff8e26ffff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
        0x7fff8e422000 -     0x7fff8e6a7fff  com.apple.RawCamera.bundle (4.01 - 666) <BBDA55DD-6155-39B5-9D55-5CCCCFF26D98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8e6a8000 -     0x7fff8e727ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8e728000 -     0x7fff8e753fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8e754000 -     0x7fff8e75fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8e814000 -     0x7fff8e818fff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8e819000 -     0x7fff8eae9fff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8eaea000 -     0x7fff8eb0bff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8eb0c000 -     0x7fff8ee23ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8ee24000 -     0x7fff8ef21fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff8ef22000 -     0x7fff8ef24fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8ef26000 -     0x7fff8ef63fe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8ef64000 -     0x7fff8ef65ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8ef66000 -     0x7fff8eff3ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8eff4000 -     0x7fff8f04dfff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8f04e000 -     0x7fff8f073ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
        0x7fff8f077000 -     0x7fff8f174ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8f175000 -     0x7fff8f247ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8f248000 -     0x7fff8f252ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8f253000 -     0x7fff8f3eefef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f418000 -     0x7fff8f41bfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8f450000 -     0x7fff8f478fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f479000 -     0x7fff8f6d4ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8f6d5000 -     0x7fff8f6ffff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f76c000 -     0x7fff8f77dff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff8f7b9000 -     0x7fff8f8fdfef  com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8f921000 -     0x7fff8fa16fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8fa88000 -     0x7fff8fa8efff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8fa8f000 -     0x7fff8fad2fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8faec000 -     0x7fff8faecfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8fb22000 -     0x7fff8fb65fff  com.apple.ShareKit (1.0 - 119.8) <17331840-1DA7-34C5-929C-4CE8EE7AE9D6> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff8fb66000 -     0x7fff8fbc3ff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8fcc2000 -     0x7fff8fdebff7  com.apple.avfoundation (2.0 - 361.25) <1F5CACA6-9CF3-3FAB-BDE1-E6CC96A63FF7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8fe27000 -     0x7fff8fe4eff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff8fe88000 -     0x7fff90071fff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90072000 -     0x7fff900dffff  com.apple.datadetectorscore (4.0 - 269.1) <B69645EB-C4BF-3D52-A49B-CB1A1A88512F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff900e0000 -     0x7fff90136fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff90137000 -     0x7fff90194fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff90195000 -     0x7fff90306ff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff9030e000 -     0x7fff90ab6fff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff90ab7000 -     0x7fff90ad4fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff90ad5000 -     0x7fff90b31fff  com.apple.corelocation (1.0 - 1239.39) <88EFC8F1-0A91-3EB6-A1F6-76294541D85D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff90b32000 -     0x7fff90bb2ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90bb3000 -     0x7fff90bb3fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff90c1c000 -     0x7fff90c84fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff90c85000 -     0x7fff90c85fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff90c8b000 -     0x7fff90c8cff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
        0x7fff90c8d000 -     0x7fff910aafff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9119d000 -     0x7fff9119eff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff9134a000 -     0x7fff9138afff  com.apple.MediaKit (13 - 659) <0C56D7FF-0430-3199-9952-CF8577519449> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff9138b000 -     0x7fff913a2fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff913a3000 -     0x7fff913a4fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff913a5000 -     0x7fff913fbff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff913fc000 -     0x7fff914d6ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff914d7000 -     0x7fff914dbfff  libCGXType.A.dylib (324.6) <2FC25246-A69F-3F81-9AC6-0A1753E1C6A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff914de000 -     0x7fff91713ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91714000 -     0x7fff91715fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9174c000 -     0x7fff9186cfff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff9186d000 -     0x7fff918c7fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff918c8000 -     0x7fff918cffff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff918d0000 -     0x7fff918d0fff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff918d1000 -     0x7fff918d2fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff918d3000 -     0x7fff918ffff7  libRIP.A.dylib (324.6) <5A7EB5C2-BA60-36D7-BF41-9853F37837AA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff91903000 -     0x7fff91910fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff91911000 -     0x7fff91911fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff91912000 -     0x7fff9191cfff  com.apple.DisplayServicesFW (2.6.1 - 353) <0505CB8A-47D9-3539-9A0D-24F09D99E9D8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff9191d000 -     0x7fff9195cff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff9195d000 -     0x7fff91998fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff91999000 -     0x7fff919a6ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff919a7000 -     0x7fff919bbfff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff919bc000 -     0x7fff91b6afff  com.apple.QuartzCore (1.8 - 304.0) <897FAA5D-FF13-33FE-878B-B164D684F019> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff91b6b000 -     0x7fff91bc2ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff91f3b000 -     0x7fff91f62fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff91f63000 -     0x7fff91f68fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff91f69000 -     0x7fff91f8bff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9253c000 -     0x7fff92656fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff926a3000 -     0x7fff926e7fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff926e8000 -     0x7fff926f3ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 5
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
       

  • My mail window won't come up when I click the mail icon in desktop.  Mac Book Pro

    My Mail window won't come up when I click the mail icon in desktop.  My Accounts both show as marked in accounts.

    Try clicking GO in the menu bar/Go to folder in the pane enter  ~/Library/Preferences/com,apple.mail.plist
    Another way is to hold the OPTION key click GO in the menu bar>Library>Preferences, locate the the file com.apple.mail.plist
    Drag this file to the trash (do not empty)
    Quit Mail log out and reboot, see if that helps, if it does not you can drag the file from the trash and and replace it where it was. (it will probably give you a this file already exists, click replace)
    Post back there may another thing to check.
    ATB

Maybe you are looking for