Openoffice and kde4 open/save dialogue

Now that I've got this beautiful KDE4.4 desktop those dreadful gtk open/save dialogues have got to go!
Followed the wiki but installation of gtk-qt-engine-1.1-2 rendered soffice useless - so no go there.
There is Firefox of course but I'm hoping that there will be a 64_86 version of firefox-kde-opensuse in AUR soon. Audacity is another offender and I'm sure there are others...
Oh, if only there were a one-for-all solution to these eye sores

For the standard openoffice to get the KDE integration you need to have the command
export OOO_FORCE_DESKTOP=KDE4
somewhere that's getting sourced - I have it in /etc/profile.d/openoffice.sh since that was mentioned in the install message. When I tried out go-openoffice a while backI think it needed the same thing or else keeps the default gtk-style.
For gtk-kde4 I had Systemsettings - appearance - gtk syle and it gives me some drop down menus which can be set to "Use current KDE style"
I have noticed some things look a little more KDE-like than others - for instance gimp barely looks different than it did under standard gtk styles.

Similar Messages

  • Codesigned Projector and BuddyAPI (or other File Open/Save Dialogue)

    I noticed that with the Buddy Xtra, if baGetFilename call is made when an application is Codesigned, it will crash.
    Actually ANY attempt to use any file open/save dialogue attempt in a Codesigned application will not work.
    Has anybody found a work around for this?

    Hi,
    Did you found the solution to this? I'm also trying to do something like you , but I got stuck up in a very primitive stage than you. I'm not getting how I can make that File Download window to appear. Can you help me please.
    Thanks.

  • How to get Open/Save Dialogue box

    Hi,
    I need to get open/save dialogue box while downloading a file (from JSP).
    One way which I am currently using is on click of the button pass control to servlet and in servlet using the following code:
    /**.....Some Code */
    response.setContentType("application/csv");
    response.setHeader("Content-Disposition", "attachment; filename=" + filename);
    /**.....Some Code */But I am wondering is there any way I can do the same without passing the control to Servlet? On clicking the button in JSP, is there is any possibilty to get the Open/Save dialogue box directly.
    Thanks
    Arun

    without passing the control to Servlet?Why?
    In HTTP you can send the response only once.The application where i have this requirement is an old one. In the application, I have there are some screens, whose control never goes to Servlet.
    TO be more precise, 2 pages one HTML and another JSP. And the file to be downloaded is created when JSP is called from HTML page. And there is no interaction with Servlet. The JSP inturn calls a method in Java file (which is not a Servlet) and gets all the details including the file to be downloaded.
    I have used window.open() to download the file(in JSP) in order to have Open/Save dialogue box.
    But the approach is working fine in Windows XP systems but not in Windows2000. In Win00 machines it is directly opening the file in popup without giving the user any option for Open/Save.
    Please let me know your suggestion on this.
    Thanks

  • Open save dialogue box wehn run servlet program

    hi,
    i m having one servlet file(Write_File.java).. in this prog i retrive some data form one table and write into one file(c:\\write.be).. its automatically stored tat file in server machine.. now what my issue is when i run Write_File.java, it sholud have to shows save dialogue box..
    file name : Write_File.java
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class Write_File extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
              PrintWriter out = response.getWriter();
              //boolean header = true;
    FileOutputStream fos = new FileOutputStream("c:\\write.be");
              try
                   Class.forName("com.mysql.jdbc.Driver");
                   Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/cha_db","root","user");
                   Statement stat = con.createStatement();
                   ResultSet rs = stat.executeQuery("Select * from acc_ledger");
                   ResultSetMetaData rs_meta = rs.getMetaData();
                        out.println(rs_meta.getColumnName(1)+"\t"+rs_meta.getColumnName(2));
                        fos.write((rs_meta.getColumnName(1)+"\t\t"+rs_meta.getColumnName(2)+"\r\n").getBytes());
                        fos.write(("--------------\t\t--------------\r\n").getBytes());
                   while(rs.next())
                        fos.write((rs.getString(2)+"\t\t"+rs.getString(3)+"\r\n").getBytes());
                   fos.write(("========\t\t========\r\n").getBytes());               
              catch(Exception e)
                   out.println(e);
              fos.flush();
              fos.close();
    pls solve this problem
    by
    senthilkumar
    thnks in advance
    Edited by: vishruta on Nov 16, 2007 3:02 AM

    without passing the control to Servlet?Why?
    In HTTP you can send the response only once.The application where i have this requirement is an old one. In the application, I have there are some screens, whose control never goes to Servlet.
    TO be more precise, 2 pages one HTML and another JSP. And the file to be downloaded is created when JSP is called from HTML page. And there is no interaction with Servlet. The JSP inturn calls a method in Java file (which is not a Servlet) and gets all the details including the file to be downloaded.
    I have used window.open() to download the file(in JSP) in order to have Open/Save dialogue box.
    But the approach is working fine in Windows XP systems but not in Windows2000. In Win00 machines it is directly opening the file in popup without giving the user any option for Open/Save.
    Please let me know your suggestion on this.
    Thanks

  • How to make the Open/Save dialogue download the text file instead of JSP

    I am currently coding on a JSP program, which searches the database and writes the resultset into a file on the server, and then allows the client to download this tab delimited text file onto their local machine. But I met a problem, when the default Open or Save dialogue appears, it shows that it's trying to download the running JSP file from my local host instead of the newly-created text file. Despite this, when I click OK to either Open or Save the file, a warning dialogue will appear saying: The explorer cann't download this file, it's unable to find this internet site or something like that. I get no error message from the server but I was always told that Javax.servlet.ServletException: getWriter() was already called. What does this mean?
    I guess maybe this is caused by the mix use of outputStreams in my program. I don't know if there is a way to directly read the resultset from the database and then send it through outputStream to the client. My solution is: first create a file on the server to hold the resultset, and then output this file to the client. I did all these in one JSP program: Create file on the server, search database, and then read file and output the contents to client. Is this correct? I attached my code, please feel free to correct any of my mistake? Thanks!
    //global.class is a class dealing with database connection
    <%@ page language="java" import="java.sql.*,java.util.*,java.math.*,java.io.*,ises.*,frmselection.*" %>
    <jsp:useBean id="global" scope="session" class="ises.Global" />
    />
    <!--start to process data-->
    <%
    //get query statement from the session
    String sQuery = "";
    if (session.getAttribute("sQuery")!=null && !(session.getAttribute("sQuery").toString()).equals(""))
    sQuery = session.getAttribute("sQuery").toString();
    String path = "c:/temp";
    String fileName = "temp.TXT";
    File file= null;
    FileOutputStream fo = null;
    PrintStream ps = null;
    try {
         file = new File(path,fileName);
         if(file.exists()) {
         file.delete();
         file.createNewFile();
         fo = new FileOutputStream(file);
         ps = new PrintStream(fo);
    }catch(IOException exp){
         System.out.println("IO Exception: " +exp.toString() );
    java.sql.ResultSet recResults     = null;
    java.sql.Statement STrecResults = null;
    STrecResults = global.getConnection().createStatement();
    recResults = STrecResults.executeQuery(sQuery);
    ResultSetMetaData meta = recResults.getMetaData();
    int columns = meta.getColumnCount();
    String [] tempColumnName = new String[columns];
    String [] ColumnName =null;
    int DisColumns = 0;
    int unDisCol = 0;
    String sLine = "";
    if(recResults.next()) {     //if_1
    for(int n=0;n<columns;n++) {
    String temp = meta.getColumnName(n+1);
    if(!temp.equals("PROJECTID")&&!temp.equals("BUILDINGID")&&!temp.equals("HAZMATPROFILEID")) {
    sLine = sLine + "'" + temp + "'" + " ";
    tempColumnName[DisColumns] = temp;
    DisColumns ++;
    ColumnName = new String[DisColumns];
    }else {
    unDisCol ++;
    }//end for
    for(int i=0;i<(columns-unDisCol);i++) {
    ColumnName[i] = tempColumnName;
    ps.println(sLine);
    do{
    sLine = "";
    for(int n=0;n<(columns-unDisCol);n++) {
    String tempColName = recResults.getString(ColumnName[n]);
    if(tempColName==null) {
    sLine = sLine + "" + " ";
    } else {
         sLine = sLine + "'"+tempColName+"'" + " ";
    ps.println(sLine);
    }while(recResults.next());
    }     //end if_1
    recResults.close();
    recResults = null;
    STrecResults.close();
    STrecResults = null;
    %>
    <!--end of processing data-->
    <!--start of download.jsp-->
    <%
    //set the content type to text
    response.setContentType ("plain/text");
    //set the header and also the Name by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=temp.TXT");
    //Open an input stream to the file and post the file contents thru the servlet output stream to the client
    InputStream in = new FileInputStream(file);
    ServletOutputStream outs = response.getOutputStream();
    int bit = 256;
    try {
         while ((bit) >= 0) {
         bit = in.read();
    outs.write(bit);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    outs.flush();
    outs.close();
    in.close();     
    %>
    <!--end of download -->

    Thanks. I believe something wrong with this statement
    in my program:
    You are correct there is something wrong with this statement. Seeing how you are doing this in a jsp, not really what they're made for but thats another topic, the output stream has already been called. When a jsp gets compiled it creates a few implicit objects, one of them being the outputstream out, and it does this by calling the response.getWriter(). getWriter or getOutputStream can only be called once, other wise you will get the exception you are experiencing. This is for both methods as well, seeing how the jsp compiles and calls getWriter means that you cannot call getOutputStream. Calling one makes the other throw the exception if called as well. As far as the filename problem in the browser goes I'm guessing that it's in IE. I've had some problems before when I had to send files to the browser through a servlet and remember having to set an inline attribute of some sort in the content-dis header inorder to get IE to see the real filename. The best way to solve this is to get the orielly file package and use that. It is very easy to use and understand and does all of this for you already. Plus it's free. Cant beat that.
    ServletOutputStream outs =
    response.getOutputStream();
    because I put a lot of printout statement within my
    code, and the program stops to print out exactly
    before the above statement. And then I get the
    following message, which repeats several times:
    ServletExec: caught exception -
    javax.servlet.ServletException: getWriter() was
    already called.

  • Display corruption in open/save dialogue window

    Anyone noticed this one - When opening or saving files in applications, if I drag the sidebar edge in the open/save window to make the column wider or narrower, then scroll any column to the right of the sidebar, the folders/files in that column blur and distort. This happens in most 3rd party apps - eg Word, Quark, Dreamweaver, also iTunes but not in Safari or Extensis Suitcase (which seem to use a slightly different type of dialogue window.
    If I use the sidebar default width (where it 'clicks' to a set width), move the sidebar to it's furthest width possible, or close the sidebar altogether, the problem disappears.
    I've only just noticed this issue, but I may just have never tried to alter the sidebar width in combination with scrolling before now - it may be an OSX10.4.5 issue which I've only updated to recently. The standard finder window behaves normally, it only goes weird when trying to open or save from an app.
    Seems like Quartz is having problems somewhere.
    I've trashed the sidebar preferences, removed and restored the sidebar items/aliases, repaired privileges but no difference.
    I've tested this on a recent Hard drive/system backup and the problem appears there too. I've yet to test it on my old G4 as I can't get access to that today.
    I've got a new G5 with a GeForce 6600 card with 256MB VRam so there shouldn't be a memory problem.
    Any thoughts anyone?
    G5 2.5 Dual Core 2Gb RAM   Mac OS X (10.4.4)  

    Just found out it's a problem with the Wacom Intuos3 tablet pen - the symptom doesn't occur using the apple mouse (or the Intuos mouse either). Have reinstalled the Intuos driver, repaired permissions etc but problem persists. Sounds like an issue for the Wacom techies.

  • Open/Save Dialogue appears twice in Download

    Hi all,
    I am trying to write a text file to the client when the client clicks on some download link.... this is what I am doing.....
    ByteArrayOutputStream bout = new ByteArrayOutputStream();
    bout.write('A');
    response.setContentType("application/text");
    response.setHeader("Content-Disposition", "attachment;filename=AuditTrial.txt");
    response.setContentLength(bout.size());
    ServletOutputStream strp = response.getOutputStream();
    bout.writeTo(strp);     
    bout.close();
    when I run this.... Im getting the Open/Save dialog.....
    When I choose "Save".... its working fine.....
    and when I choose "Open".... it is prompting me the Open/Save dialog again.... and then it is opening.... so the client is getting the dialog twice when chooses "Open" option...... but there is no problem in the output as such... its working fine... its just that Im getting the Dialog twice when i choose "Open".
    Can someone help me out in this regard....
    ThanX in Adv,
    Kiran,
    [email protected]

    If you use html form to submit download request, it will give you twice dialog. Use hyperlink to download, there will be only one dialog.

  • Can't tab into file list when using column view in the open/save dialogue boxes

    Hi,
    When in Open/Save Dialog Boxes I can't use tab to select the file/folder list in Column View. Tab will only cycle through Save As, Tags, Search, and the Sidebar. In all the other views (Icon, List, Cover) I can tab into the file list. Is this a bug?
    I know that enabling Full Keyboard Access will make this work, but I'd rather not do that since it increases the number of buttons you must tab through to get to the file list.
    I'm using the latest version of Yosemite on a 2014 Macbook Air. Thanks.

    Hi,
    Did you found the solution to this? I'm also trying to do something like you , but I got stuck up in a very primitive stage than you. I'm not getting how I can make that File Download window to appear. Can you help me please.
    Thanks.

  • After CS4 installation browsers+programs crash if I use open/save dialogue windows

    help me.
    I have the same problem of this guy!!
    I can't upload files in e-mails or download images or use software with that open/save windows as photoshop.
    Crazy!
    marco

    help me.
    I have the same problem of this guy!!
    I can't upload files in e-mails or download images or use software with that open/save windows as photoshop.
    Crazy!
    marco

  • Open/Save Dialogue Behavior

    Can someone help me understand Pages' behavior when opening/saving documents?
    Here's the scenario:
    -From Pages' File menu I select Open. A Finder window opens to the desktop (why the desktop?). Then I navigate to the document I want, edit as needed, and close it.
    -The next time I select Open, I'm expecting the dialog to open to the last location. But it always open to the desktop, requiring me to navigate through the folder hierarchy AGAIN to the document I want.
    The same works in reverse for the Save command. I want to save into the most recently opened directory, but the Save dialog opens to the desktop, forcing me to navigate through the folders AGAIN to get back where I left off.
    Anyone?

    Ron Stephens1 wrote:
    Can someone help me understand Pages' behavior when opening/saving documents?
    Here's the scenario:
    -From Pages' File menu I select Open. A Finder window opens to the desktop (why the desktop?). Then I navigate to the document I want, edit as needed, and close it.
    -The next time I select Open, I'm expecting the dialog to open to the last location. But it always open to the desktop, requiring me to navigate through the folder hierarchy AGAIN to the document I want.
    The same works in reverse for the Save command. I want to save into the most recently opened directory, but the Save dialog opens to the desktop, forcing me to navigate through the folders AGAIN to get back where I left off.
    Anyone?
    I am using Pages '09 v4.2. Mine opens to the same directory as the last file was saved. If you want a different outcome, use the Option key modifier when choosing File > Save. This Save As ... result offers an alternative destination -- one that will be re-opened on the next Pages session.
    If yours behaves differently, I would move the following file to the Trash:
    <login directory>/Library/Preferences/com.apple.iWork.Pages.plist

  • Open and Save dialogue boxes are useless

    I have recently moved from Windows to Mac after being told I would never look back and I am already 'looking back' somewhat in terms of the OS. I work with photos and graphics and I'm on the move a lot so went for a Mac Book Pro Retina with SSD and I am not going to lie it is lightning quick and the display is beautiful. But when it comes to saving and opening workflow it does not work how I expected it would.
    It seems such a simple thing but you cannot rename files from within mac open and save dialogue boxes. I'm so used to right clicking on a PC to create a new folder, hit F2 or right click and hit rename to rename to what I want then save the file into that new folder. You can also directly edit the name of the files and folders from within the open save dialogue box. If you right click on a mac you can create a new folder but it defaults to the name 'untitled folder' and you then can't change it's name. It find it unbelievable that you can not do this on a MacOS! So unbelievable that I went into an Apple store and spoke with someone there. When I showed them the problem they weren't even aware of it and pointed out I should just use finder. But that is not convenient if if you want to rename a new folder to then have to come out of the open save relocate in finder and change from there.
    I know there is the new folder button down to the left hand side and you can rename the folder as soon as you create it using that but sometimes you may make a mistake and want to change it. Same with file names.
    Why can't you do this on a Mac? It's crazy. After searching about, I came across the Default Folder X app which appears to fix this issue which isn't really that cheap for something I consider should be 100% native in any OS.
    There are other issues that frustrate me from moving over from Windows to Mac (like the ability to snap windows to screen edges, Better Snap Tool fixed that for me at a much more reasonable price but still would have expected this to be native), which I know I will just have to get used to but this one really surprised me.
    Considering I was promised so much in terms of better efficiency with work flow and ease of use overall there is still a lot that's left to be desired.

    As Axeman1020 noted, the Mac OS is not Windows. Things are not going to be exactly the same. It's no different than if you went from Windows to Linux. So expect a month or so of getting used to a different OS. Once muscle memory gets used to the different keyboard commands, and just where things are in general and how they behave, it'll seem just as easy as Windows.
    To answer some of your statements or questions:
    It seems such a simple thing but you cannot rename files from within mac open and save dialogue boxes.
    Renaming items in the Open or Save dialogue boxes are not what those are for. I know Windows allows it, but why? That's a function for the desktop so you can't accidentally change a file or folder name in a dialogue box that has nothing to do with opening a file or saving one. If opening a file, that's all you're doing. If saving, only the name of the file you're saving can be modified. That's what those dialogue boxes are for - nothing else.
    Yes, you can give a file you're saving any name you like. You can even click on any name shown in the save dialogue box to give it that name if you want. You can also highlight the default name and change it.
    If you right click on a mac you can create a new folder but it defaults to the name 'untitled folder' and you then can't change it's name.
    Of course you can. Either highlight the folder and press Enter, or slowly click on the name twice. Either action will make the name editable.
    When I showed them the problem they weren't even aware of it and pointed out I should just use Finder. But that is not convenient if you want to rename a new folder to then have to come out of the open save relocate in finder and change from there.
    You're crossing over two different things. I believe you mean renaming a folder from the Save dialogue box. When you click the New Folder button, you have the opportunity to give the new folder any name you want before clicking Create.
    If you type the wrong name, then yes, you have to finish the save before you can rename the folder. So either be sure you type the name in correctly before clicking Create, or change the misspelling afterwards. You're not saving any time fixing a typo within the Open dialogue box. It will take the same amount of extra time to do it there as opposed to fixing it on the desktop after you complete the save.
    I know there is the new folder button down to the left hand side and you can rename the folder as soon as you create it using that but sometimes you may make a mistake and want to change it. Same with file names.
    You are again trying to force a Windows feature into an OS that is not Windows. The Mac does some things that I wish Windows could do, and visa versa. However, you can't force any OS to do something it simply isn't designed to do. Expecting it to change by sheer willpower is only going to drive you crazy. You need to let go of what you want the OS to do as opposed to what it will do.
    Considering I was promised so much in terms of better efficiency with work flow and ease of use overall there is still a lot that's left to be desired.
    I find the Mac OS to be incredibly efficient. This from a person who has used Windows for many more years overall than the Mac OS. Yes, it took time to get used to how the Mac OS behaved. But rather than fighting it (which is pointless), I simply took the time to learn how to use it as it's designed.

  • Open / Save Dialog Bug in Lion

    Hi,
    I am currently pretty annoyed by a nasty bug that I experience when using Mac OS X Lion. Whenever I want to load an image / video / document or save in various programs, the program automatically crashes. I have reproduced this bug with iMovie 11, iPhoto 11, openOffice, google chrome (when trying to save images) and Seasky Video Converter. Importing via drag and drop seems to work at least for Seasky, but whenever I want to click on a routine that relies on the open / save dialogue, the program crashes.
    Here are some Crash Reports:
    Google Chrome:
    Process:         Google Chrome [184]
    Path:            /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier:      com.google.Chrome
    Version:         14.0.835.35 (835.35)
    Code Type:       X86 (Native)
    Parent Process:  launchd [172]
    Date/Time:       2011-08-14 10:56:37.274 +0200
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          151889 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  56558 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      F69E5D61-EECC-45BD-9100-7EDC6FA04410
    Crashed Thread:  2
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000003abd4d0
    VM Regions Near 0x3abd4d0:
        VM_ALLOCATE            0000000003ab4000-0000000003abd000 [   36K] r--/rwx SM=COW 
    --> VM_ALLOCATE            0000000003abd000-0000000003abe000 [    4K] r--/rwx SM=PRV 
        MALLOC_LARGE           0000000003abe000-0000000003abf000 [    4K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[184]: garbage collection is OFF
    Thread 0:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x91779142 __getdirentries64 + 10
    1   libsystem_c.dylib                       0x91e7b628 _readdir_unlocked$INODE64 + 79
    2   libsystem_c.dylib                       0x91e7b7a5 readdir$INODE64 + 55
    3   com.apple.CoreFoundation                0x999b5222 _CFBundleCopySortedDirectoryContentsAtPath + 1282
    4   com.apple.CoreFoundation                0x999c80f8 _CFSearchBundleDirectory + 88
    5   com.apple.CoreFoundation                0x999c7e54 _CFFindBundleResourcesInRawDir + 2404
    6   com.apple.CoreFoundation                0x999c74c3 _CFFindBundleResourcesInResourcesDir + 867
    7   com.apple.CoreFoundation                0x999c6ffd _CFFindBundleResources + 2221
    8   com.apple.CoreFoundation                0x999d8d64 CFBundleCopyResourceURL + 164
    9   com.apple.CoreFoundation                0x999db979 CFBundleCopyLocalizedString + 409
    10  com.apple.CoreServices.OSServices          0x9080ba69 _CopyLocalizedStringForKey + 86
    11  com.apple.CoreServices.OSServices          0x9084141d NetworkBrowser::getRootNode() + 77
    12  com.apple.CoreServices.OSServices          0x9084f998 NWBrowserGetRootNode + 79
    13  com.apple.DesktopServices               0x93055fb2 TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 2010
    14  com.apple.DesktopServices               0x930575be TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 138
    15  com.apple.DesktopServices               0x92fe162f TFSVolumeInfo::GetVolumeInfoFor(long) + 81
    16  com.apple.DesktopServices               0x93063a32 __NetworkNearbyNode_block_invoke_0 + 43
    17  libdispatch.dylib                       0x90193ae3 dispatch_once_f + 50
    18  libdispatch.dylib                       0x90193aac dispatch_once + 31
    19  com.apple.DesktopServices               0x930639cc TGlobalNodes::NetworkNearbyNode() + 154
    20  com.apple.DesktopServices               0x92feba5b TNode::GetNetworkNode(unsigned long) + 103
    21  com.apple.DesktopServices               0x92fe8eee TNode::GetSpecialNodeWithStatus(unsigned long, OpaqueNodeRequest* const&, unsigned long, TNodePtr&) + 228
    22  com.apple.DesktopServices               0x92fe8cb6 NodeCopySpecialFolder + 341
    23  com.apple.FinderKit                     0x922479d1 TFENodeFactory::FetchSharedNetworkNode() + 87
    24  com.apple.FinderKit                     0x9226ec81 TStartNode::TStartNode(TCustomNodeFactory&) + 171
    25  com.apple.FinderKit                     0x9226ebb1 TStartNode::CreateStartNode(TCustomNodeFactory&) + 37
    26  com.apple.FinderKit                     0x92245fdd TFENodeFactory::TFENodeFactory() + 417
    27  com.apple.FinderKit                     0x92245d30 TFENodeFactory::Initialize() + 30
    28  com.apple.FinderKit                     0x9239186c +[FIFinderViewGutsController initializeCounted] + 77
    29  com.apple.FinderKit                     0x9239b8bc -[FIFinderView _commonFinderViewInit] + 37
    30  com.apple.FinderKit                     0x9239ba58 -[FIFinderView initWithFrame:] + 112
    31  com.apple.AppKit                        0x96754a16 -[NSNavFinderViewFileBrowser initWithFrame:] + 167
    32  com.apple.AppKit                        0x9674b43b _NSNavFileBrowserWithFinderKit + 107
    33  com.apple.AppKit                        0x963e6b17 -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 86
    34  com.apple.AppKit                        0x963e4dcf -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 162
    35  com.apple.AppKit                        0x963e71d8 -[NSSavePanel(NSSavePanelLayout) _initContentView] + 1502
    36  com.apple.AppKit                        0x963e3ce1 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 367
    37  com.apple.AppKit                        0x963dda68 +[NSSavePanel _crunchyRawUnbonedPanel] + 244
    38  com.apple.AppKit                        0x963dc929 +[NSSavePanel savePanel] + 33
    39  com.google.Chrome.framework             0x0076ce52 ChromeMain + 6973650
    40  com.google.Chrome.framework             0x007b6b78 ChromeMain + 7276024
    41  com.google.Chrome.framework             0x002cf3be ChromeMain + 2133566
    42  com.google.Chrome.framework             0x002cfe22 ChromeMain + 2136226
    43  com.google.Chrome.framework             0x00991eb5 ChromeMain + 9222453
    44  com.google.Chrome.framework             0x00992975 ChromeMain + 9225205
    45  com.google.Chrome.framework             0x009949f2 ChromeMain + 9233522
    46  com.google.Chrome.framework             0x0096635e ChromeMain + 9043422
    47  com.apple.CoreFoundation                0x999a810f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    48  com.apple.CoreFoundation                0x999a7ac6 __CFRunLoopDoSources0 + 246
    49  com.apple.CoreFoundation                0x999d19d8 __CFRunLoopRun + 1112
    50  com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    51  com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    52  com.apple.HIToolbox                     0x9be8b487 RunCurrentEventLoopInMode + 318
    53  com.apple.HIToolbox                     0x9be92dc3 ReceiveNextEventCommon + 381
    54  com.apple.HIToolbox                     0x9be92c32 BlockUntilNextEventMatchingListInMode + 88
    55  com.apple.AppKit                        0x95e388ec _DPSNextEvent + 678
    56  com.apple.AppKit                        0x95e38159 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    57  com.apple.AppKit                        0x95e344cb -[NSApplication run] + 904
    58  com.google.Chrome.framework             0x009661fb ChromeMain + 9043067
    59  com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    60  com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    61  com.google.Chrome.framework             0x00254cc6 ChromeMain + 1632070
    62  com.google.Chrome.framework             0x000c70b9 ChromeMain + 2873
    63  com.google.Chrome                       0x000bff58 main + 24
    64  com.google.Chrome                       0x000bff16 0xbf000 + 3862
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   libdispatch.dylib                       0x90191ccc _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x9019071b _dispatch_mgr_thread + 53
    Thread 2 Crashed:
    0   com.google.Chrome.framework             0x00960ce7 ChromeMain + 9021287
    1   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    2   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 3:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x999c89ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x999d1b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x956c8bdb -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.google.Chrome.framework             0x00965944 ChromeMain + 9040836
    8   com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    9   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    10  com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    11  com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    12  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    13  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 4:: CrShutdownDetector
    0   libsystem_kernel.dylib                  0x9177ad4e __read + 10
    1   com.google.Chrome.framework             0x0025565d ChromeMain + 1634525
    2   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    3   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 5:: Chrome_FileThread
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   com.google.Chrome.framework             0x009c1f6d ChromeMain + 9419245
    2   com.google.Chrome.framework             0x009c0392 ChromeMain + 9412114
    3   com.google.Chrome.framework             0x00964d85 ChromeMain + 9037829
    4   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    5   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 6:: Chrome_DBThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 7:: Chrome_ProcessLauncherThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 8:: Chrome_CacheThread
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   com.google.Chrome.framework             0x009c1f6d ChromeMain + 9419245
    2   com.google.Chrome.framework             0x009c0392 ChromeMain + 9412114
    3   com.google.Chrome.framework             0x00964d85 ChromeMain + 9037829
    4   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    5   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 9:: Chrome_IOThread
    0   libsystem_kernel.dylib                  0x9177a90a kevent + 10
    1   com.google.Chrome.framework             0x009c1f6d ChromeMain + 9419245
    2   com.google.Chrome.framework             0x009c0392 ChromeMain + 9412114
    3   com.google.Chrome.framework             0x00964d85 ChromeMain + 9037829
    4   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    5   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 10:: WATCHDOG
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 11:: Chrome_WebKitThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 12:: SamplerThread
    0   libsystem_kernel.dylib                  0x91777c5e semaphore_wait_trap + 10
    1   com.google.Chrome.framework             0x01153d6d ChromeMain + 17356781
    2   com.google.Chrome.framework             0x012182f9 ChromeMain + 18161017
    3   com.google.Chrome.framework             0x012175d1 ChromeMain + 18157649
    4   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 13:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x999c89ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x999d1b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x956c8bdb -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.google.Chrome.framework             0x00965944 ChromeMain + 9040836
    8   com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    9   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    10  com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    11  com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    12  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    13  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 14:: Chrome_SafeBrowsingThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 15:: NetworkConfigWatcher
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x999c89ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x999d1b14 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x999d11ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x999d1098 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x956c8bdb -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.google.Chrome.framework             0x00965944 ChromeMain + 9040836
    8   com.google.Chrome.framework             0x00965a14 ChromeMain + 9041044
    9   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    10  com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    11  com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    12  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    13  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x91777c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x917771f6 mach_msg + 70
    2   com.google.Chrome.framework             0x00991451 ChromeMain + 9219793
    3   com.google.Chrome.framework             0x024f4160 ChromeMain + 37936096
    4   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    5   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 17:: Chrome_HistoryThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b0e0e ChromeMain + 9349262
    5   com.google.Chrome.framework             0x009978a6 ChromeMain + 9245478
    6   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    7   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    8   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    9   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x016d865d ChromeMain + 23142621
    4   com.google.Chrome.framework             0x01df9bcc ChromeMain + 30619212
    5   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    6   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 19:: Chrome_PasswordStore_Thread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 20:: VideoCaptureManagerThread
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 21:: WorkerPool/96803
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 22:: WorkerPool/96527
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 23:: WorkerPool/98311
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 24:: WorkerPool/98819
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 25:: WorkerPool/99075
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 26:: WorkerPool/104979
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 27:: WorkerPool/109059
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 28:: WorkerPool/109315
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 29:: WorkerPool/110339
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 30:: WorkerPool/110851
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e3e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.google.Chrome.framework             0x009b0200 ChromeMain + 9346176
    4   com.google.Chrome.framework             0x009b7291 ChromeMain + 9374993
    5   com.google.Chrome.framework             0x009b7a9f ChromeMain + 9377055
    6   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    7   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 31:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib                  0x91779126 __getattrlist + 10
    1   com.apple.CoreServicesInternal          0x919ba8bd _ZL33corePropertyProviderPrepareValuesPK7__CFURLP11__FileCachePKPK10__CFStringP PKvlSA_PP9__CFError + 521
    2   com.apple.CoreServicesInternal          0x919b6b7e _ZL22prepareValuesForBitmapPK7__CFURLP11__FileCacheP19_FilePropertyBitmapPP9__C FError + 284
    3   com.apple.CoreServicesInternal          0x919b8da5 _FSURLCopyResourcePropertyValuesAndFlags + 960
    4   com.apple.CoreFoundation                0x99a7fa4a _CFURLCopyResourcePropertyValuesAndFlags + 202
    5   com.apple.DesktopServices               0x93072e17 TFSInfo::FetchProperties() + 213
    6   com.apple.DesktopServices               0x92ff0fdb TFSInfo::Initialize(__CFURL const*) + 301
    7   com.apple.DesktopServices               0x92fdf765 TFSInfo::GetVolumeInfo(short, unsigned long, FSVolumeInfo&, TCountedPtr<TFSInfo>*) + 121
    8   com.apple.DesktopServices               0x930559cf TFSVolumeInfo::Initialize(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, bool&) + 503
    9   com.apple.DesktopServices               0x930575be TFSVolumeInfo::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TCountedPtr<TFSVolumeInfo>&, bool&) + 138
    10  com.apple.DesktopServices               0x9302946b TNode::AddVolume(TCountedPtr<TVolumeSyncThread> const&, short, unsigned char, TNodePtr&) + 147
    11  com.apple.DesktopServices               0x93032260 TNode::SynchronizeVolumes(bool, TCountedPtr<TVolumeSyncThread> const&) + 472
    12  com.apple.DesktopServices               0x9303273b TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1061
    13  com.apple.DesktopServices               0x93055135 __PostNodeTaskRequest_block_invoke_08 + 87
    14  com.apple.DesktopServices               0x93067589 ExceptionSafeBlock(void ( block_pointer)()) + 55
    15  com.apple.DesktopServices               0x930550d8 __PostNodeTaskRequest_block_invoke_0 + 86
    16  libdispatch.dylib                       0x9018fe85 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x9019180b _dispatch_queue_drain + 224
    18  libdispatch.dylib                       0x901916b0 _dispatch_queue_invoke + 47
    19  libdispatch.dylib                       0x90190eb8 _dispatch_worker_thread2 + 187
    20  libsystem_c.dylib                       0x91e5bb24 _pthread_wqthread + 346
    21  libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 32:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libsystem_kernel.dylib                  0x91779126 __getattrlist + 10
    1   com.apple.CoreServices.CarbonCore          0x9a693685 _ZL17getattrlist_retryjmPKcmP8attrlistPvmm + 136
    2   com.apple.CoreServices.CarbonCore          0x9a693ad3 GetVolFSAttributes(FSMount*, unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned long, FSVolAttributeInfo*, unsigned char*) + 606
    3   com.apple.CoreServices.CarbonCore          0x9a704dce FSMount::_getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 294
    4   com.apple.CoreServices.CarbonCore          0x9a67f2da FSMount::getattrs(unsigned long, char const*, unsigned long, unsigned long, FSAttributeInfo*, unsigned long, unsigned char*) + 232
    5   com.apple.CoreServices.CarbonCore          0x9a627fdc PBMakeFSRefUnicodeSync + 300
    6   com.apple.CoreServices.CarbonCore          0x9a627ea7 FSMakeFSRefUnicode + 47
    7   com.apple.LaunchServices                0x99464c97 _LSMakeDotLocalizedFSRef + 73
    8   com.apple.LaunchServices                0x99410db7 _LSCopyLocalizedSystemFolderNameForNode + 117
    9   com.apple.LaunchServices                0x99410a67 _ZL53_LSCopyNodeAttribute_DisplayNameIfDifferentFromFSNameP25LSNodeAttributeSta teCache + 295
    10  com.apple.LaunchServices                0x993fd6ff _LSCopyNodeAttribute + 242
    11  com.apple.LaunchServices                0x993fbe8c _LSCopyItemAttributeForRefInfoWithOptions + 294
    12  com.apple.LaunchServices                0x993fbd5e _LSCopyItemAttributeForRefInfo + 46
    13  com.apple.LaunchServices                0x993fbcc3 _ZL27prepareAttributeValueForKeyPK7__CFURLP11__FileCachePK10__CFStringPPKvPP9__ CFError + 163
    14  com.apple.LaunchServices                0x994108e8 _ZL33prepareDistinctLocalizedNameValuePK7__CFURLP11__FileCachePP9__CFError + 103
    15  com.apple.LaunchServices                0x99410879 _ZL25prepareLocalizedNameValuePK7__CFURLP11__FileCachePP9__CFError + 31
    16  com.apple.LaunchServices                0x993fbb7d _ZL31LSPropertyProviderPrepareValuesPK7__CFURLP11__FileCachePKPK10__CFStringPPK vlSA_PP9__CFError + 46
    17  com.apple.CoreServicesInternal          0x919b6b7e _ZL22prepareValuesForBitmapPK7__CFURLP11__FileCacheP19_FilePropertyBitmapPP9__C FError + 284
    18  com.apple.CoreServicesInternal          0x919c1217 _FSURLCopyResourcePropertyForKey + 181
    19  com.apple.CoreFoundation                0x999f18b1 CFURLCopyResourcePropertyForKey + 129
    20  com.apple.DesktopServices               0x9307317e TFSInfo::FetchProperties() + 1084
    21  com.apple.DesktopServices               0x92ff0fdb TFSInfo::Initialize(__CFURL const*) + 301
    22  com.apple.DesktopServices               0x9307cd20 TFSInfo::ResolveSharedFileListItem(unsigned long, TCountedPtr<TFSInfo>&) const + 132
    23  com.apple.DesktopServices               0x92ffaace TNode::ResolveSharedFileListAliasIfNeeded() + 324
    24  com.apple.DesktopServices               0x92fe65dc TNode::SynchronizeChildren(unsigned long, TNodeEventPtrSet&) + 3390
    25  com.apple.DesktopServices               0x92fe53f4 TNode::HandleSync(unsigned long) + 2176
    26  com.apple.DesktopServices               0x92fe4b47 TNode::HandleSync(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 55
    27  com.apple.DesktopServices               0x930326e8 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 978
    28  com.apple.DesktopServices               0x93055135 __PostNodeTaskRequest_block_invoke_08 + 87
    29  com.apple.DesktopServices               0x93067589 ExceptionSafeBlock(void ( block_pointer)()) + 55
    30  com.apple.DesktopServices               0x930550d8 __PostNodeTaskRequest_block_invoke_0 + 86
    31  libdispatch.dylib                       0x9018fe85 _dispatch_call_block_and_release + 15
    32  libdispatch.dylib                       0x9019180b _dispatch_queue_drain + 224
    33  libdispatch.dylib                       0x901916b0 _dispatch_queue_invoke + 47
    34  libdispatch.dylib                       0x90190eb8 _dispatch_worker_thread2 + 187
    35  libsystem_c.dylib                       0x91e5bb24 _pthread_wqthread + 346
    36  libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 33:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x91e5df7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x996262e6 CVDisplayLink::waitUntil(unsigned long long) + 306
    4   com.apple.CoreVideo                     0x99625438 CVDisplayLink::runIOThread() + 706
    5   com.apple.CoreVideo                     0x9962515f _ZL13startIOThreadPv + 160
    6   libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 34:: PowerSaveBlocker
    0   libsystem_kernel.dylib                  0x9177983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x91e5de21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x91e0e42c pthread_cond_wait$UNIX2003 + 71
    3   com.google.Chrome.framework             0x009b0228 ChromeMain + 9346216
    4   com.google.Chrome.framework             0x009b0e2e ChromeMain + 9349294
    5   com.google.Chrome.framework             0x009b0e66 ChromeMain + 9349350
    6   com.google.Chrome.framework             0x0099780b ChromeMain + 9245323
    7   com.google.Chrome.framework             0x00992824 ChromeMain + 9224868
    8   com.google.Chrome.framework             0x009b6ba7 ChromeMain + 9373223
    9   com.google.Chrome.framework             0x009b622c ChromeMain + 9370796
    10  libsystem_c.dylib                       0x91e59ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x91e5d6de thread_start + 34
    Thread 35:
    0   libsystem_kernel.dylib                  0x9177a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91e5bccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 36:
    0   libsystem_kernel.dylib                  0x9177a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x91e5bccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 37:: Dispatch queue: TSystemNotificationTask
    0   com.apple.Symbolication                 0x92fdb1de +[VMUTask pidIsTranslated:].mibForClassic + 30
    1   com.apple.DesktopServices               0x9302a209 TNode::HandleChange(char*, unsigned long, TCountedPtr<TVolumeSyncThread> const&) + 505
    2   com.apple.DesktopServices               0x92ff12a6 TSystemNotificationTask::HandleFileChanged(__FSEventStream const*, void*, unsigned long, void*, unsigned long const*, unsigned long long const*) + 92
    3   com.apple.CoreServices.CarbonCore          0x9a61354d implementation_callback_rpc + 1876
    4   com.apple.CoreServices.CarbonCore          0x9a612d65 _Xcallback_rpc + 487
    5   com.apple.CoreServices.CarbonCore          0x9a612b73 FSEventsD2F_server + 155
    6   com.apple.CoreServices.CarbonCore          0x9a6553bd receive_and_dispatch_rcv_msg + 217
    7   libdispatch.dylib                       0x90194cc2 _dispatch_source_invoke + 642
    8   libdispatch.dylib                       0x901916be _dispatch_queue_invoke + 61
    9   libdispatch.dylib                       0x901917dc _dispatch_queue_drain + 177
    10  libdispatch.dylib                       0x901916b0 _dispatch_queue_invoke + 47
    11  libdispatch.dylib                       0x90190eb8 _dispatch_worker_thread2 + 187
    12  libsystem_c.dylib                       0x91e5bb24 _pthread_wqthread + 346
    13  libsystem_c.dylib                       0x91e5d6fe start_wqthread + 30
    Thread 2 crashed with X86 Thread State (32-bit):
      eax: 0x03abd4a0  ebx: 0x009608c1  ecx: 0x03abd4a0  edx: 0x03b81b20
      edi: 0x00000d07  esi: 0x00000001  ebp: 0xb0206f98  esp: 0xb0206cb0
       ss: 0x00000023  efl: 0x00010246  eip: 0x00960ce7   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x03abd4d0
    Logical CPU: 1
    Binary Images:
       0xbf000 -    0xbfff7 +com.google.Chrome (14.0.835.35 - 835.35) <65D8E9FF-5695-5D61-2FA6-7B58B4E61123> /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
       0xc4000 -  0x3523f6f +com.google.Chrome.framework (14.0.835.35 - 835.35) <11DFD9DB-0D6D-5A7B-03FB-FE7BC8F18E25> /Applications/Google Chrome.app/Contents/Versions/14.0.835.35/Google Chrome Framework.framework/Google Chrome Framework
    0x390c000 -  0x39b9ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x3ac6000 -  0x3ad1fff +com.google.Keystone.Registration (1.0.9 - 1.0.9.2865) <B824317F-34B3-C47B-A05C-01107B03BC1A> /Applications/Google Chrome.app/Contents/Versions/14.0.835.35/Google Chrome Framework.framework/Frameworks/KeystoneRegistration.framework/KeystoneRegistrat ion
    0x4d2f000 -  0x4e26ffb  libGLProgrammability.dylib (??? - ???) <560A7F12-1AA6-35E1-A922-309016BF6D3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x4e4c000 -  0x4e79ff8  GLRendererFloat (??? - ???) <BBFAA220-4A07-3CDC-9A93-DF6A2220AE01> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x77d1000 -  0x77d6ffe  libgermantok.dylib (??? - ???) <465F8E0F-0AED-3D8A-A852-22549742C6E9> /usr/lib/libgermantok.dylib
    0x77da000 -  0x77dcfff  com.apple.AddressBook.LocalSourceBundle (1.1 - 1043) <49FCCD0A-6436-3C81-8773-06A52EFE3F19> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x77e1000 -  0x77e4ffe  com.apple.DirectoryServicesSource (1.1 - 1043) <043271EB-0EAD-33D8-A1E4-F5F6E3DCCD32> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x8539000 -  0x86a6ff0  GLEngine (??? - ???) <3C6D5F72-9CDA-37E2-B085-7F38C99FE8C5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x9fed000 -  0x9ff2fe2  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <C9714E84-87B3-3EF4-A598-758522D1DB25> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x9ff9000 -  0x9ffbfff  libCoreFSCache.dylib (??? - ???) <8CC7923C-BD40-3A87-A295-0EAC7760800E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xa013000 -  0xa013ffb +cl_kernels (??? - ???) <C1930492-FAF5-4F84-BBE8-59B0017326C6> cl_kernels
    0xa

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac

  • Open & Save on many applications dialouges acting very strange lately!

    This is a weird situation to explain because it is so odd to me, and I've never seen anything like it.
    On applications like Mail, Photoshop, Text Edit, and other programs (both Apple and non-Apple) have been giving me very odd behaviors when saving and opening files while scrolling through directories to find the correct directory to save in/open from.
    It's difficult to explain this behavior without a video tutorial but I will give it a shot. I will walk you through it. I am in Photoshop now. I have a file open and I want to save it for web. I hit AppleShiftS and the menu pops up. I hit Save. The dialougue comes up. I am currently in the viewing in detailed view (the button on the left where you choose which way to view your dialogue, the one with the horizontal lines going across). Now first of all, none of the dialogues on my computer lately ever "remember" where I saved last. You know how when you save into a certain directory often, when you save again, it should remember so you don't have to click on eighteen folders to get back to where you were? Well, this doesn't happen anymore for me. ANYWAY, so I click on my external drive. On the right, the contents of the root directory of my external pop-up. Here is where it gets weird. I double-click on BLACK SEA (a folder for my design company, that is called Black Sea) to open it. Instead of taking me to that directory, it basically displays every folder inside BLACK SEA underneath it. Now, keep in mind, there are no arrows next to the folders. It isn't collapsing/expanding the folder like it does when arrows or plus signs are next to folders. It just displays the contents underneath, with no indentation. So, I keep clicking on folders to get to the specific folder I want to save in (this means double-clicking about 5 more times, to get to the desired folder). As I am doing this, that thing I explained is happening, and sometimes, when I double-click, it doesn't open the folder. It just freezes and doesn't respond. Either that, or it will open it, but display the contents of the folder it belongs in, instead of the contents of the folder I'm clicking on.
    Okay, you're probably really confused now, aren't you? I don't blame you.. it's hard to explain what is happening. Basically, to sum it up, my open/save dialogues are acting fishy and not acting the way they should. I'm pretty computer literate, I am a pro graphic designer and web designer so I know what I am doing. I have tried restarting and repairing permissions. I think I may have to run first aid? What do you all think? Ever had similar experiences?
    And before you blame it on photoshop... remember, it does this in mail when choosing attachments, or in Text Edit when saving or opening files, and other programs like Cyberduck (FTP) and my HP Scanner Utility when saving what I scanned.
    A few key things to remember that the Finder application does NOT do this (and for that I am THANKFUL because since I can't for the life of me save a file where I want it saved, I end up saving it as close to where I can get it, then go into Finder and drag it to it's proper folder since I can't accurately save in these programs I'm having trouble with).
    Also, in the other viewing option (the button next to the one with the horizontal lines in the saving/opening dialogue), this works properly. This is the method I have to use in order to save, because it behaves as it should (expanding/collapsing folders in the window to the right of the folder I am clicking on). But personally, I hate this view, and would rather use the other one.
    Please let me know if you have any other questions. I am sure you do because I wrote a novel and I know it is confusing but I did my best.

    My goodness, you certainly gave a detailed description!!!!!!!!!
    Have you tried using your system restore disk to check for errors on the internal drive using Disk Utility. (Not the Disk Utility in your Applications folder). If not, shut down your Mac. All at the same time, press the Power Button, hold down the C key and insert your system restore disk, probably number 1. Keep holding down the C key until you see the Apple logo on the screen, then let go.
    At this point, go to the Menu and click Utilities/Disk Utility. When DU opens, select MacintoshHD in the panel on the left, make sure First Aid is selected then click Verify. If DU reports errors, click Repair. After that's finished, Quit Disk Utility from the Menu, then click Utilities in the Menu again and then click Startup Manager. When that window opens, select MacintoshHD and click Restart. That will boot you back up from your internal drive. See if you see a difference.
    If that doesn't help, I see you are running 10.4.8. You are two updates behind. Run Software Update from the Apple Menu. After you run the update, run Disk Utility (from your Applications/Utility folder) and Repair Disk Permissions. (Always do that after a software update) Reboot and see if that helped.
    Carolyn

  • Mavericks freezing on file open/save

    Having upgraded my iMac (24 inch mid 2007) to Mavericks several non Apple application that tries to open a file open/save dialogue box freezes when the dialogue is attempted to be displayed.
    Main application that is failing is open office but I have written an application in XCode that also fails.

    If you're having problems with freezing in the FILE -> OPEN dialog run this command fron the terminal.
    sudo update_dyld_shared_cache -force
    That seems to have worked for me.
    In this case, the freezeing and/or beach ball of death has something to do with dynamic links being corrupted.  This command clears them out.

  • Open/Save Dialog Box SLOW

    My Mac has slowed down to an absolute crawl. I have reinstalled the OS, run Disk Warrior, Disk Utility, removed my preferences folder to see if something in there was actin' up, I've repaired the permissions, etc... Yet in any application (whether it's Photoshop CS 2, Safari, TextEdit, doesn't matter), if I hit "open" from within that application... no exaggeration... it can take anywhere between 45 seconds to a little over a minute for the dialog box to finally appear!
    The last thing I want to do is nuke my machine. I am so tired of that being the solution whenever something can't be fixed.
    Has anyone run into this? Does anyone have any ideas what to do to fix this problem without nuking the machine?
    (this hasn't been a problem at all until, maybe 3 months ago or so... and I've been running Tiger since it was released)

    Holy cow. I am in complete shock.
    ...got up this morning, saw the suggestion 'bout the iDisk, figured I'd give it a try...
    That was it!!! I've had a .mac account for years, have had my iDisk on my desktop for as long as I can remember. I wonder if something from software update somehow made my machine and the iDisk go "screwy" 'cause it started getting excruciatingly bad just a few months ago.
    Thank you, thank you!! My machine has received a gigantic speed boost across the board, and the open/save dialog boxes now appear instantly when I call upon them, all my apps quit instantly now too. This is amazing! [breathes huge sigh of relief]

Maybe you are looking for