2.1 EA1 - Sometimes opening a package closes another

Hi all.
I usually work with several package / package bodies open.
Sometimes (I was unable to find a pattern to reproduce, so far) when I click on an object in the tree (for example to edit a new package body) one of the already opened objects gets closed: it can happen silently or, if there are unsaved modifications, I'm prompted with the usual dialog.
Never experienced this before.
Alessandro

Thanks for your reply.
I assume you have standard Preferences->Code Editor -> Autopin & Max Open Editors = 8.Yes.
Does this happen before you exhaust Max Open Editors?Yes: I've seen it with only 4/5 objects open..
Alessandro

Similar Messages

  • Full screen Safari slides open whenever I close another application

    Hey all,
    Probably a simple fix, but I always have Safari in full screen mode (mac laptop), and when I am working on the desktop and close a finder window or another application, my display automatically slides over to the full screen Safari window I have open. Any help on how to prevent this?
    Cheers.

    1. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    2. Delete Cookies
        Safari > Preferences > Privacy > Cookies and other website data:
        Click the “Details” button.
        Remove all cookies except from Apple, your internet service provider and banks.
    3. Safari > Preferences > Extensions
        Turn off Extensions if any and launch Safari again to test.
        Turn on those one by one and test.

  • TS1702 I bought the app Atari greatest hits package for $9.99 and now the app will not even open... Every time I try to open it it closes on its own...any suggestions?

    I bought the app Atari greatest hits package for $9.99 and now the app will not even open... Every time I try to open it it closes on its own...any suggestions?

    Try deleting it and reinstalling it.
    you can also try giving your iPad a reset. Hold down the sleep and home keys for about 20 seconds or so until it reboots and see if that helps.

  • Sometimes open windows close( from sight), but they are still "open" . how do I get them back "in view"?

    sometimes "open" windows dissapear. There is no crash. They are still active, but not viewable. How do I get them back into view?

    Do you see lost windows appearing in that list that are not on the Taskbar?<br />
    Such things can happen on Windows XP.<br />
    That has been reported in the past and I've seen it myself.<br />
    You can usually switch to such hidden windows via Alt+Tab.

  • Why doesn't firefox close out when I'm done with it and close it; when next I try to open firefox again I get a dialog box telling me firefox is open and to close it or restart my computer? I'm tired of doing that one of more times a day.

    1. This happens at least once a day, and sometimes multiple times. Today it's happened twice, thus far. My home page is FoxNews.com and if I leave it up overnight or for longer periods during the day firefox doesn't allow the refresh of the home page it just goes to yahoo 404--error can't find the webpage. Then when I enter FoxNews.com it adds a /error to the url and doesn't allow me to go to MY homepage. So I close firefox and then if I try to reopen it and then I get the dialog box saying firefox is open and to close it or restart my computer. Very aggravating. 2. Also the Adobe flash drive update always fails. 3. Webpages get in loops and fail to load to the point I have to stop and refresh or close out and reopen.

    One situation in which Command+w or Ctrl+w might not work is if the "focus" is in a plugin such as the Flash player used on Youtube after you interact with the player controls. Firefox will continue to send the keyboard input to the plugin until you move the focus back to the page. Does that account for any of the problem?

  • Collapsible Panels - Links to open one, and close others

    Hi,
    I am new to Dreamweaver and have been creating my site by
    learning as I go along. I have already read through all the other
    related topics associated with Collapsible Panels on this blog and
    have still not found an answer. I have been able to open and close
    Collapsible Panels by using links - but unfortunately, I need more
    than just opening and closing.
    On my site i have approximately 5 pages, all with the same
    header and Menu bar. The Information (that i have presented in
    numerous Collapsible Panels) does however vary from page to page.
    What I need to try and figure out is:
    How can I open one collapsible panel and close all others? I
    have seen the one example which leads to my next question:
    How can I group Panels? Some examples of how to open one and
    close all others use this grouping. Is there any other way of
    opening one and closing all others without grouping?
    Lastly, is it possible to set up a link that can be viewed on
    one page which when clicked opens the relevant page and collapsible
    panel? i.e. on my About Us page there is a link (using the Menu
    bar) for one of my several services on the services drop down menu
    (but services is on a different page with the same setup). When a
    viewer clicks on the specific service, is it possible to get the
    site to open the services page, and open the relevant collapsible
    panel (with all other Panels closed)?
    Any assistance would be greatly appreciated - I have been
    searching for days now and cannot seem to find any
    answers/directions in laymans terms.
    Kind regards,
    John

    wlsjoh013 wrote:
    > Hi,
    >
    > I am new to Dreamweaver and have been creating my site
    by learning as I go
    > along. I have already read through all the other related
    topics associated
    > with Collapsible Panels on this blog and have still not
    found an answer. I
    > have been able to open and close Collapsible Panels by
    using links - but
    > unfortunately, I need more than just opening and
    closing.
    >
    > On my site i have approximately 5 pages, all with the
    same header and Menu
    > bar. The Information (that i have presented in numerous
    Collapsible Panels)
    > does however vary from page to page. What I need to try
    and figure out is:
    >
    > How can I open one collapsible panel and close all
    others? I have seen the one
    > example which leads to my next question:
    This page has an example that has a link that can open and
    close a panel:
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/collapsible_panel_sample. htm
    One way to do this would be to have a single link that would
    open one of your panels using the code, but then add to it code
    that closes each of the other panels, for example:
    <a href="#"
    onclick="CollapsiblePanel4.open();CollapsiblePanel5.close();CollapsiblePanel6.close();">O pen
    4, close 5 and 6</a>
    To make this work, you'll need to look that the panel
    constructors at the bottom of your page and make sure to match up
    the panel variable names i.e. "var CollapsiblePanel1 =...." the
    variable is CollapsiblePanel1.
    You could also write a function that gathers together the
    various panels you have on the page and then pass to it only the
    panel that you want kept open. For now, though, it might be best to
    use the above method, given your expertise. And taking that even
    further, you could apply the function call unobtrusively. Both the
    function call and the unobtrusive part you can work on later to get
    this working for now.
    > How can I group Panels? Some examples of how to open one
    and close all others
    > use this grouping. Is there any other way of opening one
    and closing all
    > others without grouping?
    This is a little confusing, on one hand you ask about how to
    group, but then ask how not to group. There is a concept of a
    collapsible panel group:
    http://labs.adobe.com/technologies/spry/samples/collapsiblepanel/CollapsiblePanelGroupSamp le.html
    But there is another type of group, that may be more what
    you're looking for, and that's an Accordion panel, which is similar
    to the collapsible panel group, with the exception that it can only
    have one panel open at a time.
    > Lastly, is it possible to set up a link that can be
    viewed on one page which
    > when clicked opens the relevant page and collapsible
    panel? i.e. on my About Us
    > page there is a link (using the Menu bar) for one of my
    several services on the
    > services drop down menu (but services is on a different
    page with the same
    > setup). When a viewer clicks on the specific service, is
    it possible to get
    > the site to open the services page, and open the
    relevant collapsible panel
    > (with all other Panels closed)?
    Probably the easiest way to do this particular one would be
    to make sure that you have all of the panels set to be closed when
    the page loads, and then take a look at the code for the last
    example on this page:
    http://labs.adobe.com/technologies/spry/samples/utils/URLUtilsSample.html
    That example uses a tabbed panel, but the concept is the
    same, use a URL parameter to determine what to show. You'll need to
    link in the SpryURLUtils file in the Spry download package (look in
    the includes folder):
    http://labs.adobe.com/technologies/spry/home.html
    Essentially, your link will look similar to:
    sample.html?panel=1
    Then your code could look something like:
    var params = Spry.Utils.getLocationParamsAsObject();
    var CollapsiblePanel1 = new
    Spry.Widget.CollapsiblePanel("CollapsiblePanel1",
    {contentIsOpen:(params.panel==1 )} );
    var CollapsiblePanel2 = new
    Spry.Widget.CollapsiblePanel("CollapsiblePanel2",
    {contentIsOpen:(params.panel==2 )} );
    Basically what this is doing is creating an object from the
    URL parameters. Then for each of the panels the constructor has
    code that determines whether or not to expand the panel when the
    page loads. So it checks the value of params.panel to see if it
    matches 1 (for the first one), if it does, then that means that
    contentIsOpen is set to true, if it is some other number or is not
    present at all, then that means that the panel is closed. This
    would then be repeated down the line for how ever many panels you
    want to operate like that.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Subscribe to Photoshop CC for photographers but keeps saying my trial has expired. Both Photoshop and lightroom. Smetimes this happens 3 times in one day or perhaps every  third day. When I open either package I get a message saying that I have 00 days le

    Both Photoshop and Lightroom exhibit the same error. Sometimes this happens 3 times in one day or perhaps every  third day. When I open either package I get a message saying that I have 00 days left in the trial and to continue I need to purchase a licence or start a trail. If I click on purchase a Licence the once I log in with Adobe ID I can get started. I have contacted Adobe chat support 6 times. They suggest deleting an opm.db  file and assure me that this will sort the problem and within 24 hours back to square one

    Here it happens only with photoshop cc 2014. i just deleped opm.db i will check again tomorrow.

  • Opening a package saved in CC using CS4

    Hi there,
    I am attempting to send my collegue a package that I saved using InDesign CC, but she has CS4. When she tries to open the package, she gets the error message:
    I know you have to save a file as an .idml in order to open it in an earlier version, but when I package my work, there is no option to save/package for an earlier version. Any solutions?
    Thanks.

    After you package the file, close the file you worked on and find the folder with the package. Open the INDD file from there.
    Use file > save as and choose CS4 and later. It will export an IDML file into the folder with the INDD file.
    Depending upon the feature you used that file may not work all that well and if nothing else, the text will probably reflow.

  • IPhoto 11 opens and then closes

    Hi, I have an issue with iPhoto. After I open it immediately closes. It also sometimes tries to rebuild the library, but doesn't try every time. If I manage to click the taskbar and open a drop down menu it will stay open, but once I click an item or open a window and leave the drop down menu it will close again. I've already read about rebuilding my library, have done so, and I have repaired my permissions. Is there a way to find a crash report that's being generated when it crashes?
    Any help would be appreciated.

    I just did both of those and it still didn't work... Do you have any idea what SafariStand3.0L151 is? Or the share kit? I've pasted the console messages again from opening iphoto to the crash after clicking import:
    Edit: This time there was an iPhoto crash log generated! I'm going to paste it below this one. It seems way more informative then the console info. Sorry about it being so long!
    11/13/12 2:58:43.750 PM Console[200]:  Marker - Nov 13, 2012 2:58:43 PM
    11/13/12 2:58:52.991 PM com.apple.security.pboxd[26937]: Can't open input server /Users/Axusus/Library/InputManagers/SafariStand3.0L151
    11/13/12 2:58:53.498 PM WindowServer[91]: Received display connect changed for display 0x4280380
    11/13/12 2:58:53.561 PM WindowServer[91]: Received display connect changed for display 0x3f003d
    11/13/12 2:58:53.561 PM WindowServer[91]: Received display connect changed for display 0x3f003e
    11/13/12 2:58:53.561 PM WindowServer[91]: Received display connect changed for display 0x3f003f
    11/13/12 2:58:53.563 PM WindowServer[91]: CGXMuxAcknowledge: Posting glitchless acknowledge
    11/13/12 2:58:53.581 PM WindowServer[91]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280380 device: 0x105124320  isBackBuffered: 1 numComp: 3 numDisp: 3
    11/13/12 2:58:53.615 PM WindowServer[91]: Received display connect changed for display 0x4280380
    11/13/12 2:58:54.985 PM fontd[193]: ATS Font family could not be created for Bank Gothic Light - Legacy Applications may not see this font
    11/13/12 2:58:54.988 PM fontd[193]: ATS Font family could not be created for Bank Gothic Medium - Legacy Applications may not see this font
    11/13/12 2:58:54.993 PM fontd[193]: ATS Font family could not be created for Bradley Hand Bold - Legacy Applications may not see this font
    11/13/12 2:58:55.003 PM fontd[193]: ATS Font family could not be created for Braganza - Legacy Applications may not see this font
    11/13/12 2:58:55.007 PM fontd[193]: ATS Font family could not be created for Hopper Script Regular - Legacy Applications may not see this font
    11/13/12 2:58:55.031 PM fontd[193]: ATS Font family could not be created for Superclarendon Black Italic - Legacy Applications may not see this font
    11/13/12 2:58:55.034 PM fontd[193]: ATS Font family could not be created for Superclarendon Black - Legacy Applications may not see this font
    11/13/12 2:58:55.036 PM fontd[193]: ATS Font family could not be created for Superclarendon Bold Italic - Legacy Applications may not see this font
    11/13/12 2:58:55.038 PM fontd[193]: ATS Font family could not be created for Superclarendon Bold - Legacy Applications may not see this font
    11/13/12 2:58:55.041 PM fontd[193]: ATS Font family could not be created for Superclarendon Italic - Legacy Applications may not see this font
    11/13/12 2:58:55.043 PM fontd[193]: ATS Font family could not be created for Superclarendon Light Italic - Legacy Applications may not see this font
    11/13/12 2:58:55.046 PM fontd[193]: ATS Font family could not be created for Superclarendon Light - Legacy Applications may not see this font
    11/13/12 2:58:55.048 PM fontd[193]: ATS Font family could not be created for Superclarendon Regular - Legacy Applications may not see this font
    11/13/12 2:59:00.419 PM lsboxd[247]: @AE relay 61657674:72617070
    11/13/12 2:59:09.508 PM com.apple.ShareKitHelper[21678]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    11/13/12 2:59:09.508 PM com.apple.ShareKitHelper[21678]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    11/13/12 2:59:09.509 PM com.apple.ShareKitHelper[21678]: --warning: [ShareKit] Cancel UI for running services with Client PID: 26918
    11/13/12 2:59:09.511 PM WindowServer[91]: CGXDeferSurfaces : Invalid source window 337
    11/13/12 2:59:09.659 PM WindowServer[91]: Received display connect changed for display 0x4280380
    11/13/12 2:59:09.705 PM WindowServer[91]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280380 device: 0x105124320  isBackBuffered: 1 numComp: 3 numDisp: 3
    11/13/12 2:59:09.720 PM WindowServer[91]: CGXMuxAcknowledge: Posting glitchless acknowledge
    11/13/12 2:59:09.730 PM WindowServer[91]: Received display connect changed for display 0x4280380
    11/13/12 2:59:09.740 PM WindowServer[91]: Received display connect changed for display 0x3f003d
    11/13/12 2:59:09.740 PM WindowServer[91]: Received display connect changed for display 0x3f003e
    11/13/12 2:59:09.740 PM WindowServer[91]: Received display connect changed for display 0x3f003f
    Process:         iPhoto [27247]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [176]
    User ID:         501
    Date/Time:       2012-11-13 15:01:54.956 -0800
    OS Version:      Mac OS X 10.8.2 (12C3006)
    Report Version:  10
    Interval Since Last Report:          73830 sec
    Crashes Since Last Report:           28
    Per-App Interval Since Last Report:  260 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      2FA47F34-95C5-FC37-54B7-D74CED85D9CC
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
    VM Regions Near 0x8:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-00000000000b0000 [  700K] ---/--- SM=NUL 
    Application Specific Information:
    Performing @selector(importFiles:) from sender NSMenuItem 0x7b248920
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x98737efa pthread_mutex_lock + 18
    1   com.apple.CoreFoundation                0x93fedc60 CFRunLoopRemoveSource + 80
    2   com.apple.LaunchServices                0x97ee26d3 _LSUnscheduleNotificationFunction + 420
    3   com.apple.AppKit                        0x9256bc8a unscheduleApplicationNotification + 42
    4   com.apple.AppKit                        0x9280aa6c -[NSWorkspaceNotificationCenter _destroySubsystemIfUnobserved:] + 151
    5   com.apple.AppKit                        0x927526e2 -[NSWorkspaceNotificationCenter _addOrRemoveObserver:forName:isAdding:] + 427
    6   com.apple.AppKit                        0x9280a9cc -[NSWorkspaceNotificationCenter removeObserver:name:object:] + 145
    7   com.apple.RemoteViewServices            0x98bf02f4 -[NSSharedWindowController cleanup] + 164
    8   com.apple.RemoteViewServices            0x98bf4525 -[NSAccessoryWindow cleanup] + 228
    9   com.apple.RemoteViewServices            0x98be7eb8 -[NSRemoteSavePanel _handlePanelComplete:] + 455
    10  com.apple.RemoteViewServices            0x98be97ac -[NSRemoteSavePanel connection:didReceiveRequest:] + 636
    11  com.apple.RemoteViewServices            0x98be1220 __block_global_4 + 90
    12  com.apple.CoreFoundation                0x93ffbf50 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 16
    13  com.apple.CoreFoundation                0x93fb9287 __CFRunLoopDoBlocks + 247
    14  com.apple.CoreFoundation                0x93fdfe36 __CFRunLoopRun + 918
    15  com.apple.CoreFoundation                0x93fdf63a CFRunLoopRunSpecific + 378
    16  com.apple.CoreFoundation                0x93fdf4ab CFRunLoopRunInMode + 123
    17  com.apple.HIToolbox                     0x9357515a RunCurrentEventLoopInMode + 242
    18  com.apple.HIToolbox                     0x93574df5 ReceiveNextEventCommon + 162
    19  com.apple.HIToolbox                     0x93574d44 BlockUntilNextEventMatchingListInMode + 88
    20  com.apple.AppKit                        0x92674a3a _DPSNextEvent + 724
    21  com.apple.AppKit                        0x9267426c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    22  com.apple.AppKit                        0x928c72c0 -[NSApplication _realDoModalLoop:peek:] + 667
    23  com.apple.AppKit                        0x928c7404 -[NSApplication _doModalLoop:peek:] + 67
    24  com.apple.AppKit                        0x928c75c5 -[NSApplication runModalForWindow:] + 198
    25  com.apple.RemoteViewServices            0x98be6161 -[NSRemoteSavePanel runModal] + 635
    26  com.apple.iPhoto                        0x006d0913 0xb0000 + 6424851
    27  com.apple.iPhoto                        0x002af243 0xb0000 + 2093635
    28  libobjc.A.dylib                         0x988955d3 -[NSObject performSelector:withObject:] + 70
    29  com.apple.AppKit                        0x92760bd2 -[NSApplication sendAction:to:from:] + 436
    30  com.apple.AppKit                        0x9289d3dc -[NSMenuItem _corePerformAction] + 529
    31  com.apple.AppKit                        0x9289d06b -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 163
    32  com.apple.AppKit                        0x9289c6f4 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    33  com.apple.AppKit                        0x9257d2ba -[NSMenu performActionForItemAtIndex:] + 65
    34  com.apple.AppKit                        0x9257d26f -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    35  com.apple.AppKit                        0x9257d23a -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    36  com.apple.AppKit                        0x9257d0b9 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 162
    37  com.apple.AppKit                        0x928957ce NSSLMMenuEventHandler + 454
    38  com.apple.HIToolbox                     0x936c9b6b _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    39  com.apple.HIToolbox                     0x93551594 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    40  com.apple.HIToolbox                     0x93550980 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    41  com.apple.HIToolbox                     0x93564855 SendEventToEventTarget + 88
    42  com.apple.HIToolbox                     0x936c9a1a SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 498
    43  com.apple.HIToolbox                     0x93540b84 SendMenuCommandWithContextAndModifiers + 70
    44  com.apple.HIToolbox                     0x93540b31 SendMenuItemSelectedEvent + 268
    45  com.apple.HIToolbox                     0x935409b6 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134
    46  com.apple.HIToolbox                     0x9371602e MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 623
    47  com.apple.HIToolbox                     0x93521332 _HandleMenuSelection2 + 633
    48  com.apple.HIToolbox                     0x935210af _HandleMenuSelection + 53
    49  com.apple.AppKit                        0x9274e45a _NSHandleCarbonMenuEvent + 309
    50  com.apple.AppKit                        0x926750df _DPSNextEvent + 2425
    51  com.apple.AppKit                        0x9267426c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    52  com.apple.AppKit                        0x9266a6cc -[NSApplication run] + 855
    53  com.apple.AppKit                        0x9260d6f6 NSApplicationMain + 1053
    54  com.apple.iPhoto                        0x000bfc99 0xb0000 + 64665
    55  com.apple.iPhoto                        0x000bf2e5 0xb0000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x944d69ae kevent + 10
    1   libdispatch.dylib                       0x90336c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x903367a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x944d60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9873504c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98734e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9871ccca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x944d60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9873504c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98734e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9871ccca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x944d60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9873504c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98734e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9871ccca start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x02062e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x02061efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    11  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x97bfa3c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x97bfa1ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x97bff740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026ae48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x98895586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x0206bdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x988955d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0206422c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x02063aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x02063313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x02061f10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x97bcc1d8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x97bcc15b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x98732557 _pthread_start + 344
    17  libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 13:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x944d5be6 __select + 10
    1   com.apple.CoreFoundation                0x94023c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x98732557 _pthread_start + 344
    3   libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x944d60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9873504c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98734e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x9871ccca start_wqthread + 30
    Thread 15:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x944d58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98737289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98737512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x98853fe9 CVDisplayLink::waitUntil(unsigned long long) + 297
    4   com.apple.CoreVideo                     0x98853078 CVDisplayLink::runIOThread() + 658
    5   com.apple.CoreVideo                     0x98852dce startIOThread(void*) + 160
    6   libsystem_c.dylib                       0x98732557 _pthread_start + 344
    7   libsystem_c.dylib                       0x9871ccee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000008  ebx: 0x00000000  ecx: 0x98737ef6  edx: 0x00000000
      edi: 0x00000008  esi: 0x00000000  ebp: 0xbff4df58  esp: 0xbff4df10
       ss: 0x00000023  efl: 0x00010282  eip: 0x98737efa   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000008
    Logical CPU: 6
    Binary Images:
       0xb0000 -   0xd9cfeb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf30000 -  0x100affc  org.python.python (2.6.7 - 2.6.7) <AEF0F842-12A1-3139-9187-6B33EBE4100F> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1057000 -  0x105ffff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10cf000 -  0x12abffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x133a000 -  0x133fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1347000 -  0x1376ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1398000 -  0x13bfff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13d4000 -  0x13f8ffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1411000 -  0x141cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x142a000 -  0x143fffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x144d000 -  0x1476ff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <F5A4CCC3-E5E2-3451-96FD-40BA328605B6> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1491000 -  0x1493fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x149b000 -  0x14a6ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14b1000 -  0x1530ff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1574000 -  0x1692ff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1745000 -  0x175aff7  com.apple.iChat.InstantMessage (7.0.1 - 3305) <2EB77610-6036-3CCD-9A93-51F7D6DE6EB2> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x176a000 -  0x1b03ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1bff000 -  0x1e90ff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1f6b000 -  0x2002ff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x205e000 -  0x20c6ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2109000 -  0x2207ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x224e000 -  0x2279ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x2291000 -  0x22fcfff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x2340000 -  0x2571ff3  com.apple.prokit (7.3.1 - 1943) <4F8BB1EA-FA77-3B98-8889-8045F3F23A38> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x268b000 -  0x2bb7ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2db6000 -  0x2dd9ffb  com.apple.AOSAccounts (1.1.2 - 1.1.94) <B0C709CB-DB8D-37D3-A58C-542703F4856B> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2df4000 -  0x2df4fff  com.apple.SafariServices.framework (8536 - 8536.26.17) <7AC5C0A5-0A71-33DD-A5C2-72545BEE3D3C> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2dfc000 -  0x2e03ff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2e10000 -  0x2e10ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <4173B9EB-A1C5-31BD-955B-E9D3CAB862C4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2e18000 -  0x3087fff  com.apple.CalendarStore (6.0 - 1245) <F1909196-2119-3516-952D-32E756BCC04D> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x318c000 -  0x31e8fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x3217000 -  0x3249ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x325d000 -  0x3266fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x326e000 -  0x326eff8 +cl_kernels (???) <F416E0C4-7CB6-4177-B38D-B6A1FAFE5DFD> cl_kernels
    0x3270000 -  0x3278ff3  com.apple.AppSandbox (2.0 - 1) <5C586FB0-9EBB-3F14-A63F-497C7A034359> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x3281000 -  0x32c5ff3  com.apple.CalDAV (6.0 - 112.5) <DF589033-DBDE-3162-A17D-401B39897767> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x32f6000 -  0x32ffff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x330e000 -  0x331ffff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x3330000 -  0x3392fff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x33cd000 -  0x341affb  com.apple.ExchangeWebServices (3.0 - 157) <29FBE8CC-2EC5-3209-B2CB-DD32E3E2ECC7> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x346f000 -  0x34bdfff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x34e9000 -  0x34f6ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x3501000 -  0x364dfff  com.apple.syncservices (7.0 - 713) <442C8E15-8870-3D65-98EC-82C0E2580EC0> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x36c9000 -  0x3736ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x3764000 -  0x378bff3  libsandbox.1.dylib (220) <D05340F5-32E0-31C7-9D26-28804F4723D6> /usr/lib/libsandbox.1.dylib
    0x3792000 -  0x37a5ff3  com.apple.AppContainer (2.0 - 1) <799C8E8B-F983-3A3D-91CF-A2C9B5B7D007> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x37b4000 -  0x37b8fff  com.apple.SecCodeWrapper (2.0 - 1) <EBB54594-C7F3-37FA-9759-09BD098ED688> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x37bf000 -  0x37c3ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x37c7000 -  0x37c9ffb  com.apple.LibraryRepair (1.0 - 1) <73246564-BF68-3833-B9A3-3CDA607BA706> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x37d0000 -  0x382afff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x3841000 -  0x44d0ff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4c53000 -  0x4c54fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4c5a000 -  0x4c7fff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4c89000 -  0x4cbdfe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4cc6000 -  0x4e2dfff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4e32000 -  0x4e8efff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <DC8444CC-FAAB-3DCA-A644-8712001A5F2E> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4ea5000 -  0x4fbfff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x505c000 -  0x5094ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <1F651752-FD09-3CF5-BCCC-5C1366DDFACD> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x50af000 -  0x50d6ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x50e9000 -  0x511aff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x512f000 -  0x5177ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x5198000 -  0x5237fff  com.apple.imcore (8.0 - 900) <2052F6C8-BDD3-339B-B0E2-6A3E282010A4> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x525d000 -  0x52b1ff7  com.apple.imfoundation (8.0 - 900) <7A1506BB-DDAD-3DB7-8557-19AB1B519FB0> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x52dc000 -  0x52e4ff7  com.apple.marco (8.0 - 900) <C2AE3F46-EFC9-349E-8D24-DF686C9BE2E7> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x52eb000 -  0x5312ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x532c000 -  0x535affb  com.apple.iLifeImageAnalysis (3.0 - 3) <82BEE3DD-958D-35A6-B167-C8C0C31227DB> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x67b8000 -  0x680dfdf +com.DivXInc.DivXDecoder (6.8.3.5 - 6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x683b000 -  0x683eff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x6a80000 -  0x6a80ffd +cl_kernels (???) <352C9757-5905-4890-B662-2D4E6FE39797> cl_kernels
    0xcff2000 -  0xcfffff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xd00d000 -  0xd00dff0 +com.google.GearsEnabler (1.0) <C5B680AD-0957-59FD-B95F-A79C89E04678> /Library/InputManagers/*/GearsEnabler.bundle/Contents/MacOS/GearsEnabler
    0xd012000 -  0xd012ffc +com.growl.GrowlSafariLoader (1.1.6 - 1.1.6) <BF586D9F-39A9-BD06-1C83-6F1E527822CA> /Library/InputManagers/*/GrowlSafariLoader.bundle/Contents/MacOS/GrowlSafariLoa der
    0xd94c000 -  0xd9f7fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xda3b000 -  0xda3cfff +com.1passwd.InputManager (2.5.7 - 5899) <0EE7B224-5D52-C905-764D-AD5B5072F832> /Library/InputManagers/*/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
    0xda41000 -  0xda43fff +net.culater.SIMBL (0.8.2 - 8) /Library/InputManagers/*/SIMBL.bundle/Contents/MacOS/SIMBL
    0xda49000 -  0xda53fff +com.unsanity.smartcrashreports (Smart Crash Reports version 1.5 - 1.5) <7E3E7D42-BB62-6D09-E262-0140BA963851> /Library/InputManagers/*/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0xf30b000 -  0xf30bff8 +cl_kernels (???) <F416E0C4-7CB6-4177-B38D-B6A1FAFE5DFD> cl_kernels
    0xf30f000 -  0xf30fffe +cl_kernels (???) <DE289ED3-BD20-4FB2-99CF-75E938269391> cl_kernels
    0x12748000 - 0x12748ffd +cl_kernels (???) <1CEB82FA-FC0C-4638-AF05-200691D583D4> cl_kernels
    0x12a49000 - 0x12a4affe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x12a4f000 - 0x12a52ffe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x12a5b000 - 0x12a5bff3 +cl_kernels (???) <37971354-D1D8-4D5B-8E8C-80DFB614A372> cl_kernels
    0x12a5f000 - 0x12a5fff3 +cl_kernels (???) <8906BC84-A98A-4577-9B8B-21AC2231275F> cl_kernels
    0x12a63000 - 0x12a63ff3 +cl_kernels (???) <32DA7317-9868-43CF-90D4-49276C20452F> cl_kernels
    0x12ac1000 - 0x12ad0ffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x12b24000 - 0x12cb0ff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12ce7000 - 0x12e38ff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12e66000 - 0x12e72ffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x12e79000 - 0x132ceff3  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.6.22 - 8.0.6) <1CEE7D07-60E9-3447-81A4-98BC4C6179B4> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
    0x13415000 - 0x13441ffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1344a000 - 0x13452ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x13459000 - 0x1345bfff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x1531a000 - 0x153acff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x16254000 - 0x16296fff  com.apple.facetimeservices (8.0 - 900) <CB59547A-C7DE-3F20-8A1F-724AF15F664E> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x162ae000 - 0x162ffff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <DED18914-309A-31FF-A367-BB0D62384728> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x16620000 - 0x16623fff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x166bf000 - 0x166c4ffe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x166cb000 - 0x166ccffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x186c0000 - 0x186c3fff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <4002CDBC-05C4-3DEF-ADE3-9917FB7050E9> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x186c9000 - 0x186ceff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <433656FC-3D8F-3088-BCF3-C6765E788E20> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x186d4000 - 0x186dbfff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <C13A2FCB-178C-3CA9-AB1C-44B4C76D26BD> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x18782000 - 0x18840ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x18b4f000 - 0x18b76ffb  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <17607BF1-A294-33E6-B454-49F815BA72C1> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x18b82000 - 0x18ba1ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <BEFEC249-367D-30EA-B2C3-DC0AA41A8FED> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x18bab000 - 0x18be1ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <D3890130-951A-3F09-9D10-04008FEAF6E2> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x18bf0000 - 0x18c04ff7  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <6EA7F7AB-936F-384F-ABD1-D9BDF69B48B3> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x193ce000 - 0x193ceffd +cl_kernels (???) <11544AB5-64F2-452F-B00B-DAF75765A81F> cl_kernels
    0x8e41d000 - 0x8ed41ff3  com.apple.GeForceGLDriver (8.6.22 - 8.0.6) <3D69DB47-A908-3167-A4A0-6735C9A654C7> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8feaf000 - 0x8fee1e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9001cfff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9001d000 - 0x90048fff  com.apple.shortcut (2.2 - 2.2) <FA94F2BF-37E1-3F16-9085-7BCCB815BAE9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90049000 - 0x902e2ff3  com.apple.AddressBook.framework (7.1 - 1167) <AF7B18F2-D0FF-33AA-9CE9-4106B1CDAE1D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x902e3000 - 0x902eefff  libcommonCrypto.dylib (60027) <D9337AF4-C094-370E-858C-059AB6560719> /usr/lib/system/libcommonCrypto.dylib
    0x902ef000 - 0x90331ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x90332000 - 0x90344ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x90345000 - 0x90348ff9  libCGXType.A.dylib (328.0.4) <9BC4856B-B92A-3D46-AABD-F5E3E80A8748> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90349000 - 0x90373ff9  com.apple.framework.Apple80211 (8.3 - 830.18) <DCCC8813-A9D8-3C01-8BC9-646EA954F986> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x90374000 - 0x90382ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x90383000 - 0x904e0ffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x904e1000 - 0x904f8fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x904f9000 - 0x904fbfff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x904fc000 - 0x90575ff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x90576000 - 0x905a5ff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x905a6000 - 0x905dcffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x905dd000 - 0x905dffff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x90662000 - 0x9066ffff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90670000 - 0x90975ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90976000 - 0x90ab1ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90ab2000 - 0x90ab8fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90ab9000 - 0x90ad6fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x90ad7000 - 0x90b46ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x90b47000 - 0x90c65ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x90c66000 - 0x90cb5ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90cb6000 - 0x91342feb  com.apple.CoreAUC (6.16.00 - 6.16.00) <654A0AB8-F24F-3489-8F70-F0A22414FE08> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91343000 - 0x9144eff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9144f000 - 0x91453fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91454000 - 0x9146bff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9146c000 - 0x914d4fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x914d5000 - 0x914f5ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x914f6000 - 0x91500fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x91501000 - 0x9150dff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x9150e000 - 0x91626ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x91627000 - 0x9171bff3  com.apple.QuickLookUIFramework (4.0 - 555.4) <D66F61A6-2C4C-359F-A2E3-7D023C33CB5A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9171c000 - 0x9172cff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9172d000 - 0x91735fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x91fb3000 - 0x91fbaff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91fbb000 - 0x91fdffff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x91fe0000 - 0x9209eff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9209f000 - 0x92139ffb  libCoreStorage.dylib (296.10) <23E3EA3E-4DB3-3A4E-B8B0-30460D69BEE9> /usr/lib/libCoreStorage.dylib
    0x9213a000 - 0x92287ffb  com.apple.CFNetwork (596.2.3 - 596.2.3) <1221EF86-659B-3136-AB57-0CC6B130CDA2> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x92288000 - 0x9249ffff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x924a0000 - 0x924fafff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x924fb000 - 0x9250dfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9250e000 - 0x92510fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92511000 - 0x930cdffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x930ce000 - 0x93127fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93128000 - 0x93146ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93147000 - 0x9314affb  libutil.dylib (30) <605DD210-46C2-3D4A-8DC1-08B0E80694FD> /usr/lib/libutil.dylib
    0x9314b000 - 0x933eeffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x93415000 - 0x93419fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9341a000 - 0x93518ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93519000 - 0x9351cff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x9351d000 - 0x93900ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93901000 - 0x93911ff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x93912000 - 0x93913fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x93914000 - 0x93b44fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93b45000 - 0x93b47ffd  com.apple.EFILogin (2.0 - 2) <C2D9F59D-8E7E-3FB3-BEB4-1BA05E422B2A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x93b4e000 - 0x93b89fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93b8a000 - 0x93b98fff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93b99000 - 0x93ba0fff  libsystem_dnssd.dylib (379.34) <885F324F-43A3-30A9-8A6B-3665065CC588> /usr/lib/system/libsystem_dnssd.dylib
    0x93ba1000 - 0x93c3bfff  com.apple.CoreSymbolica

  • My Firefox.exe process remain open after I close the browser.If I open it it's says to open a new window.I need to close the process manualy(Ctrl+Alt+del).What can I do?Thanks .

    Need to close the process.

    It does take Firefox a while to shut down; it has to update some databases. But it should take less than a minute.
    In the support article, this problem is called a "hang at exit" because Firefox hangs when shutting down. Maybe something here will help: https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit
    Also, sometimes open Firefox windows disappear from the Task Bar. You can use Alt+Tab to switch to them if they remain open.

  • Every time I try to open Firefox I get a popup saying it is already open, and to close it or restart; but it is NOT open, and restarting doesn't help.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/880054]]</blockquote>
    Question
    Every time I try to open Firefox I get a popup saying it is already open, and to close it or restart; but it is NOT open, and restarting doesn't he

    Duplicate Thread LOCK please
    * Continue here - https://support.mozilla.com/en-US/questions/880054

  • The window 8 store and all other app open and then close immediately .

    The window 8 store and all other app open and then close immediately .I
    have tried many methods like sfc /scannow,, powershell
    -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRoot\WinStore\AppxManifest.xml without the quotes but , changed registery entries but found no effect . kindly help me !

    Hi ObaidMaki,
    This forum is to discuss problems of Windows Forms. Your question is not related to the topic of this forum.
    I would suggest you posting it in the dedicated Windows Forum
    http://answers.microsoft.com/en-us/windows for more efficient responses, where you can contact Windows experts.
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Adding javascript to page open and page close in acrobat 8.1.2

    Reading the Acrobat Javascript Object Specification on page 22 it says that you can add javascript to the "page open" and "page close" events of a document.
    It then says that under the menu "Document -> Set page action" you can add scripts for those events
    I am using Acrobat 8.1.2 and under the document menu there is no "Set page action". And there is nowhere where I can find any "set page action" menu...
    whats the deal?
    How can i set the page open and page close events in acrobat professional 8.1.2?????????????
    Marc

    - open the Navigation Panel 'Pages'
    - select the page and open the page properties
    - in the actions tab you can set the page actions

  • Automatically open, save and close excel?

    I need import data from Excel to SQL.
    Now, I use tSQL to directly read the excel files and transform to the SQL table.
    As the user Excel is not a good format for SQL to read, I need use formula to transform the excel to be a SQL readable format.
    Now, I add a sheet to copy the data from the sheet which user input the data and then ask the user to copy the excel to a specific location for import.
    However, this will make the data in the excel double and result a large excel file.
    I am thinking if it is possible to create a excel to use formula to copy the data from another excel.
    Then, I need find some method to open that excel, let the content refresh from the source excel, save and close it.
    Then I can directly use this excel for data import.
    Is there any simple way to do so? I don't know marco much...
    Ivan

    No formula could do this (Automatically open, save and close excel).
    You need to recode a marco or write a macro. Why donot you ask in msdn?
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    example:
    Sub auto_open()
    Application.OnTime Now + TimeValue("00:01:00"), "wswx"
    End Sub
    Sub
    wswx() If Not ThisWorkbook.Saved
    Then ThisWorkbook.Save
    ThisWorkbook.Close
    End Sub
    KR

  • Open dataset and close dataset

    Hi
    I need to write log file in fileshare.
    I am using the following FM to create the file.
    Z_FILE_OPEN_OUT_UNICODE'
    I have following qns
    1. do i need to use open dataset and close dataset stmts, even I create the files with the FM?

    Hi,
    you can fill in the name of the FM in transaction SE37, then click 'Display' and look at the source code and the 'Tables' tab.
    It's a custom build FM, so you might have to look at the import parameters it needs... ( Tab 'Import' and 'Tables' ).
    To answer your question, as the name of the FM suggests it will write the file for you, so no open/close dataset. Please doublecheck tab 'Source code' and you might find these statements there...
    hope that helps,
    Rolf

Maybe you are looking for