Inconsistent folder appearance options

I have a number of folders on my desktop. Some of these open with the sidebar and open the way I want them to - by opening the next folder I click on in the same window. However, the other folders on my desktop don't appear with the sidebar when opened, and each time a click a folder within that folder, it opens in a new window.
I have checked the Finder options, and Always open in a new window is unchecked.
I don't know what to do.

Greetings,
MyiPodisNotYouriPod wrote:
I have a number of folders on my desktop. Some of these open with the sidebar and open the way I want them to - by opening the next folder I click on in the same window. However, the other folders on my desktop don't appear with the sidebar when opened, and each time a click a folder within that folder, it opens in a new window.
I have checked the Finder options, and Always open in a new window is unchecked.
I don't know what to do.
Open a folder that does not open the way you want (i.e., no sidebar). In the upper righthand corner of the title bar there is a little silver gray horizontal oval button. Click it. Your sidebar should now be displayed for that window, and your open folder action should work the way you want, open in the same window.
You would likely have to do this for each folder that exhibits the actions you don't want.
Regards

Similar Messages

  • Drag drop photo import to aperture folder why auto new project folder appear .

    i do import photos from desktop  to folder that i want in the aperture libary  . as soon as i drag and drop photos automatically new peoject folder appear in the libabry as name untitled project.. why? i dont want that new project folder.  i try to delete that folder and my picture all automatically deleted from library.
    also if i try to delete photos from preject folder .. it completely deleted from master library .. picture will be lost.. why?
    i drag and move pictures to  brand  new album or folder .. then try to delete wanted project folder - master picture are all gone.
    now i have at least 30-40 of untitled project folder in the library ... pictrure are not movable i meant you can move but u still have to keep old project folder to avoid master picture can not be deleted ...
    someone help me? did i make myself clear?

    You might read the manual or the Help as this is all covered there.
    If you want to import to a specific project use the File -> Import option. You can select your destination there.
    Every photo in a Library is in a project. Projects are the basic building block of the Library. That's why.
    Folders don't contain photos. They can contain Projects or Albums. These contain photos. Albums don't contain the actual photos, just links to them. So if you add a photo to an Album and then delete the project... you delete the photo.
    Remember: you don't move photos to an Album, you add them.
    Regards
    TD

  • ITunes 12.1.0.71 broke "Keep iTunes Media folder organized" option

    After upgrading to iTunes 12.1.0.71 (64 bit) on my PC, iTunes is no longer organizing my iTunes media folder.
    Example:
    I drop a video into "automatically add to iTunes" folder
    Video appears as a Home Video in iTunes as expected
    I go into "get info" > Options for the video and set the Media Kind to "Movie"
    Video now appears in the Movie lists, however(!)
    iTunes does NOT move the file out of iTunes/Home Videos into iTunes/Movies on my hard drive like it used to
    So now I have Movies piling up in the "Home Video" folder instead of getting auto-sorted correctly. The "Keep iTunes Media folder organized" option I have enabled in preferences is, obviously, not working.
    This is happening for "TV Shows" as well. In addition, I can no longer set disc (season) and track (episode) numbers for TV Shows so that they're renamed with the season/episode numbers in front of the episode name. There used to be a work-around where I would shift-click "Get Info" to get into the old style pane / control panel, but this no longer works. I can't figure out how to rename files from within iTunes to force the issue. If I rename the files by hand before importing into iTunes, iTunes erases the disc/track numbers off the front of the filenames.
    Does anyone know what's wrong? Why are my videos not auto-sorting into the correct folder / sub-folder hierarchy on my hard drive? Why is everything piling up in my "Home Video" folder even though iTunes has been told that they are NOT home videos? Help!

    iTunes 12.0 had an issue with not moving video files around after tag/media kind changes. That seems unchanged. A workaround is to uncheck the Keep organized option, click OK, then set it active again.
    The iTunes 12.1 version of Get Info appears, at first glance, to include all of the properties that were only available in the old school get info dialog in the previous version. Also gone are the Add Field button for optionally enabled fields, and the autocomplete on space bug. The old dialog doesn't seem to be available from any keyboard combination, although I quite possibly haven't tried everything.
    tt2

  • Working in Pages a folder with the Pages icon in a folder appeared on my desktop  I cannot move it delete it do anything to it. Any idea what it might be? Thank you.

    While working in Pages a folder appeared on my desktop with the Pages icon on it. I don't know how it got there. It will not let me move it on the desktop. I will not let me delete it. It will not let me do anything to it. Any idea what I might have done to create this alien?
    Any help greatly appreciated with thanks in advance.

    Restart Finder by pressing option +  command + Esc. Select Finder int he window that pops up and click on the Start/restart button.
    You could also try deleting the com.apple.finder.plist file from Users > your name > Library > Preferences
    Restarting the computer in safe mode , press the Shift key just after you heard the start chime. Keep it pressed until you see the grey apple. See if the folder is gone or can be moved.

  • How do I find out if Keep Itunes Media Folder Organized option is enabled programtically

    How do I find out if Keep Itunes Media Folder Organized option is enabled on Windows. My Java application needs to know this because it effects how it should interact with iTunes and last time I looked the api provided by the iTunes.dll doesnt provide this information.
    I have made some progress looking at iTunesPrefs.xml which stores preferences in a binary plist format and have mananged to extract the location of the iTunes xml file using a Java library called dd-plist
    public File getITunesXMLFile()
            System.getProperties().list(System.out);
            String homedir = System.getProperty("user.home");
            File prefsFile = new File(homedir,"AppData/Roaming/Apple Computer/iTunes/iTunesPrefs.xml");
            File xmlFile;
            try
                NSDictionary rootDict = (NSDictionary) PropertyListParser.parse(prefsFile);
                NSDictionary userPrefs = (NSDictionary) rootDict.objectForKey("User Preferences");
                if(userPrefs!=null)
                    NSData iTunesLocation = (NSData) userPrefs.objectForKey("iTunes Library XML Location:1");
                    if(iTunesLocation!=null)
                        String base64 = iTunesLocation.getBase64EncodedData();
                        String filepath = new String(Base64.decodeBase64(base64),"UTF-16LE");
                        xmlFile = new File(filepath);
                        System.out.println(filepath+":File Exists:"+xmlFile.exists());
                        if (xmlFile.exists())
                            return xmlFile;
            catch(Exception ex)
                ex.printStackTrace();
                //Use default then
                xmlFile = new File(homedir + "/Music/iTunes/iTunes Music Library.xml");
                if (xmlFile.exists())
                    return xmlFile;
            return null;
    However the Keep Itunes Media Folder Organized option appears to be stored in the Documents:132 key with other options and this library doesnt seem able to decode the daat into a  base64encoded value. I did think I could just compare differences between the file after enabling/disabling the option in iTunes, but the results are inconclusive - sometimes after chnaging the option the preferences file doesnt seem to change.
    Is there a known hack for this ?

    Thanks that certainly a possible workaround that I can see working but Im not that keen on using a users file as a test file, or adding a file myself that I have to keep deleting.
    The thing is I'm very close, I've found a library that can read the binary xml format to some degree, and managed to decode the Xml Library File sucessfullly (but I don't need to this as available as the in the COM lib anyway as itunes.getLibraryXMLPath())
    but I cannot decode this option whihc is lumped in with others, real shame they dont provide it via the COM lib.
    Added this link showing progress in case interested:
    http://stackoverflow.com/questions/17957433/how-can-i-work-out-if-ituneskeep-itu nes-folder-organized-is-set-programmaticall

  • On Program Start Initial Folder Appears on Desktop ?

    Windows 7, i install itunes and run it, i get a my music folder appear on the desktop, inside it has itunes folder, then inside that album artwork folder, itunes media folder and 4 files libary extras, libary genius, libary and music libary.
    i cannot seem to move it or delete it as then when i run itunes again it recreates this folder ???

    A likley reason for the media folder appearing on the desktop is that it can't be accessed/created where it is supposed to be. This can sometimes happen with libraries that have been migrated from one user or system to another.
    Repair Permissions for the iTunes & iTunes Media folders
    Right-click on your main iTunes folder (normally in <User's Music> and click Properties,  then go to the Security tab and click Advanced. Use the Change Permissions... button grant to your account (or the Users group) and SYSTEM full control of this folder, subfolders and files, then tick the option to Replace permissions entries... which will repair permissions throughout the library. When complete switch to the General tab, click in the Read-only check box to clear it, then click Apply.
    If you don't have the option to change the permissions then use the Owner tab and Edit... button to take ownership from an account with administrator privileges. Tick the option to Replace owner on subcontainers and objects.
    Repeat with the media folder if it isn't stored inside the main iTunes folder. Check under Edit > Preferences > Advanced if you're not sure.
    Obviously if the media folder is set to the desktop in preferences that would also account for your observations...
    tt2

  • "myname's macbook pro folder" appeared on desktop, how to remove it?

    Suddendly a folder "myname's macbook pro" folder appeared on desktop, if I try to remove it, after some minutes it comes back. I'd like to know how to get rid of it, thanks
    Andy

    I'm also not a stupid kid, but everyone spills at least one thing on their laptop or their computers in their lifetimes.
    Everyone? I doubt it. Many of us are careful not to let food or drink near our computers.
    The computer still works , and the drink must be dry by now.
    Apparently the drink did not get beyond the keyboard, which is good. You have a couple of options:
    1. Use a damp (not wet) cloth to gently wipe around the keys and the trackpad being careful that there is no water seepage. (Simply take your Apple cleaning cloth or similar lint-free cloth, sprinkle a few drops of water on it, rub it together to spread the moisture). Let it dry out completely for at least 30 minutes, then repeat the procedure as often as needed. If this does not remove the residue of juice go to
    2. Replace the entire keyboard. You may be able to find reasonably priced replacements on eBay. (Some people report putting the entire keyboard sans ribbon cable, in the diskwasher then letting it dry out completely. I am not suggesting or recommending procedure unless you are willing to replace the keyboard if it does not work after the procedure).
    cornelius

  • Minor problem - I have 4 folders in the dock, but when I press on the icons for two of them, there is no choice of "display as folder" or "options". Can somebody tell me why not? Thanks!

    I have four folders in the dock. Two are fine. The other two of them will not allow me to press on the stack's icons to view the commands "Display as Folder" or "Options". Can somebody help me out with this minor problem?
    Thanks!

    Are you right - clicking (control-clicking) them? The following should appear if you do that, and allow you to change the folder's appearance in the Dock:

  • Applications folder appears opaque

    DoubleClick MacHD icon. Applications folder appears opaque. Doesn't opne. Sidebar Applictaions icon doesn't open. Applications only available via GO drop down menu.

    Do a backup.
    Quit the application.
    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 Preferences/com.apple.finder.plist. Move the .plist to your desktop.
    Restart 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.
    You might need to redo the View settings after an update.

  • TS3230 Why aren't Google and Yahoo loading in Safari with Maverics?  After several failed attempts, a "wireless diagnostics" zipped folder appeared on my desktop.  I'm using a macbook pro with OSX 10.9.2

    I updated to Maverics and now yahoo and google do not load in Safari - i get a "connot connect to server" warning.  other websites load just fine. 
    Also, after several attempts to access the aforementioned sites, a zipped file/folder appeared on my desktop titled "WirelessDiagnostics"
    What in the world is going on here?  I attached a screenshot of the zip file.

    Double-click anywhere in the line of text below on this page to select it, then copy it to the Clipboard by pressing the key combination command-C:
    www.google.com
    Launch the Network Utility application.
    Step 1
    Select the Lookup tab and paste into the address field (command-V). Press return. Post the output that appears below – the text, please, not a screenshot.
    Step 2
    Select the Ping tab and do the same. Please enter the same input as you did in Step 1. Don't use the output of Step 1 as input to Step 2.
    Important Note
    Some web browsers and mail clients will automatically convert a domain name such as "www.example.com" to a clickable URL, such as http://www.example.com. That will interfere with the test. If necessary, edit the input in the Network Utility window to remove any added characters.

  • How to make a Shared mailbox folder appear on everyones mailbox automatically

    Hello, I need to find a way for a Shared mailbox
    folder to appear in everyone’s mailbox automatically – preferably in their favorites. We currently have a Public Folder where everyone in the company can drag or email any suspicious, fishing, etc.
    emails. Unfortunately that is not good enough for our company's upper management. They
    wants me to find a way to add a folder on everyone’s mailbox so they can easily find it under their favorites and drag any questionable messages to it.
    I created a Shared mailbox for this purpose and a folder and I gave everyone access to it. Now
    I’m not sure how to make this folder appear automatically in everyone’s mailbox favorites. If there is a way to accomplish this I would appreciate any suggestions.  I wonder if there is a
    powershellcmdlet that can help me do this. Any assistance will be greatly appreciated. For now we are running on a mix environment Exchange 2010/2013, but pretty soon it will be 2013 only. Thanks in advance for your assistance.
     

    I wouldn't recommend this method, trust me this might become mess if doesn't go to right direction. People might use this shared mailbox for their
    own use. Best practice is to create a shared mailbox with some sensible name like [email protected] or
    something like that and then share it on the announcement board or send an announcement mail to all users and ask them to forward their spam, suspicious, fishing mails to this address.

  • Post income crashes when "Waiting to update this Folder" appears in the outlook mailbox.

    Post income crashes when "waiting to update this folder" appears in the outlook mailbox (outlook 2007) We have already done the basic troubleshooting of remove the cached exchange mode, this does not resolve the problem. Also we have tried following
    on the MS article of basic troubleshooting
    http://support.microsoft.com/kb/842284 and KB2000071
    Many of the users now are facing this issue. OWA is working fine also mails on Mobile devices are working fine except for outlook client 2007.
    Can any one help.
    Regards,
    Pralhad
    Pralhad

    Hi,
    The Event Viewer can be a great help to determine the root cause of an issue or to find new leads in case regular troubleshooting of Outlook didn’t bring any results.
    Open the Event Viewer:
    Press Win + R and type “eventvwr” in the blank box, then press Enter.
    You may find the Error Entries for Outlook, also Event ID, text description after the crash happens, post the information in the forum and maybe we can find something useful to find the root cause.
    You may know more about Event logs from this article below:
    http://windows.microsoft.com/en-hk/windows/what-information-event-logs-event-viewer#1TC=windows-7
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Why do my image previews in cover flow folder view option look terrible?

    Recently upgraded to OSX 10.6 Snow Leopard and have noticed that image previews look terrible in the cover flow folder view option - work with image files numbering in the thousands and really need this option to work - dosen't seem to matter how long I give the machine to process the preview and can find no consistency in the file type or format the machine seems to have trouble with

    ~/Library/Caches. Quit all applications then delete this folder. If a normal delete doesn't work, do a secure delete (Finder > Secure empty trash {this will take longer})

  • I am having external hard drive and i can't create a new folder.The option crete new folder is foggy

    i am having external hard drive and i can't create a new folder.The option crete new folder is foggy

    Macs can't write to, nor create folders on, NTFS formatted drives without the use of third-party software.
    If you want to maintain the NTFS formatting, try Paragon's NTFS for Mac -> http://www.paragon-software.com/home/ntfs-mac/.
    Good luck,
    Clinton

  • Everytime i run firefox a "Mozilla" folder appears on my desktop, also after loading a page firefox seems to freeze up into a super lag thats approximatly 20sec

    Brand New Machine
    New Harddrive
    New Everything
    I downloaded Firefox, installed it now this happens.
    I have also removed and reinstalled firefox to attempt to fix.
    please help.

    ''Saurav [[#answer-702809|said]]''
    <blockquote>
    What is your operating system ? Windows or LInux?
    </blockquote>
    Look at the upper right and click '''Question details'''
    ''Phrosty [[#question-1051668|said]]''
    <blockquote>
    Everytime i run firefox a "Mozilla" folder appears
    </blockquote>
    Is it just called Mozilla? What is in the folder?
    Also, your System Details shows; Firefox 35. The current is 36.0.1
    '''[http://www.mozilla.org/en-US/firefox/all/ Download Firefox Full Installer For All languages And Systems]''' {web link}

Maybe you are looking for

  • How do I sort alphabetically in Numbers

    I just need to sort a simple column of names in alphabetical order.  There has to be a way to do this right/

  • Including location file in Attachment of IP_MESSAGE_TYPE to B2B

    Dear Reader, I am using SOA suite 10.1.3.4. and B2B 10g configured in Suse. I have made a BPEL proces that enqueues messages using an AQ adapter to the B2B database. For this I need to fill in the IP_MESSAGE_TYPE (payload header) that is required by

  • Function modules for ERMS

    Hi experts, We are configuring ERMS on CRM 5.0 with IC webclient. We need following details for the configurations. 1. what are the techincal specifications for the information we want to pass from the website into ERMS? 2.What function module are us

  • 2 business areas for same accouting doument

    Hi, We have released the Accounting document and we have seen that 2 business area assigned for same accounting document. Customer line item has one business area Remaining GL account has one business area. One thing I need to understand that how cus

  • Help with purchase decision?

    Please direct me to another section if this is not the right one. I've searched for "purchase advice" & other choices, but come up empty. My current system is listed below. (Includes lame VGA monitor.) I'm finding it harder & harder to use my system