Img is too huge in DW view window

OK, I've had this problem and I cannot figure out what to do.I'm using CS3. I place an img (jpg) in a div and float it left. I want the orignal photo to be larger than displayed so it will look good if someone increases their screen size. I put the img in a div and placed text in the div as well. I want to float the photo to the left side of the div and the text on the right. I want the photo cotained to the height of the div.
All is well until I apply the float the the img. As soon as i do this the img  blows up to the orignal size and obscures other content making it difficult/impossible to work with. Howver, in browser windows, the img is perfectly placed and sized as I want it and all looks great. it is only in the design window of DW that the photo is huge.
What is my problem? How can I get the DW display/view to look as it would in a browser (the img be sized right).

Thanks David for your swift response. I have looked at your code and your example and your example works perfectly when I view it in DW. I'm trying to figure out how to describe my issue and the code without posting it all.
first--i have several div's all on the same page with same function and same class in css. the divs are 8 em in height--my photos are about twice that size, give or take a little. the photos are in the div's and I have coded them in my css to be 100% in height. I expected they would be confined to the 8 em height of the containing div. and in the browsers they are indeed contained and look perfect, just as I want them. but in the DW window, the images are 100% of their real height and thus push out of the divs and obscure material below. so mu code appears to be working perfectly in the browsers (tested on FF 3.5 and IE 7.0) but i have this odd behavior in DW. I can fix by manually resizing in the htm side to fit it in, but that seesm like something I shouldn't have to do.
The problem, to my eye, appears to be with the DW view port, not code as it works in the browsers. Am I wrong or is there some other issue I am not considering?

Similar Messages

  • Code in will not appear in design view window of CS3 :(

    When I was using CS2 and placed code in an HTML page like
    this: <$JobTitle$> it would show up in the Design
    window...but in CS3 it's invisible to the design view/window. Is
    there any way to get it to show again? It would be a HUGE
    help!!!

    Yes, I do have it checked. It makes no difference with these
    tags, unfortunately. :(
    And I will admit, they'll be a dozen or so very happy people
    if you can help me figure this one out.
    I tried to compare all the settings under preferences between
    CS2 and CS3, and they look the same. That's definitely why I'm
    asking teh question here.

  • Two AE CS5 view windows, one won't update

    Big problem for some of the stuff I do -- stereoscope in particular.
    I have two view windows representing a comp and one of its subcomps.  The main comp is locked (to keep the window open and in view).  In CS3, if I have a comp open and locked to its view and one of its sub-comps open, I an make changes in the sub comp and see the result in the parent comp (not in real time or scrolling around, but once the mouse button is released it updates).  I can't get this to work in AE CS5.
    Dug throught the docs and such, but no clue as to why this no longer works.  It's a big problem!  I often need to see the results of a sub-comp updated kind-of interactively this way.  Did they move something?  Change some default?  Or did someone think such things were not really needed?...
    Windows 7 (64 bit).  8 Core. 12 gig of ram.

    Nothing changed there, in fact the feedback should be better with ETLAT due to the changed caching. So whatever you see may be specific. Could  be OpenGL, could be that you have turned off synchronized time of nested  comps could be that you have disabled inheritance of switches for  nested comps or have overridden the resolution and it always needs to  re-calculate everything due to these mismatches, preventing interactive  updates. Look into these things.
    Umm,  The synchronize time is on as is inherit switches.  Live update, I've tried on and off everywhere.  Still the window comp does not respond to changes in the sub-comp directly below it. 
    Perserve frame rate and resolution were off by default.  Turned them on in all subcomps but didn't matter either way.  Something is whacky here!  This original animation comp was imported from CS4.  Anything in the cache settings that might affect things strangely.  I really need to see alignments for way too many elements to be guessing about positions!  (ouch).

  • Viewing Window for Large Graphs

    Hi! I'm looking for pointers on how to develop a viewing window for large graphs, otherwise called 'reference maps' or 'reference diagrams'. For instance, you might have a very large diagram that does not fit in your screen with a very small version of it to one side. Over the small graph, there would be a square box that you move around to focus over to section of the graph. As you move the box, the large diagram on the other side moves around to show that "enlarged" area covered by the box. I'm trying to avoid reinventing the wheel. I've found plenty of information on graphs and diagrams, but nothing close to what I need. Please help? Thanks!

    Here's something I played with for a while.import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class Test extends JFrame {
        String text = "Hi! I'm looking for pointers on how to develop a viewing\n"+
                "window for large graphs, otherwise called 'reference maps'\n"+
                "or 'reference diagrams'. For instance, you might have a\n"+
                "very large diagram that does not fit in your screen with a\n"+
                "very small version of it to one side. Over the small graph\n"+
                ", there would be a square box that you move around to\n"+
                "focus over to section of the graph. As you move the box,\n"+
                "the large diagram on the other side moves around to show\n"+
                "that \"enlarged\" area covered by the box. I'm trying to\n"+
                "avoid reinventing the wheel. I've found plenty of\n"+
                "information on graphs and diagrams, but nothing close to\n"+
                "what I need. Please help? Thanks!";
        JTextArea jta = new JTextArea(text);
        JScrollPane jsp = new JScrollPane(jta);
        JPanel p = new ReferencePanel(jsp);
        public Test() {
         setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
         Container content = getContentPane();
         content.setLayout(new GridLayout(1,2));
         content.add(jsp);
         content.add(p);
         setSize(300,200);
         show();
        public static void main( String args[] ) { new Test(); }
    class ReferencePanel extends JPanel {
        JScrollPane jsp;
        JScrollBar horiz, vert;
        Image img;
        public ReferencePanel(JScrollPane JSP) {
         jsp = JSP;
         horiz = jsp.getHorizontalScrollBar();
         vert = jsp.getVerticalScrollBar();
         jsp.getViewport().addChangeListener(new ChangeListener() {
             public void stateChanged(ChangeEvent ce) { updateView(); }
         jsp.getViewport().getView().addComponentListener(new ComponentAdapter() {
             public void componentShown(ComponentEvent ce) { updateView(); }
             public void componentResized(ComponentEvent ce) { updateView(); }
         addMouseListener(new MouseAdapter() {
             public void mousePressed(MouseEvent me) { setScrolls(me); }
        public void paint(Graphics g) {
         if (img!=null) g.drawImage(img, 0, 0, this);
        private void setScrolls(MouseEvent me) {
         vert.setValue(me.getY()*(vert.getMaximum()-vert.getVisibleAmount()/2)/getHeight());
         horiz.setValue(me.getX()*(horiz.getMaximum()-horiz.getVisibleAmount()/2)/getWidth());
        private void updateView() {
         Component c = jsp.getViewport().getView();
         if (c== null || c.getWidth()==0) return;
         Image i = c.createImage(c.getWidth(), c.getHeight());
         c.printAll(i.getGraphics());
         img = i.getScaledInstance(getWidth(), getHeight(), Image.SCALE_SMOOTH);
         repaint();
    }

  • Excessive disk usage when I drag the log file viewer window (why)?

    When I drag the Log File Viewer window in Gnome, I get huge amounts of hard disk usage and the hard drive makes a loud rumbling noise. This happens only while dragging the Log File Viewer window and no other windows (that I've noticed so far).
    Why is this happening?
    Last edited by trusktr (2012-01-11 05:27:54)

    Elements11DRC
    What version of Premiere Elements are you working with and on what computer operating system is it running?
    Can we assume by your selected ID, that the program is Premiere Elements 11?
    Pending further details, I will assume that you are working with Premiere Elements 11 on Windows 7, 8, or 8.1 64 bit.
    Where is this "My Videos" Folder - on a DVD disc being used as a DataDisc for video storage purposes?
    If so, Add Media/DVD Camera or Computer Drive/Video Importer and from there automatically into the project in Project Assets as well as on the Timeline.
    If your "My Videos" Folder is a folder on the computer hard drive, then Add Media/Files and Folders to get the video into Project Assets from where you drag the video to the Timeline.
    Now for the video that you are trying to import...what are its properties
    Video Compression
    Audio Compression
    Frame Size
    Frame Rate
    Interlaced or Progressive
    File Extension
    Pixel Aspect Ratio
    Probably answered the easiest by knowing the brand/model/settings of the camera that recorded the video.
    Prime interest, that video compression. It could be MotionJPEG which can be problematic for Premiere Elements. It could be AVCHD.avi which cannot be imported.
    We can go into greater detail on your project details once we rule in or out any of the factors mentioned above.
    By the way, what is the destination for this project....burn to disc DVD or Blu-ray...export to file saved to the computer hard drive...other?
    More later.
    Thanks.
    ATR

  • How to lock IN/OUT markers in viewer window so they don't drag?

    Is there a way to lock the IN/OUT markers in ther viewer window?
    Reason why- I tend to have long clips. I mark my IN/OUT point.
    I then go back to the viewer window to scroll through the clip.
    While trying to drag the scroll bar I end up dragging the Mark OUT instead.
    It's minor- but is there a way to get the markers to lock in place- until you mark new points- instead of them staying in drag mode?

    FCP is not AVID, AVID is not FCP.
    I know you're not looing for a lecture, but its worth restating the obvious once again.
    Don't try to make FCP work like an AVID. You'll waste too much time trying to make it something its not, and to some extent this will mar your enjoyment of the new application in your arsenal. You have to try to learn to use FCP the way it was intended. The IN/OUT markers in the viewer window DO drag in FCP. This is a great thing. It gives us the flexability to edit directly in the viewer window. Something we could never do in AVID. Take a look at this old chestnut from the talented Mr Andrew Balis for some inspiration.
    And welcome to the club
    best
    Andy

  • Enlarging the viewer/window for videos

    When I try to view an older (non-HD) video in Aperture the viewing window is very small (1 inch by 1 inch in some cases where it was 160X120).  In iPhoto I simply was able to drag the window to make it larger.  That doesn't seem to work here.  Full screen mode doesn't alter the size either.  In fact, nothing I do seems to change the viewing size.  I tried zoom under the window menu and the view menu each without success.  Any suggestions?

    I do not know of any way to zoom the video viewer, other than using Quicktime as an external editor, but you can view your videos enlarged in Aperture, if you add them to a slideshow and then present the slideshow  in full screen mode or enlarge the viewer in the slideshow. The video will always be shown large enough to fill the viewer in the slideshow, even if it will be blown up too much,  like this:
    Regards
    Léonie

  • Weird artefacts in view window & QT

    Hi all,
    I'm wondering if anyone can shed some light on this, or have experienced it. Since upgrading to Leopard, Final Cut occasionally displays some crazy artefacts in the viewer window, usually when pressing 'f' for match frame. I've also noticed it a couple of times when exporting from QT, the window displays nonsense. I've posted a link to a screen shot:
    http://www.alboardman.co.uk/image

    I can just hear the narration now....
    "When expecting heavy weather, it is advisable to pay special attention to securing the rain fly. I always use the super peg from Cotswolds Outfitters..."
    I've never seen that other stuff, looks spooky. What happens when you trash the preferences? Any relief?

  • In Mail, I can not open a viewer window

    I just had my hard drive replaced on my 27 inch imac.  It came back with a new operating system (OSX10.7.5)  Along with that it had several software updates. One of which was Mail.  It is now at version 5.3.  When I went to open it, it asked to transfer over all the old to the new.  So it did but once that was over it never opened a viewer window.  I then went to FILE to "Open viewer window".  That didn't work either.  I right clicked on the Mail icon in my dock and it said it wasn't responding so I had to force quit.  Same results happen everytime I open MAIL.  Please help.

    With Mail open press Command + Option + Esc to force quit the Mail app.
    Then restart your Mac and try Mail.

  • Mail won't display the viewer window, and it will not close (force quit does not show in menu bar).  Can't shut down to reboot because the open mail program prevents it.   Any advice?

    Mail does not show the viewer window even when new viewer window is cliced.  I tried to close mail and reopen, but it will not close, and force quit option does not appear in window bar.   I tried to shut down the computer and reboot, but it cannot close because of open mail program it says.    Help!

    Many thanks.  Once I was able to close mail, it reopened and behaved quite normally.  Thank you.  I'll remember the option quit for force quite!

  • Mail not loading a Viewer Window by default.

    My question is how do I set Mail so that it does open the viewer window by default? I am running Mail 8.0 on a 2014 iMac running Yosemite.
    I have tried to locate .plist files (although that is close to the edge of my expertise) and there is no "Mail" folder in Hard Drive/Library
    Any advice would be awesome!

    My question is how do I set Mail so that it does open the viewer window by default? I am running Mail 8.0 on a 2014 iMac running Yosemite.
    I have tried to locate .plist files (although that is close to the edge of my expertise) and there is no "Mail" folder in Hard Drive/Library
    Any advice would be awesome!

  • Mail Viewer Window Does Not Open on Launch. Mail Will Not Quit. MAIL BADGER

    <UPDATE> After detailing all of the problems below, I discovered that trashing the Mail Badger bundle solved all of the below problems. I am still posting this just in case anybody else has this problem.
    Problems:
    1. When opening mail.app, the program opens, but it does not launch a Viewer Window. I can open a viewer window manually from the File menu, however.
    2. When quitting mail.app, it will not quit. It does not matter whether I hit command-Q, or Mail>Quit Mail, or right-click on dock icon and click Quit. The only way for me to quit is Force Quit. No matter what Quit command I execute, nothing happens. The Viewer Window does not close. (The Viewer Window will close on command, however, either by clicking the red 'x' or by command-W, or by File>Close.
    3. Cannot send mail from mail.app. Upon clicking "send" on a new email, it just goes to the Outbox and sits there forever. I can try sending the email again from the Outbox, but nothing happens. (I have 4 gmail accounts, with a couple thousand messages between them. There are no problems with port configurations or smtp servers or anything like that - I am fairly certain anyway because nothing has changed w/ regard to the account settings between the time it was working and the time it stopped working.)
    4. After minimizing the Viewer Window, clicking on the mail.app dock icon does not restore the Viewer Window. The only way to restore the Viewer Window is to click on the Viewer window itself in the dock, rather than clicking on the application icon.
    Notes: I have installed 10.4.10. I have also installed Safari Beta 3.0.2
    I previously installed Safari Beta 3.0, then uninstalled it and upgraded to 3.0.2. I don't recall when the problems started, (under 3.0 or 3.0.2), but they all happened at the same time (rather than one at a time).
    I have uninstalled Safari 3 and reverted to Safari 2, but this does not fix the problems.
    I have repaired disk permissions.
    I have booted from the OS X Install disk and repaired my startup disk.
    I have not had any problems with Safari 3 "hanging" on install, thus corrupting the WebKit, as described in other threads.

    I had the same issue and resolution. Spotlight search for "Mail Badger" and deleting everything resolves the issue.
    I'm also running Safari 3.0.2 and 10.4.10...
    I've emailed the developer to let him know about it..
    15" MacBook Pro (C2D) SR   Mac OS X (10.4.10)  

  • After an upgrade to 10.8.5 I can not see my mails with Mail. No "Message Viewer" window- When open it from menu "Window" I have the message "Mail quit unexpectedly"

    Hi there
    I just upgrade to 10.8.5 (from snow leopard on an '08 iMac 2.4 GHz Intel Core 2 Duo with 4 GB memory) and I have a problem with Mail
    While during migration there was no problem and it looks like all my massages was transferred (more than 17.000 mails) when I open Mail there is no "Message Viewer" window and if I try to open it from menu "Window" I have the message "Mail quit unexpectedly" (I have report it to Apple).
    So I can not see my mails!!
    Otherwise everything looks "OK" with Mail. I can see all my accounts in Preferences, I can see other windows like Activity, I can even see the red indicator with he new mails on the Mail icon on the Dock… But I can not quit Mail, only Force quit…
    Thank you in advance for your help.
    I am really sorry but If there will be no solution I am afraid I will go back to snow leopard…

    Hello
    and thank you for your help
    I hope the following information are the ones you ask and useful!
    Step 1 
    24/9/13 11:18:37,404 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:37,408 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107640763 Mail + 1656675
              9   Mail                                0x0000000107640d13 Mail + 1658131
              10  Mail                                0x00000001076129e3 Mail + 1468899
              11  Mail                                0x000000010761321f Mail + 1471007
              12  AppKit                              0x00007fff89083199 -[NSPreferences _selectModuleOwner:] + 706
              13  AppKit                              0x00007fff8908289d -[NSPreferences _setupPreferencesPanelForOwner:] + 448
              14  AppKit                              0x00007fff89082944 -[NSPreferences showPreferencesPanelForOwner:] + 33
              15  Mail                                0x0000000107630177 Mail + 1589623
              16  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              17  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              18  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              19  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              20  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              21  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              22  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              23  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              24  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              25  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              26  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              27  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              28  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              29  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              30  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              31  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              32  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              33  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              34  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              35  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              36  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              37  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:18:56,856 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:18:56,858 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:26,862 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:26,863 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:26,864 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:19:56,957 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:19:56,959 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:26,962 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:26,963 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:20:57,310 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:20:57,311 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:20:57,312 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:21:06,290 μ.μ. WindowServer[2287]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    24/9/13 11:21:06,308 μ.μ. WindowServer[2287]: reenable_update_for_connection: UI updates were finally reenabled by application "Mail" after 1.03 seconds (server forcibly re-enabled them after 1.01 seconds)
    24/9/13 11:21:27,315 μ.μ. Mail[3161]: An exception occurred during invocation of -[MailboxesController _writeSmartMailboxesToDisk]
    24/9/13 11:21:27,316 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:21:27,317 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x0000000107649df0 Mail + 1695216
              9   Mail                                0x0000000107537d95 Mail + 572821
              10  CoreFoundation                      0x00007fff8e11009c __invoking___ + 140
              11  CoreFoundation                      0x00007fff8e10ff37 -[NSInvocation invoke] + 263
              12  CoreMessage                         0x00007fff8cfe07d7 -[MonitoredInvocation invoke] + 225
              13  CoreMessage                         0x00007fff8cff8e22 -[ThrowingInvocationOperation main] + 33
              14  CoreMessage                         0x00007fff8cfa4f82 -[_MFInvocationOperation main] + 431
              15  Foundation                          0x00007fff83bbb926 -[__NSOperationInternal start] + 684
              16  Foundation                          0x00007fff83bc30f1 __block_global_6 + 129
              17  libdispatch.dylib                   0x00007fff8b2e9f01 _dispatch_call_block_and_release + 15
              18  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              19  libdispatch.dylib                   0x00007fff8b2e71fa _dispatch_worker_thread2 + 304
              20  libsystem_c.dylib                   0x00007fff89fb7cdb _pthread_wqthread + 404
              21  libsystem_c.dylib                   0x00007fff89fa2191 start_wqthread + 13
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: An uncaught exception was raised
    24/9/13 11:28:03,262 μ.μ. Mail[3161]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:28:03,266 μ.μ. Mail[3161]: (
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:03,268 μ.μ. Mail[3161]: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    *** First throw call stack:
              0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
              2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
              3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
              4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
              5   Mail                                0x00000001074b422b Mail + 33323
              6   Mail                                0x00000001074b3cbf Mail + 31935
              7   Mail                                0x00000001074b3990 Mail + 31120
              8   Mail                                0x00000001074b6c7f Mail + 44159
              9   Mail                                0x00000001074b6133 Mail + 41267
              10  Mail                                0x000000010764fd73 Mail + 1719667
              11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
              12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
              13  Mail                                0x00000001074b5fe8 Mail + 40936
              14  Mail                                0x00000001074b5ea6 Mail + 40614
              15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
              16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
              17  AppKit                              0x00007fff88bbb11d loadNib + 317
              18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
              19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
              20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
              21  Mail                                0x00000001074b5002 Mail + 36866
              22  Mail                                0x00000001074b4ecc Mail + 36556
              23  Mail                                0x000000010762d8ac Mail + 1579180
              24  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
              25  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
              26  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
              27  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
              28  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
              29  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
              30  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
              31  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
              32  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
              33  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
              34  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
              35  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
              36  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
              37  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
              38  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
              39  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
              40  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
              41  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
              42  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
              43  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
              44  libdyld.dylib                       0x00007fff8883b7e1 start + 0
              45  ???                                 0x0000000000000002 0x0 + 2
    24/9/13 11:28:04,903 μ.μ. com.apple.launchd.peruser.506[2322]: ([0x0-0x307307].com.apple.mail[3161]) Job appears to have crashed: Abort trap: 6
    24/9/13 11:28:08,393 μ.μ. ReportCrash[3465]: Saved crash report for Mail[3161] version 6.6 (1510) to /Users/------/Library/Logs/DiagnosticReports/Mail_2013-09-24-232808_----------- ---.crash
    24/9/13 11:44:24,585 μ.μ. Mail[3744]: Using V2 Layout
    24/9/13 11:44:27,235 μ.μ. Mail[3744]: *** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray
    24/9/13 11:44:33,389 μ.μ. Mail[3744]: An uncaught exception was raised
    Step 2
    Process:         Mail [3744]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.6 (1510)
    Build Info:      Mail-1510000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [2322]
    User ID:         506
    Date/Time:       2013-09-24 23:48:10.137 +0300
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSSet initWithArray:range:copyItems:]: array argument is not an NSArray'
    Performing @selector(newViewerWindow:) from sender NSMenuItem 0x7fb33ac74df0
    abort() called
    terminate called throwing an exception
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8e11cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8df813f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8e0fb454 -[NSSet initWithArray:range:copyItems:] + 212
    3   Message                             0x00007fff847b148c -[SmartMailboxUnreadCountManager smartMailbox:didInitializeWithDictionaryRepresentation:] + 98
    4   Message                             0x00007fff847b0cac -[MailboxUid initWithDictionaryRepresentation:] + 1289
    5   Mail                                0x000000010dae822b Mail + 33323
    6   Mail                                0x000000010dae7cbf Mail + 31935
    7   Mail                                0x000000010dae7990 Mail + 31120
    8   Mail                                0x000000010daeac7f Mail + 44159
    9   Mail                                0x000000010daea133 Mail + 41267
    10  Mail                                0x000000010dc83d73 Mail + 1719667
    11  libdispatch.dylib                   0x00007fff8b2e60b6 _dispatch_client_callout + 8
    12  libdispatch.dylib                   0x00007fff8b2e6041 dispatch_once_f + 50
    13  Mail                                0x000000010dae9fe8 Mail + 40936
    14  Mail                                0x000000010dae9ea6 Mail + 40614
    15  CoreFoundation                      0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    16  AppKit                              0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    17  AppKit                              0x00007fff88bbb11d loadNib + 317
    18  AppKit                              0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    19  AppKit                              0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    20  CoreMessage                         0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    21  Mail                                0x000000010dae9002 Mail + 36866
    22  Mail                                0x000000010dae8ecc Mail + 36556
    23  AppKit                              0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    24  AppKit                              0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    25  AppKit                              0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    26  AppKit                              0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    27  AppKit                              0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    28  AppKit                              0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    29  HIToolbox                           0x00007fff8ed9ed1a _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1206
    30  HIToolbox                           0x00007fff8ed9e1e9 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 410
    31  HIToolbox                           0x00007fff8edb3fc9 SendEventToEventTarget + 40
    32  HIToolbox                           0x00007fff8edeaca9 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 443
    33  HIToolbox                           0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    34  HIToolbox                           0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    35  HIToolbox                           0x00007fff8ed8f85f _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 94
    36  HIToolbox                           0x00007fff8ed6b8bb _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 605
    37  HIToolbox                           0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    38  AppKit                              0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    39  AppKit                              0x00007fff88c1ba9f _DPSNextEvent + 2073
    40  AppKit                              0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    41  AppKit                              0x00007fff88c121a3 -[NSApplication run] + 517
    42  AppKit                              0x00007fff88bb6bd6 NSApplicationMain + 869
    43  libdyld.dylib                       0x00007fff8883b7e1 start + 0
    44  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8be9d212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff89fb6b24 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff89ffaf61 abort + 143
    3   libc++abi.dylib                         0x00007fff884b69eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff884b439a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8df81873 _objc_terminate() + 91
    6   libc++.1.dylib                          0x00007fff8dcc68fe std::terminate() + 20
    7   libobjc.A.dylib                         0x00007fff8df815de objc_terminate + 9
    8   libdispatch.dylib                       0x00007fff8b2e60ca _dispatch_client_callout + 28
    9   libdispatch.dylib                       0x00007fff8b2e6041 dispatch_once_f + 50
    10  com.apple.mail                          0x000000010dae9fe8 0x10dae0000 + 40936
    11  com.apple.mail                          0x000000010dae9ea6 0x10dae0000 + 40614
    12  com.apple.CoreFoundation                0x00007fff8e1148e9 -[NSSet makeObjectsPerformSelector:] + 201
    13  com.apple.AppKit                        0x00007fff88bdc136 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1168
    14  com.apple.AppKit                        0x00007fff88bbb11d loadNib + 317
    15  com.apple.AppKit                        0x00007fff88bba649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    16  com.apple.AppKit                        0x00007fff88df7653 -[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 150
    17  com.apple.CoreMessage                   0x00007fff8cfe83d6 -[NSBundle(MessageFrameworkAdditions) loadNibNamed:owner:] + 95
    18  com.apple.mail                          0x000000010dae9002 0x10dae0000 + 36866
    19  com.apple.mail                          0x000000010dae8ecc 0x10dae0000 + 36556
    20  com.apple.AppKit                        0x00007fff88d0b959 -[NSApplication sendAction:to:from:] + 342
    21  com.apple.AppKit                        0x00007fff88e4136c -[NSMenuItem _corePerformAction] + 406
    22  com.apple.AppKit                        0x00007fff88e4105a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    23  com.apple.AppKit                        0x00007fff88b2e20f -[NSMenu _internalPerformActionForItemAtIndex:] + 36
    24  com.apple.AppKit                        0x00007fff88b2e097 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 135
    25  com.apple.AppKit                        0x00007fff88e3a165 NSSLMMenuEventHandler + 342
    26  com.apple.HIToolbox                     0x00007fff8ed9ed1a DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1206
    27  com.apple.HIToolbox                     0x00007fff8ed9e1e9 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 410
    28  com.apple.HIToolbox                     0x00007fff8edb3fc9 SendEventToEventTarget + 40
    29  com.apple.HIToolbox                     0x00007fff8edeaca9 SendHICommandEvent(unsigned int, HICommand const*, unsigned int, unsigned int, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 443
    30  com.apple.HIToolbox                     0x00007fff8ed8fa21 SendMenuCommandWithContextAndModifiers + 59
    31  com.apple.HIToolbox                     0x00007fff8ed8f9d3 SendMenuItemSelectedEvent + 254
    32  com.apple.HIToolbox                     0x00007fff8ed8f85f FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 94
    33  com.apple.HIToolbox                     0x00007fff8ed6b8bb MenuSelectCore(MenuData*, Point, double, unsigned int, OpaqueMenuRef**, unsigned short*) + 605
    34  com.apple.HIToolbox                     0x00007fff8ed6aec8 _HandleMenuSelection2 + 565
    35  com.apple.AppKit                        0x00007fff88cf98c6 _NSHandleCarbonMenuEvent + 245
    36  com.apple.AppKit                        0x00007fff88c1ba9f _DPSNextEvent + 2073
    37  com.apple.AppKit                        0x00007fff88c1adf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    38  com.apple.AppKit                        0x00007fff88c121a3 -[NSApplication run] + 517
    39  com.apple.AppKit                        0x00007fff88bb6bd6 NSApplicationMain + 869
    40  libdyld.dylib                           0x00007fff8883b7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8be9dd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b2e8dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b2e89ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83b64546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 3:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8d92eb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8db51bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8be9d0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff89fb9fb9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8dab49d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8dab48b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8db6725f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8be9b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8be9ac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8e0b9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8e0be916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8e0be0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff83bc77ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff83b601aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff8cf7dd57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff83bc2562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8be9d322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8e0fdf46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff89fb5772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff89fa21a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8be9d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff89fb7f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff89fb7ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff89fa2191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5211e218  rdx: 0x0000000000000000
      rdi: 0x0000000000000c07  rsi: 0x0000000000000006  rbp: 0x00007fff5211e240  rsp: 0x00007fff5211e218
       r8: 0x00007fff74393278   r9: 0x000000000000000d  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x00007fff5211e3a0  r13: 0x00007fb33bbe43d0  r14: 0x00007fff74394180  r15: 0x00007fff5211e280
      rip: 0x00007fff8be9d212  rfl: 0x0000000000000206  cr2: 0x00007fff7438cff0
    Logical CPU: 0
    Binary Images:
           0x10dae0000 -        0x10de7ffff  com.apple.mail (6.6 - 1510) <49BBA752-FE19-381B-BD78-1394141471D5> /Applications/Mail.app/Contents/MacOS/Mail
           0x10f5c8000 -        0x10f5cafff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10f5cf000 -        0x10f5d2fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x10f5d8000 -        0x10f5dafff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10f5de000 -        0x10f5f2fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x10fef2000 -        0x10fefbff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10ff04000 -        0x10ff0dff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x10ff13000 -        0x10ff18fff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x10ff1d000 -        0x10ff1ffff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10ff23000 -        0x10ff28fff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x10ff2d000 -        0x10ff34fff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x110089000 -        0x11008bfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x11008f000 -        0x110093fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x1103dc000 -        0x1103dffff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x1103e4000 -        0x110411fff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27.1) <81194DEC-984F-3099-B537-F70394F8492C> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x110429000 -        0x11042bfff  p

  • Main view window locked on 'one pic at a time'???

    My main view window ... somehow I locked it into displaying only one-pic-at-a-time. Can't seem to get back to the library mode, or whatever it might be called, when I can see all the pics in the folder at the same time. I can't for the life of me figure out how to change the view mode. And the scaling control, bottom right, has disappeared (or I've somehow disappeared it).
    Any help would be most appreciated...
    Ben

    Thank you Ian,
    Aie yie yie. I cycled through the V yesterday ... and somehow never got to that thumbnail view (go figure). But it worked first try this morning. Maybe my Mac was tired yesterday, like me.
    Much appreciated,
    Ben

  • Is there a way to view windows media files on an iPhone?

    Is there a way to view windows media files on an iPhone?

    There are some apps that provide for viewing the closed/proprietary format such as OPlayer.

Maybe you are looking for