Weird behaviour in Finder Preferences

I have just set up my brand new 27"iMac and i was in Finder Preferences setting up the items I wanted in the Sidebar.
I clicked on the various items I wanted in the Sidbar Preferences list but after clicking and ticking them I noticed that  the ticks then disappeared. Relaunching Finder did show the desired items were now in the sidebar so my choices were picked up. However I examined the Sidebar preferences again and found no items were ticked. Clicking on an item which was in the Sidebar again briefly showed a tick which disappeared and then on relaunching Finder that item had been removed as desired.
Obviously my choices are being dealt with correctly but the Sidebar Preference list shows nothing ticked.
I find this very weird.
Has anyone any explanations or is this "normal" Mavericks behaviour?

Finder preferences can become corrupted. It's not an unusual.
Try this..
Open the Finder. From the Finder menu bar click Go > Go to Folder
Type or copy paste the following:
~/Library/Preferences/com.apple.finder.plist
Click Go then move the com.apple.finder.plist file to the Trash
Then go to Finder > Preferences > Sidebar and try again.

Similar Messages

  • Finder Preferences, hard disks cd's dvds, and ipods

    hello,
    I am a little confused at this. In finder preferences under the general tab tere is a menu "show these items on the desktop" and selection is
    -hard disks
    -cd,s dvds, and ipods
    -connected servers
    i have selected Hard disks, why isn't my external drive showing up? It actually will show up if I have selected cds dvds and ipods....just a little weird
    i was wondering if anyone had any solutions. thanks.

    The labelling for the second item isn't correct; what it actually does is to show or hide removable disks, which include external hard drives. Changing this setting alters the value of the ShowRemovableMediaOnDesktop key in the Finder's preferences.
    (12563)

  • SQL MP - SPN Status monitor weird behaviour

    Hi all,
    I have a strange behaviour with the monitor that checks SQL 2008 SPN status. More precisely I have a weird behaviour with the script used by the monitor. The script is GetSQL2008SPNState.vbs. I configured the SQL monitoring profile (which is used by the
    script) with a domain account with necessary rights.
    Let's say I have a SQL Server called SQL1. SQL1 is in domain AD1. I have a forest called contoso.com with two child domains AD1 and AD2.
    On SQL1 I sometimes see events 4001 generated by this script that mentions a problem to connect to WMI namespace (which is healthy, I checked with wbemtest). The event says that it couldn't connect to
    \\SQL1.AD1.contoso.com.AD2.contoso.com\root\blabla. I have no idea why it is using that broken FQDN.
    I made some research into the script and understood the following:
    The script has the SQL server FQDN as parameter (here SQL1.AD1.contoso.com)
    It searches the defaultnamingcontext by doing
     Set oRootDse = GetObject("GC://RootDSE)
     sRootnamingContext = oRootDse.Get("defaultNamingContext")
    It converts the defaultnamingcontext variable from "DC=a,DC=b,DC,c" to ".a.b.c"
    It checks if the defaultnamingcontext is in the fqdn and if not it appends it at the end of the fqdn. Dunno if I'm clear here so here are examples of good and bad behaviours:
    GOOD:
    FQDN is SQL1.AD1.contoso.com, defaultnamingcontext gives AD1.contoso.com, AD1.contoso.com is in SQL1.AD1.contoso.com so the script go on using SQL1.AD1.contoso.com and it's ok...
    BAD:
    FQDN is SQL1.AD1.contoso.com, defaultnamingcontext gives AD2.contoso.com, AD2.contoso.com is not in SQL1.AD1.contoso.com so the script go on using SQL1.AD1.contoso.com.AD2.contoso.com and it's broken...
    I didn't mention earlier but the runas account I use is from domain AD1. It's called AD1\svc_scom_mp
    My question is how comes sometimes (sometimes means during 6 hours, a whole day, nothing reccurent :( ) The defaultnamingcontext gives me the fqdn of the other domain ??
    I'm wondering if this can be due to the fact that I also have an account called svc_scom_mp in AD2 but I'm 100% sure it's not used here as it's not targeted nor distributed to any AD1 computers.
    I guess it's more an AD problem than anything else.
    Any ideas ?
    <a href="http://myitforum.com/cs2/blogs/fdufour/default.aspx">Supervize Me ©</a>

    Hi François
    I tested GetSQL2008SPNState.vbs on my POC with a similar configuration (one root and two child domains) and i have got the same issue. I think the root cause is the Server less binding (GC://RootDSE) used to search defaultNamingContext.
    With Server less binding, GC name relies on
    DNS round robin to find a GC, if a GC from another domain is returned the defaultNamingContext will be the other domain.
    You can check GC resolution with nslookup:
    nslookup gc._msdcs.contoso.com  (the root domain)
    repeat the command to see the round robin result.
    I wrote a vbscript to test it:
    This script search all GC and search defaultNamingContext with GC provider server less and server name binding. With LDAP Provider the right domain name is always returned.
    =============================
    ldapFilter = "(&(objectClass=nTDSDSA)(options:1.2.840.113556.1.4.803:=1))"
    Set rootDSE = GetObject("LDAP://rootDSE")
    configDN =   rootDSE.Get("configurationNamingContext")
    Set ado = CreateObject("ADODB.Connection")
    ado.Provider = "ADSDSOObject"
    ado.Open "ADSearch"
    Set objectList =   ado.Execute("<LDAP://" &configDN& ">;" & ldapFilter & ";distinguishedName;subtree")
    ' GC Server less binding LDAP
          Set oRootDse = GetObject("LDAP://RootDSE")
          If Not (oRootDse Is Nothing) Then
                sDefaultNamingContext = oRootDse.Get("defaultNamingContext")
                wscript.echo "Server less binding:
    LDAP://RootDSE"
                wscript.echo "   DefaultNamingContext found: " & sDefaultNamingContext
                 wscript.echo " "
          Else
                wscript.echo "   NOT found: "
          End If
    ' GC Server less binding  GC
          Set oRootDse = GetObject("GC://RootDSE")
          If Not (oRootDse Is Nothing) Then
                sDefaultNamingContext = oRootDse.Get("defaultNamingContext")
                wscript.echo "Server less binding: GC://RootDSE"
                wscript.echo "   DefaultNamingContext found: " & sDefaultNamingContext
                 wscript.echo " "
          Else
                wscript.echo "   NOT found: "
          End If
    wscript.echo "Server Name binding: GC://<ServerName>/RootDSE"
    While Not objectList.EOF
        nTSDSA = objectList.Fields("distinguishedName")
        serverDN = Mid(nTSDSA, 18)                                        
        Set serverObj = GetObject("LDAP://" & serverDN )
        WScript.Echo " GC name:" & serverObj.dNSHostName
        ' GC Server Binding
        Set oRootDse = GetObject("GC://" & serverObj.dNSHostName & "/RootDSE")
          If Not (oRootDse Is Nothing) Then
                sDefaultNamingContext = oRootDse.Get("defaultNamingContext")
                wscript.echo "   DefaultNamingContext found: " & sDefaultNamingContext
          Else
                wscript.echo "   NOT found: "
          End If
        wscript.echo " "
        objectList.MoveNext
    Wend
    ======================================================
    Cordialement

  • Finder Preferences - GONE???

    Hi all,
    I upgraded to Snow Leopard, and for the most part, it's perfect. Except I noticed something funny: there no longer is a Finder Preferences under the Finder menu! Even hitting cmd+; brings up nothing...
    Ive installed SL twice now. Both times I got an error message from Fusion Suitcase 2 saying it couldn't open a font vault. This is a demo version that I forgot about, probably not compatible w/SL, but this is the only weird thing that happened.
    On the first install, under "Finder", "Preferences" had changed to "System Preferences". When I click this, I just get the usual System Preferences window; now, on the second try, it no longer says "System Preferences" in the root menu, "System Preferences" is under the apple logo.
    EDIT: sorry, since repairing disk permissions, now, under Finder/Services, I've got "Services Preferences"; but still no Finder Preferences
    When I upgraded my wife's Macbook, she has "Preferences" under Finder, like normal.
    What the heck is going on???
    Message was edited by: bduffy3000
    Message was edited by: bduffy3000

    Download "OnyX" from http://www.macupdate.com
    Open it and goto the "Parameters" tab / Finder Menu options.
    Check "Preferences" there - and any others you don't see.
    Does that work?
    You might also simply try to delete the file in:
    ~/Library/Preferences/com.apple.finder.plist
    Scott

  • Roundness / Residual - weird behaviour

    Hi,
    I've been experimenting to understand "roundness" in Find Circular Edge - which seems to be the residual from "circle fit". I noticed some weird behaviour, and to understand it, I wrote a program that scales the width of a "perfect" circle from 0.5 to 1.5.
    I expected some glitches, jumps,.. due to discretization, rounding,.. etc, but then I stumbled upon behaviour that makes no sense: When I detect a circle that is partly outside of the image, the roundness is suddenly at very low value.
    To visulalize, I'm talking about such an image:
    The roundness behaves like this:
    I am not sure if it is just my vi (I'm attaching the example picture and the experimental vi), but can anyone explain this behaviour and give me some idea how to avoid it?
    Thanks,
    Birgit
    Solved!
    Go to Solution.
    Attachments:
    src05.jpg ‏19 KB
    circularedge.vi ‏63 KB

    The results of the "roundness" aka residual have a glitch once the detected circle is outside of the image.
    Allow me to add a "normal" picture with a low residual of 0.17
    High residual of 21,3
    This behaviour sort of models how well the shape fits with the calculated circle.
    And that's what I expect.
    However, in the second the algorithm "finds" a circle that is outside of the image boundaries, the residual "jumps" and is suddenly very, very low, as if one had a shape that would fit with the calculated circle.
    This, for example, has a residual of 0,27

  • How do I find Preferences on Itunes?

    I am trying to Convert MP3 or M4a from Itunes to planning Center.  The directions I have say to go to preeences but I can't find preferences on the most recent Itunes.  Please help!

    The main differences between iTunes 11 and earlier versions are the loss of coverflow and ability to have multiple windows open.
    In Windows, you can restore much of the look & feel of iTunes 10.7 with these shortcuts:
    ALT to temporarily display the menu bar
    CTRL+B to show or hide the menu bar - allowing you to access Edit > Preferences
    CTRL+S to show or hide the sidebar
    CTRL+/ to show or hide the status bar (won't hide for me on Win XP)
    Click the magnifying glass top right and untick Search Entire Library to restore the old search behaviour
    Use View > Hide <Media Kind> in the cloud or Edit > Preferences > Store and untick Show iTunes in the cloud purchases to hide the cloud items. The second method eliminates the cloud status column (and may let iTunes start up more quickly)
    If you don't like having different coloured background & text in the Album (Grid) view use Edit > Preferences > General and untick Use custom colours for open albums, movies, etc.
    With iTunes 11.0.3 and later you can enable artwork in the Songs view from View > Show View Options (CTRL+J) making it more like the old Album List view
    View > Show View Options (CTRL+J) also contains options to change the sorting of grid based views
    tt2

  • MPB + 24" LED, weird behaviour after disconnect

    When using my MPB in combination with my 24"LED (single screen setup), everything works perfectly. When I disconnect, the resolution drops to the maximum resolution of my MPB. This drop in resolution results in weird behaviour of application windows, expose (corner activation) and spaces.
    Expose does not work anymore, seems like it still thinks there is a larger resolution, so putting my mouse pointer in the corner will not activate expose or any other corner function.
    Spaces does not slide anymore, again it seems like it expects a larger desktop to slide which is not there anymore. The display flashes and skips to the next desktop.
    Windows can not be resized because the sizing corner (lower right) is outside of the current screen area. So to be able to resize my applications, I have to resize them to small before I disconnect the 24"LED screen.
    Solutions tried:
    1) System preferences > Displays > Detect displays... Does not work
    2) System preferences > Displays > Lower resolution > Normal (max) resolution : Works like a charm
    3) Logout > Login : Also works
    Does anyone else know how to make this work the way it should? So far it seems the programming (Leopard) is faulty.

    AVrublevskiy
    I agree that, at times, the SGE switches can be somewhat difficult when getting them in and out of stack mode. I would recommend getting them back to the config that they had before you tried to remove them from a stack, then configure them via the serial cable back to factory defaults. The pinout for the cable can be found here.
    There is also a little, round, red hole at the bottom left of the switches face plate that allows you to factory reset the device. You should use a paper clip and hold it for a full 30 seconds.
    These switches are designed to either be stacked or not, meaning they are not supposed to be put in and taken out of stacked mode at random. By default, the switches try to stack together, and do not work well when the stack gets broken up or changed. I sincerely suggest you pick either stacked or standalone and leave them as such.
    As a side note, there is a newer firmware available for this switch. It is version 3.0.0.18. It can be found here.
    Please report any new problems.
    Bill

  • Weird behaviour with inlined SubVI's

    Every now and then I've ran into some serious weird behaviour where I've eventually traced it down to some inlined subVI. It has seemed as if the values used inside the inlined subVI don't match what the calling VI is feeding into its inputs. I haven't been able to consistently reproduce this issue so I apologize for the vague description, but since I felt I should finally address this and I couldn't really find anything similar by searching, I'll do my best to describe it and we'll see what turns up.
    As I mentioned, the issue certainly doesn't occur consistently. I use inlined subVI here and there and most of the time there are no problems whatsoever. I ran into the issues randomly I think four times now, first three of them were on LV2013 and this last time on LV2014. In all cases I have been using AF and I think the first times were actually with an actor class. At the time I thought it might have been related to the AF, and it still might, but now the last time it wasn't the actor class itself but a data member of one. So far all of the problems have occured with class methods, and I think the "corrupt values" have been the object private data, but I can't confirm this.
    This time the inlined subVI was a static dispatch method with contents shown below on the left and the calling on the right.
    I'm showing the calling just to point out that when I was investigating the problem and I probed the object wires before and after the inlined subVI the values (Calibration.X Step and Calibration.Y Step) were OK, but the result of the VI (Point out) was some insane value as if the actual division inside was performed by corrupt data. I think that the output value wasn't Inf, though, so the divider might not have been a default value such as 0.
    Other notes:
    I checked that the wires are connected to the inputs and outputs
    As I mentioned, the projects have always been relatively large AF setups, the problematic method has been an actor method or a method called by an actor somewhere down the chain. I have no reason to assume AF is the culprit, I'm just pointing this out, just in case
    The problem seems to occur quite randomly but once it "starts" it doesn't go away until I find which inlined subVI it was and change it to a normal VI call
    The problem might not even be specifically inlined subVI related but for example pre-allocated VI related instead
    I don't know whether the problem would occur in a built executable as well, so far I've only ran into them while testing while developing and fixed them there
    Looking at the "Known Issues" related to inlined subVI's I don't know if this related to them. The other one deals with execution systems, which I haven't touched to my knowledge, and the other one says "An Inline public methodVI calling a private-scope method VI, inlined into a non-class caller may give a runtime error when trying to call the private method from the inlined code in the non-class caller."
    LabVIEW version is 14.0.1 (2014 SP1 32bit) on Windows 8.1
    Yep, reading through this post I gotta say I'm not expecting much, what a mess, but it would be great to find out if anyone else has ever ran into similar problems or has a clue what's going here.

    Just for the sake of your sanity, I've seen "funky" behaviour with inlined VIs also, but on Real-Time targets.
    I've never been able to narrow down the exact problem but it seems to be related to changed made to inlined VIs not being reflected in the compiled code od VIs which call them.
    I've reported it but without code which can actually reproduce it, it cannot be fixed.
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

  • Can not select 'Show HD' in Finder Preferences

    Just performed Data Migration on a new iMac Intel late 2011 from a 2 year old iMac Intel.  For some reason, the Macintosh HD does not display on the desktop.  If I go to Finder Preferences I can not select Hard Disks.  The box is not selected, but If I try to click it, it will not stick.  How do I fix that.  Not much on the internet concering this peculiarity.

    OK, try a couple of things. First is to do some resets, the first I'd recommend doing is restarting the computer in  Safe Mode, this will clear some caches. It's possible one is corrupt. Next is to reset the SMC and PRAM, each of these should be done 2x to ensure they work. Finally if that doesn't do it open Disk Utility (Applications - Utilities - Disk Utility) and Repair Disk Permissions 2x.
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    PRAM RESET
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • How to restore lost Finder preferences in 10.6.5?

    Running 10.6.5 on a MacBook Pro 2.4Ghz i5.
    In each Finder window, I had, over months and years, set up a specific setting according to my needs:
    Some windows had different background color;
    Some windows were set to list view, some to icon view;
    Some had icons of a certain size, some had icons of a smaller or larger size;
    Various windows were sized and arranged on the screen to meet various requirements;
    and most importantly, in each window the icons in icon view were often arranged in a specific organizational pattern.
    In fact, this is how I organized my work flow -- moving icons from one area of a Finder window to another to represent their various stages of completion in projects.
    I've been using Finder this way for years, never a problem.
    But after a recent Shut Down and Restart, for no apparent reason, ALL of my existing Finder preferences were wiped away for every window.
    Now, all windows have been reset to have the same background color, all windows the same size and the same location on the screen, all be in icon view, have the icons all be the same (maximum) size, and worst of all all rearranged alphabetically in a grid. All my customization was wiped clean, and all windows reset to what I presume was the default appearance.
    No data or files were lost, as far as I can tell. The computer seems to be functioning perfectly as it always does in every other way. The only thing that went wrong was that the Finder preferences were zeroed out and reset.
    For most people, this really wouldn't be much of a problem, as they don't really use the Finder icons and windows to organize concepts and workflow as I do; but for me this is a disaster, because now I've lost track of all sorts of "information" encoded in how each window appeared and how icons were arranged.
    I could laboriously by hand try to restore each window to how I thought it was, but there are literally hundreds or thousands of windows, each containing in some cases hundreds of icons representing hundreds of work files in various stages of completion, and the whole process would take me weeks to get it back to the way it was, and even then it would certainly be inaccurate, as I'd be relying on my memory.
    So my question is: Is there any way to get back and restore my Finder preferences to the way they were before this mysterious "Finder Amnesia Event," or whatever it was? Or do i just resign myself to accepting this setback and go about restoring each window's set-up by hand?

    No, probally not.
    But there are security issues with 10.6.5 and you really need to Apple menu> Software Update to 10.6.8 right away.
    Perhaps that's is what caused it?
    Run a ClamXav scan.
    Run through this list if you have problems
    ..Step by Step to fix your Mac

  • Error and weird behaviour in executable launch

    Hello folks,
    This post is regarding a weird behaviour i am experiencing with an executable i built. 
    LABVIEW version(Includes Runtime engine) LV2012 SP1 f3
    DAQmx: 9.6.1
    The behaviour is listed below in detail. 
    In a nutshell, the exectuable runs on the development computer but does not run on the Target computer. Also, Irresepctive of which PC i run the executable on, i cannot access the block diagram even after enabling debugging everywhere. 
    On the target PC, the app fires up but does not run further, no error codes appear on the screen, it's like the app freezes after firing up. And to add to the misery, i cannot access the block diagram to debug and know what's going on. 
    Also, I have tried including the dynamic vis to my build script. No bueno. 
    What I see on running the app is addressed below:
    TARGET COMPUTER:
    DAQmx 9.7 and LV2012 SP1 f4 RTE have been installed manually.
    App does not run: No broken run button, the app launches but does nothing when the vi is run. No error messages.
    The block diagram is still inaccessible, even after selecting the “Enable debugging” option in the build specifications.
    DEVELOPMENT COMPUTER:
    The app launches and runs perfectly.
    The block diagram is still inaccessible, even after selecting the “Enable debugging” option in the build specifications.
    DAQmx 9.7 and LV2012 SP1 f4 RTE were not installed as the app recognized the already installed Labview environment.
    Additional steps that I have tried,
     Created and ran only an executable on the target PC, the attempt was unsuccessful. The vi showed similar characteristics as mentioned above in the target PC section.
     Created and ran an installer with additional install options(LV2012 f4 RTE and DAQmx 9.7)on the target PC, the attempt was again unsuccessful. The vi showed similar characteristics as mentioned above in the target PC section.  No error messages.
     Tried both the steps mentioned above on the development computer and the attempts were successful. .
    To the best of my knowledge, I believe, the issue here is with the environment I am creating for the executable and the installer to run with/off of. After having carefully followed the installation procedure for the Run-Time Engine and the DAQmx drivers, I still do not know what I am missing. 
    Please advise.
    Thanks guys, 
    RP.

    Hey guys, 
    So, got the application to work. Almost. 
    The problem was that the executable was missing the hardware config from the Device. 
    Now, the new issue is as following: 
    The goal of the vi is to generate a report of the test conducted. So, the way the vi works is that, the second the vi is run, an empty word file is created with only the company logo,  
    Field headings, which are populated after the test is conducted. 
    The logo is a .jpg file, which has a relative path into the executable.
    The field heading are String constants wired into a 'concatenate strings.vi' which are in turn wired to into the report generation vis.
    What's happening is that when i run the app on the target pc, Only the logo appears on the word template. Even when i conduct the whole test and stop the vi, the results aren't populated in the word file. Which is a little weird.
    Does any one know whats doing that?
    Please refer to the attached word files.
    Right - It is the file format desired. 
    Wrong - It is the file format achieved. 
    Please advise.
    Thanks,
    RP. 
    Attachments:
    Right.docx ‏17 KB
    Wrong.docx ‏16 KB

  • Unable to find preferences in ichat to add another account?

    Have ichat, with mac.com account, want to add a jabber on too. Know how to do that, but only little buddies list opens when open ichat - how do I find preferences?! May be being really dense but just cant find it...
    Thanks for your help
    x

    Hi,
    To a certain extent this does depend on what you mean by Combined ?
    There is a Add-on called Chax that will let you create an "All Contacts" List where you can then have AIM and Jabber Buddies in one list (you then Hide the other Buddy Lists)
    The Add-on adds s pane to the iChat Preferences. You turn on the Option there - THEN - you use the Window Menu for the All Contacts List.
    This still will not let you Text Chat - or any other sort of Chat - from an AIM Screen name to a Jabber one.
    For Text Chatting only it i possible using things called Transports to Link the Jabber service to the AIM (Or MSN/Yahoo) one.
    This is not so much difficult but involved.
    Instructions
    This will not work for Video or Audio Chatting.
    10:29 PM      Thursday; May 26, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Cannot get the past dialogue box to open in illustrator since upgrading to Yosemite. Click it but nothing happens. Also File Open works intermittently. Is this a finder preference issue?

    Cannot get the past dialogue box to open in illustrator since upgrading to Yosemite. Click it but nothing happens. Also File Open works intermittently. Is this a finder preference issue?

    one of those days --- it's the PLACE dialogue box

  • Finder preferences: How do I just DBL click folder to get a new window

    I don't want to have to push cmd and click folders Every time I want a folder to open in a new window. I want a New Window EVERY time I dbl click a folder, as I have done for as long as I can remember in Mac system. I like multiple open windows, and don't like being Forced into having to take extra steps every time just to do this task I do Hundreds of times a day.
    Thanks for any help, which these Help screens were Not.
    Open a folder in a new tab or window
    When you open a folder in a Finder window, the folder’s contents usually replace the current contents of the window. If you prefer, you can open a folder in a new tab or window.
    To open a specific folder, press the Command (⌘) key while you double-click the folder.The folder opens in a new tab or window, depending on your Finder preferences. To change the preference, choose Finder > Preferences, click General, then select or deselect “⌘-double-click opens a folder in a new tab.” (Deselect the option if you prefer a new window.)
    To open a new Finder window without opening a specific folder, choose File > New Finder Window or press Command (⌘)–N.
    If a Finder window’s toolbar and sidebar are hidden, then double-clicking a folder in the window (without pressing the Command key) opens the folder in a new window.
    RELATED TOPICS
    Finder preferences 
    ⌘-double-click opens a folder in a new tab
    If this is selected, double-clicking a folder while holding down the Command (⌘) key opens a new tab. If this is deselected, Command (⌘)-double-click opens a new window.

    Helgason: Thank you so much for this solution. I have been using it since March. But I just upgraded to Yosemite. And as you have noted on your website, it breaks the functionality of typing Command-Shift-A to go to Applications and such. Now that Yosemite has officially been released, are you going to create an update?
    Also, an update that returns the green button to being maximize instead of full screen (without having to hold down Option) would also be welcome!

  • Cannot bring up Finder preferences and general Finder issues in Yosemite

    Since installing Yosemite, I've been having multiple issues with the Finder:
    Finder seems to hang occasionally when trying to delete a file
    Finder seems to hang occasionally when trying to empty the trash
    When trying to open the Finder preferences, it either doesn't open or opens a blank panel (with nothing in it)
    Looking at the Console when trying to opening the Finder prefs, I can see this Exception being logged:
    Jan 11 16:15:15 JasonMBPRetina Finder[260]: An uncaught exception was raised
    Jan 11 16:15:15 JasonMBPRetina Finder[260]: *** -[__NSArrayI objectAtIndex:]: index 0 beyond bounds for empty array
    Jan 11 16:15:15 JasonMBPRetina Finder[260]: (
      0   CoreFoundation                      0x00007fff899b864c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8bfe66de objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8989174e -[__NSArrayI objectAtIndex:] + 190
      3   AppKit                              0x00007fff8d931e59 _NSAccessibilityEntryPointValueForAttribute + 1823
      4   AppKit                              0x00007fff8d4b8296 NSAccessibilityChildren + 41
      5   AppKit                              0x00007fff8d4b8246 NSAccessibilityUnignoredChildrenForOnlyChild + 98
      6   AppKit                              0x00007fff8d4b815c NSAccessibilityUnignoredDescendant + 27
      7   AppKit                              0x00007fff8d4b80e2 -[NSNibAXAttributeConnector establishConnection] + 74
      8   AppKit                              0x00007fff8d90cf66 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1065
      9   AppKit                              0x00007fff8d41ef05 loadNib + 384
      10  AppKit                              0x00007fff8d98cf80 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
      11  AppKit                              0x00007fff8d98d67d +[NSBundle(NSNibLoadingInternal) _loadNibFile:externalNameTable:options:withZone:] + 150
      12  AppKit                              0x00007fff8d65efed -[NSWindowController loadWindow] + 313
      13  AppKit                              0x00007fff8d664684 -[NSWindowController window] + 80
      14  Finder                              0x0000000101dc5a14 Finder + 1604116
      15  Finder                              0x0000000101dc59e5 Finder + 1604069
      16  libsystem_trace.dylib               0x00007fff88d74cd7 _os_activity_initiate + 75
      17  AppKit                              0x00007fff8d60a497 -[NSApplication sendAction:to:from:] + 410
      18  AppKit                              0x00007fff8d6245da -[NSMenuItem _corePerformAction] + 382
      19  AppKit                              0x00007fff8d6242f7 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 114
      20  libsystem_trace.dylib               0x00007fff88d74cd7 _os_activity_initiate + 75
      21  AppKit                              0x00007fff8d671b96 -[NSMenu performActionForItemAtIndex:] + 131
      22  AppKit                              0x00007fff8d671b06 -[NSMenu _internalPerformActionForItemAtIndex:] + 35
      23  AppKit                              0x00007fff8d671952 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 107
      24  AppKit                              0x00007fff8d619eeb NSSLMMenuEventHandler + 724
      25  HIToolbox                           0x00007fff9593e32c _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1260
      26  HIToolbox                           0x00007fff9593d76e _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec + 386
      27  HIToolbox                           0x00007fff95952286 SendEventToEventTarget + 40
      28  HIToolbox                           0x00007fff95987795 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueEventRef + 428
      29  HIToolbox                           0x00007fff959bae8d SendMenuCommandWithContextAndModifiers + 59
      30  HIToolbox                           0x00007fff959bae34 SendMenuItemSelectedEvent + 188
      31  HIToolbox                           0x00007fff959bad06 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 96
      32  HIToolbox                           0x00007fff959c28b1 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 702
      33  HIToolbox                           0x00007fff959c249e _HandleMenuSelection2 + 446
      34  AppKit                              0x00007fff8d59fd1e _NSHandleCarbonMenuEvent + 277
      35  AppKit                              0x00007fff8d43ba40 _DPSNextEvent + 1843
      36  AppKit                              0x00007fff8d43ae80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
      37  AppKit                              0x00007fff8d42ee23 -[NSApplication run] + 594
      38  AppKit                              0x00007fff8d41a2d4 NSApplicationMain + 1832
      39  Finder                              0x0000000101c43960 Finder + 22880
      40  libdyld.dylib                       0x00007fff8c2045c9 start + 1
      41  ???                                 0x0000000000000001 0x0 + 1
    Can anyone help?

    Do a backup.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.finder.plist.  Move the .plist to your desktop.
    Re-launch Finder by restarting and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer one.
    Thanks to leonie for some information contained in this. 

Maybe you are looking for

  • USB MIDI not working in Windows 7 Pro 64-bit

    The problem is that even though my devices are recognized in Control Panel/ Sound and in Device Manager, no MIDI data actually flows and I cannot sync my keyboard to the Yamaha software that edits it.  The error message in the Yamaha software reads “

  • Output from Web, Printing OR Export to Excel

    Hi. A minimum requirement for GoLive of our Web project is that there should be some way of outputting the result of the query, and for the time being we can live with it being EITHER printing OR Export to Excel. (Output to Excel means output to 'pro

  • Mobilme and Outlook 2010 on Windows 7

    When I open up Outlook 2010, I am receiving a message stating that the Mobileme service has stopped working. How do I fix this issue?

  • ITunes crashes my computer all the time.

    I have installed itunes on my desktop and my laptop. When I got my ipod touch I connected it to my desktop and started getting things going. Since then, everytime I plug my touch to my desktop, it crashes. (not just itunes, my whole computer). Unfort

  • Bar code input missing

    Hi experts,   I am scanning a barcode into one of the i/o field of a dialog program. The field is afru_rueck.I got the field directly from dictionary while designing the setting screen. The problem is the last digit of the scanned input is getting re