Launch BSP in PC UI when an action is activated in Sales Assistant Tab

Hi
I have come across detailed information on how to launch a BSP in a tab . However I am wondering if there is any way to launch a BSP when an action is activated in the sales assistant tab. In SAP gui it is easy to do by defining a custom method and using either a html control or function module . Any ideas how to achieve this in PC UI?
Thanks
Shariqa

Hello Shariqa,
can you describe detailed in what Application you whant to launch the BSP and do you want it to be shown in the Tab or started by clicking on a Button?
Regards
Gregor

Similar Messages

  • Opportunity sales assistant  actions

    Hi Guys,
    I created some new actions & action profile. I assigned it to a new opportunity transaction type. Now when I go into sales assistant tab page, select an action & activate it, it creates the same activity below it rather than in the workspace below for activities. (I created an action similar to gather customer information)
    Anything that I am missing?
    Ani

    Gun,
    I am trying to replicate the gather customer information action. This is what I have done.
    Created an action, with immidiate processing, no restrictions, changeable in dialog, executable in dialog.
    Partner Functions- none
    Using conditions that can be transportable
    Max 1 action unprocessed for each action definiation.
    Processing method: method call
    Method: COPY_DOCUMENT.
    Description: Generate subsequent document.
    Yet it still not working. When I select the phase, I see the appropriate actions but when I activate them they just populate on the same workspace instead of the workaspace alloted for activities. Also is there any way to directly copy the Opportunity_Sales_assistant profile. I couldnt find any option to do so.
    Ani

  • Go to Bookmark target is hidden. Is it possible to show when the action is triggered?

    Hi all,
    Per the Title, I have an SSRS report with a summary tablix at the top. The body cell has the Action: Go to BookMark.
    The target is a second tablix set up with drilldown. The groups are hidden by default.
    When the action occurs, the report jumps to the drilldown tablix rather than the bookmark. If the groups are manually shown, then the action now jumps to the correct part of the drilldown tablix.
    What I would like is for the action to open any hidden groups in which the bookmark target has as a parent context.
    Can anyone help?

    Hi philmorrisblackrose,
    According to your description, after you add go to bookmark action to go to drill down report, if the detail information is expanded, it can jump to target position without any problem, otherwise it jump to the drilldown tablix.
    After we add Go to bookmak action to the report, when we preview the report, it jump to the taget position according to BookmarkId by design, there is no event handle in a report. We could not go to hidden bookmark use go to bookmark action.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Hi, I have just loaded Lightroom 5 from the disc onto my Mac.  every time i try and launch the application, it goes to the registration/licence window.  i have input the data five times already.  When Lr5 launches the update window appears, when i try to

    Hi, I have just loaded Lightroom 5 from the disc onto my Mac.  every time i try and launch the application, it goes to the registration/licence window.  i have input the data five times already.  When Lr5 launches the update window appears, when i try to do anything the following message comes up: - An error occrred when attempting to change modules.  What do i need to do to fix this?

    Masher please use the uninstaller located in the Applications/Utilities/Adobe Installers folder.  Once Photoshop Lightroom is removed then please download Lightroom 5.5 from Adobe - Lightroom : For Macintosh : Adobe Photoshop Lightroom 5.5 and reinstall.

  • Java.lang.InstantiationException when using Action class with constructor

    Hi everyone,
    I'm using the insertNewNode() method from this class in another action class, which works fine. But when this action itself is called, I get an infinite java.lang.InstantiationException (until the stack is overflowed). I'm initiating the fields required in every method in a constructor. If there is no constructor, this action works fine again. What's wrong?
    public class GliederungNewAction implements Action {
         private final String DEFAULT_DESCRIPTION = "Neuer Punkt";
         private OracleConnection connection;
         private String username;
         private String catalogue;
         private String attribute;
         private String parent_attr;
         private int parent_sequenceNr;
         private int requiredSequenceNumber;
         public GliederungNewAction(OracleConnection connection, String username, String catalogue) {
              this.connection = connection;
              this.username = username;
              this.catalogue = catalogue;
         public String perform(ActionMapping mapping, HttpServletRequest request,
                   HttpServletResponse response) {
              HttpSession session = request.getSession();
              // fetch the necessary parameters from the JSP site
              // the parent attribute is the selected attribute!
              parent_attr = request.getParameter("attr");
              catalogue = request.getParameter("catalogue");
              parent_sequenceNr = Integer.parseInt(request.getParameter("sort_sequence"));
              username = session.getAttribute("username").toString().toUpperCase();
              // connect to database    
              db.SessionConnection sessConn = (db.SessionConnection) session.getAttribute("connection");
              if (sessConn != null) {
                   try {
                        sessConn.setAutoCommit(false);
                        connection = (OracleConnection)sessConn.getConnection();
                        // insert the new node into DB
                        insertNewNode(DEFAULT_DESCRIPTION, parent_attr, parent_sequenceNr);               
                        connection.commit();
                        // set attributes for JSP post-action operations
                        request.setAttribute("attr", attribute);
                        request.setAttribute("parent_attr", parent_attr);
                   } catch(SQLException ex) {
                        if ( ex.getErrorCode() == 20001 ) {
                             return "error_edit.do";
                        } else { // for all other error codes, rollback and return general error page
                             try {
                                  connection.rollback();
                                  ex.printStackTrace();
                                  return "error_general.do";
                             } catch (SQLException e) {
                                  System.err.println("Rollback failed!");
                                  e.printStackTrace();
                                  return "error_general.do";
                             } // end of catch     
                        } // end of else
                   } // end of catch
              return mapping.getForward();
            // sample method
          * Creates, fills and executes a prepared statement to insert a new entry into the specified table, representing
          * a new node in the catalogue.
          * @param parent_attr TODO
          * @param parent_sequenceNr TODO
          * @throws SQLException
         public void insertNewNode(String description, String parent_attr, int parent_sequenceNr) throws SQLException {
                   requiredSequenceNumber = getRequiredSequenceNumber(parent_attr, parent_sequenceNr);
                   int freeSequenceNumber = getFreeSequenceNumber(requiredSequenceNumber);
                   int lastPosition = getLastNodePosition( getLastChildAttribute(parent_attr) );
                   attribute = createNewNodeAttribute(parent_attr, lastPosition);
                   String callAddNode = "{ call package.addNode(:1, :2, :3, :4, :5, :6, :7) }";
                   CallableStatement cst;
                   cst = connection.prepareCall(callAddNode);
                   cst.setString(1, username );
                   cst.setString(2, catalogue);
                   cst.setString(3, attribute);
                   cst.setString(4, parent_attr);
                   cst.setString(5, description);
                   cst.setInt(6, requiredSequenceNumber);
                   cst.setInt(7, freeSequenceNumber);
                   cst.execute();
                   cst.close();
    java.lang.InstantiationException: action.GliederungNewAction
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at action.ActionMapping.perform(ActionMapping.java:54)
         at ControllerServlet.doResponse(ControllerServlet.java:92)
         at ControllerServlet.doPost(ControllerServlet.java:50)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:679)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:431)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:355)
         at ControllerServlet.doResponse(ControllerServlet.java:103)
         at ControllerServlet.doPost(ControllerServlet.java:50)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         .......

    You're welcome.
    Still, I would report this as a bug at the Struts mailinglist/issuetracker. This silly behaviour shouldn't happen. Once an InstantiationException, okay, but in an infinite loop?!? That's definately a bug. Also the detail message may be more informative, e.g. "No default constructor found" or so.

  • BSP Exception: Missing reference when converting data object ZZxx

    Hi there,
    I have created these new Z fields and tried to include them in a field group. These fields did appear, but they are highlighted with a red box, with the above text in the tool tip.
    Does anyone know what it means??
    Thanks

    I believe they were generated by EEWB - or could've been added manually to the CRMD_CUSTOMER_H. This error only occurs on the Currency fields...something to do with reference field but I just can't find what is wrong with this. I searched up SAP notes and found the following the closest match: -
    <b>Symptom</b>
    when trying to scroll down in the result list in the F4 for the Ibase the error error "BSP exception : Missing reference when converting data object amount.  Correct the entry" occurs.
    <b>Other terms</b>
    CRMT_BSP_IBASE_TREE_NF, data object amount
    <b>Reason and Prerequisites</b>
    This happens due to inconsistancy in structure
    <b>Solution</b>
    Please follow the below steps manually.
    1. Go to tx:SE11
    2. Select data type "CRMT_BSP_IBASE_TREE_NF" in change mode
    3. Select component AMOUNT in 'Components' tab
    4. Go to "Currency/quantity fields" tab
    5. Replace 'Reference table' entry from 'CRMT_BSP_IBASE_DETAIL'
       to 'CRMT_BSP_IBASE_TREE_NF'
    6. Save and activate

  • Mine is Yahoo where POP is used .TB is IMAP . i can receive and send mails , but when making action on TB (Del or send) no reflection on main server

    Hello there,
    My e-mail is Yahoo, and Yahoo by default is POP user .
    I understood from your help file that synchronization is compatible only with IMAP mail provider
    I can receive and send mails from TB , but when making action on TB (Del or send) no reflection on main server, same when make the action on the main server (Del or send), no change on TB
    from yahoo help I managed to find configuration for IMAP , but could not apply them on TB , as TB have already Yahoo as POP in the configuration list
    please your help on this
    best regards
    Mohamad

    You cannot convert an existing account, but you can set up your Yahoo account as IMAP in parallel to the existing POP account. See
    http://kb.mozillazine.org/Convert_a_POP_account_to_a_IMAP_account

  • Error when performing action Pass Normal Change to Test

    When we perform the action "Pass Normal Change to Test" we receive an error message. Reviewing the short dump in ST22 of our development ERP system provides additional information such as DYNPRO_SEND_IN_BACKGROUND, Screen output without connection to user, SAPLTMSU_ALT. Using this information we have identified two notes (49730 and 1497281, which is not applicable). We tried changing the user type for our RFC communication user (as per 49730), but that has not worked.
    Interestingly the Transport of Copies (which occurs when this action is performed in ChaRM) has been created in development. But it has not been released and ChaRM is not aware that the Transport of Copies has been created. If we move it outside of ChaRM we will lose this history.
    Has anyone experienced this issue? How did you resolve it?

    Hi Mathias,
    After checking each TMW RFC connection (in our TMS) and making updates as required; the main solution (as I see it) was in the TMSADM@ RFC connections. A couple had incorrect passwords and a couple had incorrect authorizations. Once I made the required changes and confirmed the RFC
    were working from an authorization perspective, I was able to successfully complete the action “Pass Normal Change to Test”.
    Hope this helps.
    Shawn

  • I have installed FF 8, the problem is whenever i try to launch it, it never launches (directly or indirectly), but when i check in the task manager it shows FF running. I have installed it on windows XP professional.

    I have installed FF 8, the problem is whenever i try to launch, it never launches (directly or indirectly), but when i check in the task manager it shows FF running. I have installed it on windows XP professional. Never gave an error, no messages, etc. I have disabled all the addons.

    The "System Tray" is located at the very bottom right of your screen and is a list of most/all running applications that will show in this list.
    For your SysFader issue, this "may" be the problem:
    1 Find the "My Computer" desktop icon and right-click it. A pull-down menu will appear. Select "Properties."
    2 Click on the "Advanced" tab. This will load a new page of options.
    3 Select the "Visual Effects" tab at the top of the window and deselect "Animate Windows when minimizing and maximizing," "Fade or slide menus into view," "Fade or slide Tool Tips into view" and "Fade out Menu items after checking."
    4 Click "OK." This will remove most if not all of the Sysfader effects, at the same time correcting related errors that used to come up during opening a new file or program.

  • I was lost my pad ios7.1 find my phone was activated lost mode enabled i recieved e mail when this action done also sound play was done also i recieved picture from i cloud on my i phone the problem is that i didnot recieve the place althought the icon no

    i was lost my pad ios7.1 find my phone was activated lost mode enabled
    i recieved e mail when this action done also sound play was done
    also i recieved picture from i cloud on my i phone
    the problem is that i didnot recieve the place althought the icon notify me when found was turned on ????

    Ahmed elsaed abdelgalil wrote:
    also i recieved picture from i cloud on my i phone
    If you received a photo stream photo on your phone, save it to your camera roll, then locate the photo in the Photos section of the Photos app, tap the location listed above the photo in Moments and it should show you where it was taken on a map (assuming location services was enabled for the camera on your phone).

  • Is there a way to stop Mavericks from launching My Mail and Word when I turn on my computer?

    Is there a way to stop Mavericks from launching My Mail and Word when I turn on my computer?

    System Preferences>Users and Groups>Login items.

  • Photo App Crashes when I try to go to the project tab...

    All the way through the betas and now with the final release of the Photos App, my app crashes when I try to go to the "projects" tab. When I first started using it, it worked fine. I was able to make a new slide show but when I tried exporting it, the app crashed. Ever since then, the app crashes when I click on the projects tab. It will show the projects and then spin for a second and then crashes and gives me the following....
    Process:               Photos [6083]
    Path:                  /Applications/Photos.app/Contents/MacOS/Photos
    Identifier:            com.apple.Photos
    Version:               1.0 (209.52.0)
    Build Info:            PhotoApp-209052000000000~4
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Photos [6083]
    User ID:               501
    Date/Time:             2015-04-08 18:51:06.975 -0500
    OS Version:            Mac OS X 10.10.3 (14D131)
    Report Version:        11
    Anonymous UUID:        6C8BC001-C4AC-821B-4C01-86ED8BC9AACA
    Time Awake Since Boot: 7800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes:       0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    Photo Foundation logging:
    2015-04-08 18:38:42.967: error while trying to load video asset for version:x3+rvCmiSOCrcXjpXKCxwA error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x6000026e7e80 {NSLocalizedFailureReason=An unknown error occurred (-12894), NSLocalizedDescription=The operation could not be completed, NSURL=file:///Users/Matt/Pictures/Photos%20Library.photoslibrary/Masters/2010/M isc%20Shots/video.mov, NSUnderlyingError=0x60800285e2a0 "The operation couldn’t be completed. (OSStatus error -12894.)"} (+[PAAVSupport _ensureNaturalDurationIsPresentForPlaybackSettings:version:assetURL:error:]:54)
    2015-04-08 18:38:42.968: unabled to load playback settings: <_PACachedEditSession: 0x6080008abbe0> error: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x6000026e7e80 {NSLocalizedFailureReason=An unknown error occurred (-12894), NSLocalizedDescription=The operation could not be completed, NSURL=file:///Users/Matt/Pictures/Photos%20Library.photoslibrary/Masters/2010/M isc%20Shots/video.mov, NSUnderlyingError=0x60800285e2a0 "The operation couldn’t be completed. (OSStatus error -12894.)"} (-[PAVersionEditSession _videoPlaybackSettings]:561)
    2015-04-08 18:38:42.980: no image provided for RDVersion(0x610000b22760) modelId=5834 uuid=x3+rvCmiSOCrcXjpXKCxwA tableName=RKVersion state=persisted,local (-[PAPreviewWriter _imageForImageStyle:version:imageProxyState:inputImage:inputImageSize:descripti on:render:largePreviewIsEmbedded:canceler:previewMaker:]:214)
    2015-04-08 18:38:44.226: Received changes notification alert: <LiModelChangeGroup: 0x618001a79bc0>  alert flags : Replay Complete (__59-[RKFaceChangesHandler startListeningForChangesFromMarker:]_block_invoke_2:173)
    Crashing on exception: *** -[NSConcreteTextStorage attributesAtIndex:longestEffectiveRange:inRange:]: Range or index out of bounds
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff88e1903c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff9547776e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff88e18eed +[NSException raise:format:] + 205
    3   UIFoundation                        0x00007fff941faef8 -[NSConcreteTextStorage attributesAtIndex:longestEffectiveRange:inRange:] + 137
    4   OpusKit                             0x000000010e5e9e5c -[OKWidgetTextView _layoutViews] + 1371
    5   OpusKit                             0x000000010e569acd -[OKSettings commitTransaction] + 408
    6   OpusKit                             0x000000010e5ccb16 -[OKWidgetViewProxy applySettings] + 191
    7   OpusKit                             0x000000010e5f2ed2 -[OKPageViewControllerProxy applySettings] + 283
    8   OpusKit                             0x000000010e5f7066 -[OKPageViewControllerProxy prepareForDisplay] + 50
    9   OpusKit                             0x000000010e5ff78d -[OKNavigatorFixedViewControllerProxy prepareForDisplay] + 67
    10  OpusKit                             0x000000010e5738d3 -[OKDocumentViewControllerProxy viewWillAppear:] + 213
    11  OpusKit                             0x000000010e5dcaea -[OKDocumentViewController viewWillAppear:] + 39
    12  AppKit                              0x00007fff87890b85 -[NSViewController _sendViewWillAppear] + 40
    13  AppKit                              0x00007fff87890a16 -[NSViewController _windowWillOrderOnScreen] + 98
    14  AppKit                              0x00007fff877da2ce -[NSView(NSInternal) _windowWillOrderOnScreen] + 67
    15  AppKit                              0x00007fff877da3b0 -[NSView(NSInternal) _windowWillOrderOnScreen] + 293
    16  AppKit                              0x00007fff877d84c1 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1750
    17  AppKit                              0x00007fff877d7897 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 829
    18  AppKit                              0x00007fff877d74eb -[NSWindow orderWindow:relativeTo:] + 159
    19  OpusKit                             0x000000010e560d4a -[OKDocumentMovieExporter _setup:] + 1099
    20  OpusKit                             0x000000010e55f7e9 __79-[OKDocumentMovieExporter exportToImageForKeyPath:withSize:andCompletionBlock:]_block_invoke + 38
    21  libdispatch.dylib                   0x00007fff8ec5dc13 _dispatch_client_callout + 8
    22  libdispatch.dylib                   0x00007fff8ec6b04e _dispatch_barrier_sync_f_slow_invoke + 412
    23  libdispatch.dylib                   0x00007fff8ec5dc13 _dispatch_client_callout + 8
    24  libdispatch.dylib                   0x00007fff8ec69cbf _dispatch_main_queue_callback_4CF + 861
    25  CoreFoundation                      0x00007fff88d6c3f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    26  CoreFoundation                      0x00007fff88d2768f __CFRunLoopRun + 2159
    27  CoreFoundation                      0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    28  HIToolbox                           0x00007fff92f3356f RunCurrentEventLoopInMode + 235
    29  HIToolbox                           0x00007fff92f332ea ReceiveNextEventCommon + 431
    30  HIToolbox                           0x00007fff92f3312b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    31  AppKit                              0x00007fff877329bb _DPSNextEvent + 978
    32  AppKit                              0x00007fff87731f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
    33  AppKit                              0x00007fff87727bf3 -[NSApplication run] + 594
    34  AppKit                              0x00007fff876a4354 NSApplicationMain + 1832
    35  libdyld.dylib                       0x00007fff864725c9 start + 1
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit               0x00007fff87a5c610 -[NSApplication _crashOnException:] + 109
    1   com.apple.AppKit               0x00007fff87a5c56b -[NSApplication reportException:] + 140
    2   com.apple.CoreFoundation       0x00007fff88e194ee __handleUncaughtException + 718
    3   libobjc.A.dylib               0x00007fff9547b7cd _objc_terminate() + 94
    4   libc++abi.dylib               0x00007fff86c6f0a1 std::__terminate(void (*)()) + 8
    5   libc++abi.dylib               0x00007fff86c6f113 std::terminate() + 51
    6   libobjc.A.dylib               0x00007fff9547b5ff objc_terminate + 9
    7   libdispatch.dylib             0x00007fff8ec5dc27 _dispatch_client_callout + 28
    8   libdispatch.dylib             0x00007fff8ec6b04e _dispatch_barrier_sync_f_slow_invoke + 412
    9   libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    10  libdispatch.dylib             0x00007fff8ec69cbf _dispatch_main_queue_callback_4CF + 861
    11  com.apple.CoreFoundation       0x00007fff88d6c3f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    12  com.apple.CoreFoundation       0x00007fff88d2768f __CFRunLoopRun + 2159
    13  com.apple.CoreFoundation       0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    14  com.apple.HIToolbox           0x00007fff92f3356f RunCurrentEventLoopInMode + 235
    15  com.apple.HIToolbox           0x00007fff92f332ea ReceiveNextEventCommon + 431
    16  com.apple.HIToolbox           0x00007fff92f3312b _BlockUntilNextEventMatchingListInModeWithFilter + 71
    17  com.apple.AppKit               0x00007fff877329bb _DPSNextEvent + 978
    18  com.apple.AppKit               0x00007fff87731f68 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
    19  com.apple.AppKit               0x00007fff87727bf3 -[NSApplication run] + 594
    20  com.apple.AppKit               0x00007fff876a4354 NSApplicationMain + 1832
    21  libdyld.dylib                 0x00007fff864725c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff908e6232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8ec60a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff908e04de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908df64f mach_msg + 55
    2   libclh.dylib                   0x00007fff8b7a0318 cuosEventWait + 184
    3   libclh.dylib                   0x00007fff8b1a6563 intHandlerMain + 323
    4   libclh.dylib                   0x00007fff8b7a1119 cuosPosixThreadStartFunc(void*) + 41
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff908e04de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff908df64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff88d27eb4 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff88d2737b __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff88d26bd8 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff877fa66b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 4:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000f320c0 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 5:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000f34000 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 6:: Dispatch queue: IPXSlideshow.updateQueue
    0   com.apple.CoreFoundation       0x00007fff88ccdc8a CFRelease + 10
    1   com.apple.Photos               0x000000010bde2f62 0x10ba64000 + 3665762
    2   com.apple.Photos               0x000000010bbfd02a 0x10ba64000 + 1675306
    3   com.apple.Photos               0x000000010bbfc27b 0x10ba64000 + 1671803
    4   com.apple.Photos               0x000000010bbfcd35 0x10ba64000 + 1674549
    5   com.apple.Photos               0x000000010bd85ca0 0x10ba64000 + 3284128
    6   com.apple.Photos               0x000000010bbf6981 0x10ba64000 + 1649025
    7   com.apple.Photos               0x000000010bd85abb 0x10ba64000 + 3283643
    8   com.apple.Photos               0x000000010bbf5cd5 0x10ba64000 + 1645781
    9   libdispatch.dylib             0x00007fff8ec62323 _dispatch_call_block_and_release + 12
    10  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    12  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    13  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    14  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    15  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    16  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 7:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x610000752c70 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 8:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x600000f400b0 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libsystem_platform.dylib       0x00007fff92be6c5b _os_semaphore_wait + 16
    2   libdispatch.dylib             0x00007fff8ec67557 _dispatch_barrier_sync_f_slow + 597
    3   com.apple.opusosx.OpusKit     0x000000010e55f70f -[OKDocumentMovieExporter exportToImageForKeyPath:withSize:andCompletionBlock:] + 440
    4   com.apple.Slideshows           0x000000010c35e076 -[OMSlideshow posterImageWithSize:] + 352
    5   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    6   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    10  com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    11  com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    12  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    13  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    14  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    15  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    16  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    17  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    18  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    19  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 9:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x610000b23520 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e5166 __psynch_mutexwait + 10
    1   com.apple.Photos               0x000000010be8464b 0x10ba64000 + 4326987
    2   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    3   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    4   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    5   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    6   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    7   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    8   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    9   com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    10  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    11  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    12  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    13  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    14  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    15  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    16  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    17  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    18  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    19  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    20  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 11:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x610000752e80 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 12:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x60000093fd60 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 14:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x600000b223a0 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 16:: Dispatch queue: NSOperationQueue 0x608003453380 :: NSOperation 0x600000d58f70 (QOS: USER_INITIATED)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Slideshows           0x000000010c35e085 -[OMSlideshow posterImageWithSize:] + 367
    3   com.apple.Photos               0x000000010be85f25 0x10ba64000 + 4333349
    4   com.apple.Photos               0x000000010bd82310 0x10ba64000 + 3269392
    5   com.apple.opusosx.OpusFoundation 0x000000010e4c1f30 __80+[OFNSOperation operationWithBlock:progressBlock:cancelBlock:completionHandler:]_block_invoke43 + 133
    6   com.apple.opusosx.OpusFoundation 0x000000010e4c13dc __48-[OFNSOperationQueue addOperation:withPriority:]_block_invoke60 + 115
    7   com.apple.opusosx.OpusFoundation 0x000000010e4c2a8d -[OFNSOperation _finish:] + 76
    8   com.apple.opusosx.OpusFoundation 0x000000010e4c26e3 -[OFNSOperation _launchOperation] + 111
    9   com.apple.opusosx.OpusFoundation 0x000000010e4c28a3 -[OFNSOperation start] + 239
    10  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    11  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    12  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    13  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    14  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    15  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    16  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    17  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 17:: Dispatch queue: NSOperationQueue 0x600000c2ab40 :: NSOperation 0x618000938100 (QOS: USER_INTERACTIVE)
    0   libsystem_kernel.dylib         0x00007fff908e051a semaphore_wait_trap + 10
    1   libdispatch.dylib             0x00007fff8ec64c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.Photos               0x000000010be852cb 0x10ba64000 + 4330187
    3   com.apple.Photos               0x000000010be8453a 0x10ba64000 + 4326714
    4   com.apple.photos.mondrian     0x000000010cfa2d43 __70+[MOMediaItem operationWithBlock:cancellationBlock:completionHandler:]_block_invoke + 128
    5   com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    6   com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    7   com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    8   com.apple.photos.mondrian     0x000000010cfa2bc3 -[MONSOperation performSynchronously:timeout:] + 364
    9   com.apple.photos.mondrian     0x000000010cfa299e -[MONSOperation performSubOperationSynchronously:progressBlock:timeout:] + 232
    10  com.apple.photos.mondrian     0x000000010cfc8188 __83-[MOMediaView _updateCellToBest:withMediaItem:atIndexPath:withDependencyOperation:]_block_inv oke905 + 489
    11  com.apple.photos.mondrian     0x000000010cfa261d -[MONSOperation launchOperation] + 64
    12  com.apple.photos.mondrian     0x000000010cfa24b6 -[MONSOperation _launchOperation] + 34
    13  com.apple.photos.mondrian     0x000000010cfa2053 -[MONSOperation start] + 175
    14  com.apple.Foundation           0x00007fff90421543 __NSOQSchedule_f + 184
    15  libdispatch.dylib             0x00007fff8ec5dc13 _dispatch_client_callout + 8
    16  libdispatch.dylib             0x00007fff8ec61365 _dispatch_queue_drain + 1100
    17  libdispatch.dylib             0x00007fff8ec62ecc _dispatch_queue_invoke + 202
    18  libdispatch.dylib             0x00007fff8ec606b7 _dispatch_root_queue_drain + 463
    19  libdispatch.dylib             0x00007fff8ec6efe4 _dispatch_worker_thread3 + 91
    20  libsystem_pthread.dylib       0x00007fff91a7f637 _pthread_wqthread + 729
    21  libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff908e594a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff91a7d40d start_wqthread + 13
    Thread 24:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 25:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 26:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 27:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 28:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 29:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 30:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 31:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 32:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 33:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 34:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 35:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 36:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 37:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 38:
    Thread 39:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00007fff87139aca JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x00007fff86f294b4 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 40:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 41:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 42:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 43:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 44:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86f29938 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff86f1ecff ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff91a7f268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff91a7f1e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff91a7d41d thread_start + 13
    Thread 45:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff908e5136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff88902c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff86f29adb JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff86

    If the unit has NEVER been jailbroke, first try a system reset.  It cures many ills and it's quick, easy and harmless...  Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • Getting a movie clip to stop playing, when another one is activated.

    Hello,
    I have a file with 3 movie clips and three buttons that control them to play...with the script below It is working fine.
    stop()
    function startImageOne(Event:MouseEvent):void
        imageOne_mc.play();
    function startImageTwo(Event:MouseEvent):void
        imageTwo_mc.play();
    function startImageThree(Event:MouseEvent):void
        imgThree_mc.play();
    start1_btn.addEventListener(MouseEvent.CLICK, startImageOne);
    start2_btn.addEventListener(MouseEvent.CLICK, startImageTwo);
    start3_btn.addEventListener(MouseEvent.CLICK, startImageThree);
    Then, I wanted to stop a movieClip, if another one was selected to play..so I inserted stop options to the function, which I thought would work, but doesn't. Does any one know why...See this code below..
    thanks
    stop();
    function startImageOne(Event:MouseEvent):void
        imageOne_mc.play();
        imageTwo_mc.stop();
        imgThree_mc.stop();
    function startImageTwo(Event:MouseEvent):void
        imageTwo_mc.play();
        imageOne_mc.stop();
        imgThree_mc.stop();
    function startImageThree(Event:MouseEvent):void
        imgThree_mc.play();
        imageOne_mc.stop();
        imageTwo_mc.stop();
    start1_btn.addEventListener(MouseEvent.CLICK, startImageOne);
    start2_btn.addEventListener(MouseEvent.CLICK, startImageTwo);
    start3_btn.addEventListener(MouseEvent.CLICK, startImageThree);
    thanks
    Babs

    Hi Ned,
    I checked the names and they are all correct...(I named one of the instances img instead of image, but it is all fine.
    The movie clips are simple...They have a stop action in the first frame, and then it is just an image that fads in and fades out..
    Pretty simple?
    The code looks fine, so I can't figure out, why the movie clip that is currently playing doesn't stop, when another button is activated.
    It seems like is should work??
    I'll keep playing .. thanks!!
    babs

  • How do I hear Garageband in multitask? I am playing guitar in GB using Apogee Jam. Would like to read lyrics in Safari while hearing guitar in background. But I can only hear GB when it is the active program. Sound stops if I switch to another app.

    How do I hear Garageband in multitask? I am playing guitar in GB using Apogee Jam. Would like to read lyrics in Safari while hearing guitar in background. But I can only hear GB when it is the active program. Sound stops if I switch to another app.

    http://ww2.cs.fsu.edu/~rosentha/linux/2.6.26.5/docs/DocBook/libata/ch07.html#excatATAbusErr wrote:
    ATA bus error means that data corruption occurred during transmission over ATA bus (SATA or PATA). This type of errors can be indicated by
    ICRC or ABRT error as described in the section called “ATA/ATAPI device error (non-NCQ / non-CHECK CONDITION)”.
    Controller-specific error completion with error information indicating transmission error.
    On some controllers, command timeout. In this case, there may be a mechanism to determine that the timeout is due to transmission error.
    Unknown/random errors, timeouts and all sorts of weirdities.
    As described above, transmission errors can cause wide variety of symptoms ranging from device ICRC error to random device lockup, and, for many cases, there is no way to tell if an error condition is due to transmission error or not; therefore, it's necessary to employ some kind of heuristic when dealing with errors and timeouts. For example, encountering repetitive ABRT errors for known supported command is likely to indicate ATA bus error.
    Once it's determined that ATA bus errors have possibly occurred, lowering ATA bus transmission speed is one of actions which may alleviate the problem.
    I'd also add; make sure you have good backups when ATA errors are frequent

  • Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems n

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

    Since installing LTR 5.4, which I've now upgraded to 5.6, I've encountered repeated slowness and malfunctions in operations, especially when using the Compare View function and the Tab key to open and close the right and left side panels.  Such problems never arose during two years of using LTR-4 and nothing else has changed on my computer.  I have a pretty simple system with only a few plug-ins, which are usually not in operation.  I have 12GB of RAM in my Windows 7 PC.  I could illustrate these problems with screen shots if you would tell me how to submit screen shots.  Otherwise I will try to describe the problems in words.
    The problem is clearly cumulative, growing worse as usage time passes.  Compare View feature gradually slows down and eventually seems to choke as my work session proceeds. If I Exit LTR and re-enter and start all over, things will work normally for maybe 30 minutes, but then the Compare View feature begins to become very slow to respond.   In a recent example with my screen full of thumbnails in Library mode I highlighted two images to compare. LTR started to open the Compare View screen by first having the top row of thumbnails disappear to be replaced by the "SELECT" and "CANDIDATE" words in their spaces  (but no images), but Compare View never succeeded in gaining control of the screen. After some seconds the top row of thumbnails reasserted its position and the Compare View windows disappeared. But LTR kept trying to bring them back. Again the top row of thumbnails would go away, Select and candidate would reappear, try again, and give up. This went on for at least 2-3 minutes before I tried to choose File and Exit, but even that did not initially want to respond. It doesn't like to accept other commands when it's trying to open Compare View. Finally it allowed me to exit.
    To experiment I created a new catalog of 1100 images.  After 30-40 minutes, the Compare View function began to operate very slowly. With left and right side panels visible and two thumbnails highlighted, hitting Compare View can take half a minute before the two mid-size  images open in their respective SELECT and CANDIDATE windows. When the side panels are open and two images are in the Select/Candidate spaces, hitting the Tab button to close the side panels produces a very delayed response--25-30 seconds to close them, a few more seconds to enlarge the two images to full size. To reverse the process (i.e., to recall the two side panels), hitting Tab would make the two sides of the screen go black for up to a minute, with no words visible. Eventually the info fields in the panels would open up.
    I also created a new user account and imported a folder of 160 images. After half an hour Compare View began mis-placing data.  (I have a screen shot to show this.)  CANDIDATE appears on the left side of SELECT, whereas it should be on the right. The accompanying camera exposure data appears almost entirely to the left of the mid-screen dividing line. Although the Candidate and Select headings were transposed, the image exposure data was not, but the data for the image on the right was almost entirely to the left of the line dividing the screen in two.
    Gurus in The Lightroom Forum have examined Task Manager data showing Processes running and Performance indicators and they see nothing wrong.  I could also send screen shots of this data.
    At this point, the only way I can process my images is to work 30-40 minutes and then shut down everything, exit, and re-start LTR.  This is not normal.  I hope you can find the cause, and then the solution.  If you would like to see my screen shots, tell me how to submit them.
    Ollie
    [email protected]

Maybe you are looking for