Randomly placed icons in folder

Greetings
I got a problem with my folders. When I open for example my finder, my folders are all placed randomly. Sometimes there is like 1 icon on 1 line and on the line below there are 3.
I think I'm a little bit futher than all those people who say there icons/folders are messed up;
This problem started when I hided my invisible files. So first I entered that specific code to see invisibly files, then, I've hidden them again because there were too much files and it was a bit messy. So I'm pretty sure my icons/folders get placed randomly like that, because in the open spaces, there would be those files which are invisible again.
Does someone know how to fix this?  It would be easier if apple gave us the option to arrange icons by visible and invisible;

Invisible files are invisible for a reason. It protects them from inadvertent damage by unknowledgeable users. The sort order, which is what you are dealing with is controled by invisible .DS-Store files, in each folder and can be different for each different folder view. You should be able to "fix" the display by going to the Finder menu > View. There you will find an option to
Clean up selection
Clean up by... and a list of options
Sort by... and a list of options including snap to grid
A few seconds time spent with these finder options should straighten out your problem -- for the one folder only. Unfortunately that will have to be repeated for each folder that has a .DSStore file. There are utilities such as Cocktail, OnyX, TinkerTool, TinkerTool System, and MacPilot that will drill down through all your folders and delete the .DS-Store files essentially allowing you to start over.

Similar Messages

  • I keep getting this message:  the photos have ben placed in th folder /users/debbiecampbell/pictures/iphtot librry recovered photos_11.  68 photos found in iphoto library that were not imported.  Everytime I ope iPhoto I get this message.

    I keep getting this message: 
    The photos have been placed in the folder /users/debbiecampbell/pictures/iphtot librry recovered photos_11.  68 photos found in iphoto library that were not imported.  Everytime I open iPhoto I get this message.  I have deleted the recovered folders numerous times.  A new one is made each time I open iPhoto.

    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Import' or 'Importing'.
    Drag it to the Desktop. *Make no other changes*.
    Start iPhoto. Does that help?
    If it does then look inside that folder on your desktop. Does it contain anything you want? If not you can trash the folder.
    Regards
    TD

  • Output with line breaks seemingly randomly placed

    Hola -
    I've adapted Tyler Muth's RSS feed article (http://tylermuth.wordpress.com/2008/01/22/producing-rss-from-plsql/) for the most part successfully; however, my output has breaks in the lines at inappropriate places, often in the mddle of an XML element tag for example. The placement of the breaks varies if I change the values of l_idx, l_len, l_defrows, l_maxrows, and l_desclen, but the breaks persist. They're not reflected in the code below but I've added the utl_file.fflush to no good effect.
    Examples of broken output:
    <pre>
    <title>Three
    prehistoric inventions that shaped us /</title>
    <guid
    isPermaLink="false">226402455778123622</guid>
    <pubDate>Thu, 04 Aug 2011 12:36:22
    EST</pubDate>
    <guid isPermaLink="fal
    se">220922455778123622</guid>
    <item
    >
    </pre>
    It's a lot of data so I won't post it here, but here's the code & the table; any ideas as to where to start investigating will be greatly appreciated.
    Code:
    create or replace
    PROCEDURE "RSSLOOP3" ( fund_in IN VARCHAR2, fund_in2 IN VARCHAR2 := 'XXX')
    is
    -- customizable parameters
    l_title varchar2(255) := ' New Titles Since ' || to_char(sysdate - 90, 'MM/DD/YYYY');
    l_link varchar2(255) := 'replace this' || fund_in || '.rss';
    l_description varchar2(255) := 'This is a feed of changes to items ' || fund_in;
    l_language varchar2(255) := 'en-us';
    -- end customizable parameters
    l_version varchar2(10) := '2.0';
    l_clob clob;
    l_idx pls_integer := 1;
    l_len pls_integer := 255;
    l_defrows pls_integer := 100;
    l_maxrows pls_integer := 100;
    l_desclen pls_integer := 250;
    -- for output to file
    fh UTL_FILE.FILE_TYPE;
    path VARCHAR2(30);
    filename VARCHAR2(30);
    begin
    path := '/http/live/screens/rss/';
    filename := fund_in || '.rss';
    fh := UTL_FILE.FOPEN(path, filename, 'w');
    for i in (
    select xmlelement( "rss",
    -- Begin XML Header Block
    xmlattributes( l_version as "version"),
    xmlelement( "channel",
    xmlforest( l_title as "title",
    l_link as "link",
    l_description as "description",
    l_language as "language"),
    -- End XML Header Block
    -- Begin List of Individual Articles or Items
    xmlagg(
    xmlelement( "item",
    xmlelement("title", x.title),
    xmlelement("link", x.link),
    xmlelement("description", convert(x.description, 'UTF8', 'AL32UTF8')),
    xmlelement("callnum", x.callnum),
    xmlelement("pubDate", to_char(x.updated_on,'Dy, DD Mon RRRR hh24:mi:ss')),
    xmlelement("guid", XMLATTRIBUTES('false' as "isPermaLink"),x.id||to_char(x.updated_on,'JHH24MISS'))
    -- End List of Individual Articles or Items
    ) as result
    from ( -- Actual Database Query that populates the list of Items
    select id,title,link,description,updated_on, callnum
    from drx_rss_feeds
    where (fund like fund_in||'%')
    and rownum < (l_maxrows+1)) x)
    loop
    l_clob := xmltype.extract(i.result,'/').getclobval;
    exit;
    end loop; --i
    --- OUTPUT RESULTS
    for i in 1..ceil(dbms_lob.getlength(l_clob)/l_len) loop
    UTL_FILE.PUT_LINE(fh,(substr(l_clob,l_idx,l_len)));
    l_idx := l_idx + l_len;
    end loop; --i
    UTL_FILE.FCLOSE(fh);
    end rssloop3;
    Table:
    CREATE TABLE "DRX_RSS_FEEDS"
    "ID" VARCHAR2(32 BYTE),
    "TITLE" VARCHAR2(255 BYTE),
    "DESCRIPTION" VARCHAR2(4000 BYTE),
    "LINK" VARCHAR2(1000 BYTE),
    "AUTHOR" VARCHAR2(255 BYTE),
    "UPDATED_ON" DATE,
    "CALLNUM" VARCHAR2(255 BYTE),
    "FUND" VARCHAR2(10 BYTE)
    )

    Or have a look at the Oracle Documentation, for instance at the parameters for utl_file.fopen
    max_linesize Maximum number of characters for each line, including the
    newline character, for this file (minimum value 1, maximum
    value 32767). If unspecified, Oracle supplies a default value of
    1024.It wouldn't surprise me if your randomly placed line breaks are all 1023 characters a part.
    Anton

  • I DON'T SEE FIREFOX ICONS OR FOLDER IN START MENU, DESK TOP OR TASK BAR. HOW CAN I INSTALL THOSE? OR WHERE I CAN START FIREFOX BROWSER?

    I DON'T SEE FIREFOX ICONS OR FOLDER IN START MENU, DESK TOP OR TASK BAR. HOW CAN I INSTALL THOSE? OR WHERE I CAN START FIREFOX BROWSER?
    How can I start or open Firefox?

    HI SBPARK,
    When you installed Firefox, did you uncheck the option to create a short cut?
    In order to pin to the toolbar, when you have Firefox open, right click on the icon in the bar and select "Pin to task bar".

  • Last App Placed in a Folder Wont Stay in Folder.  What's the fix?

    Using original iPad.  For some reason, whenever i power down and restart, the last app that I placed in a folder is back on the homescreen outside of the folder.  I've done resets, upgraded OS to latest version, etc.  Wiped clean, started from scratch, still get this issue.  Any fix to it?

    [http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html Google Toolbar no longer supported in Firefox.]
    However, I am able to get Google Toolbar to work in Firefox 6.0.2, the problem is Google Bookmarks is requesting sign in details.
    It seems to be due to a change in google login link. The solution given at [https://support.mozilla.com/en-US/questions/875112#answer-246030|https://support.mozilla.com/en-US/questions/875112#answer-246030] works for PC, so how do I do this on my Mac?

  • The photo has been placed in the folder /Users//Pictures/iPhoto Library.photolibrary Recovered Photos.

    Can anyone help? I gather a couple of pictures were corrupted in my library and since then every time I open iphoto the following message appears
    "The photo has been placed in the folder /Users/evabosch/Pictures/iPhoto Library.photolibrary Recovered Photos." Then a folder is created with nothing inside.
    I can of course delete the folders but I would like to clean the system of this.
    Thank you!
    OSX 10.9.5

    Quit iPhoto if it is open.
    Hold down the ⌘ (command) and option keys while you open iPhoto to open iPhoto Library First Aid.
    Read and follow the instructions. I recommend the "Repair Database" option.

  • Add icon to Folder (works on 10.6 but not 10.8)

    I'm trying to create a folder and then add an icon. the script below works without a problem once the developer tools are installed on OSX 10.6, many thanks to help from the forum. However it doesn't work on OSX 10.8
    Is it possible to get it to work on 10.6 through to 10.8
    set folderIcon to (((path to me) as text) & "Contents:Resources:Icons:folder.icns") as alias
    tell application "Finder"
      make folder at (path to desktop) with properties {name:"hello"}
              my (setCustomIcon from folderIcon to the result)
    end tell
    to setCustomIcon from imageFile to destination
              Set the icon of a destination file item to the image contained in imageFile
                        parameters -                    imageFile [various]:          an imagefile for the icon (Finder alias or POSIX text)
                                                      destination [various]:          a destination item to set to the icon (Finder alias or POSIX text)
                        returns [boolean]:          true if icon is set, false otherwise
              set imageFile to imageFile as text
              if imageFile starts with "/" then -- check for POSIX file
                        set imageFile to imageFile as POSIX file as alias
              else
                        set imageFile to imageFile as alias
              end if
              set destination to destination as text
              if destination does not start with "/" then -- check for POSIX file
                        set destination to POSIX path of destination
              end if
              try
                        tell application "Finder" -- copy the icon image to a temporary file
                                  (duplicate imageFile to (path to temporary items) with replacing) as alias
                                  set tempImage to quoted form of POSIX path of the result
                        end tell
                        set tempResource to quoted form of (POSIX path of (((path to temporary items) as text) & "TempResource"))
      do shell script "/usr/bin/sips -i " & tempImage -- add a Finder icon to the image
                        do shell script "/Developer/Tools/DeRez -only icns " & tempImage & " > " & tempResource -- get the icon resource
      do shell script "/usr/bin/file " & quoted form of destination -- determine the destination file type
                        if the result contains "directory" then -- folder
                                  set theTarget to quoted form of (destination & "/Icon" & return) -- create Icon\r file
                                  set Command to "rm " & theTarget & "; " -- remove any existing custom icon
                                  set Command to Command & "/Developer/Tools/Rez -a " & tempResource & " -o " & theTarget & "; " -- add resource file to a folder
                                  set Command to Command & "/Developer/Tools/SetFile -a V " & theTarget & "; " -- make it invisible
                        else -- file
                                  set Command to "/Developer/Tools/Rez -a " & tempResource & " -o " & quoted form of destination & "; " -- add resource to a file
                        end if
                        set Command to Command & "/Developer/Tools/SetFile -a C " & quoted form of destination -- set custom icon attribute
      do shell script Command -- do it
              on error errmess number errnum -- oops
      log errmess
      -- display alert "Error " & errnum message errmess buttons {"OK"}
                        return false
              end try
              try -- remove temporary files
      do shell script "rm " & tempImage & space & tempResource
              end try
              tell application "Finder" to update (destination as POSIX file)
              return true
    end setCustomIcon

    Hello
    Not that I can help you to adjust the code for 10.8...
    Here's a script that should work under 10.5 or later. (Actually 10.4 or later with additional install of RubyCocoa.)
    --applescript set imagef to (path to me)'s POSIX path & "Contents/Resources/Icons/folder.icns" --set imagef to (path to desktop)'s POSIX path & "folder.icns"  tell application "Finder"     make new folder at (path to desktop) with properties {name:"hello"}     my setIcon((result as alias)'s POSIX path, imagef) end tell  on setIcon(f, imagef)     (*         string f : POSIX path of target file or folder         string imagef : POSIX path of image file     *)     set rb to "require 'osx/cocoa' include OSX raise ArgumentError, %Q[Usage: $0 <file> <image file>] unless ARGV.length == 2 file, imagef = ARGV image = NSImage.alloc.initWithContentsOfFile(imagef) NSWorkspace.sharedWorkspace.objc_send(     :setIcon, image,     :forFile, file,     :options, 0) "     do shell script "/usr/bin/ruby -e " & rb's quoted form & " " & f's quoted form & " " & imagef's quoted form end setIcon --end of applescript
    Hope this may be of some help,
    H
    How can I make it work for more than one icon to folder?
    A the top you set the varible imagef and then it gets used again in the handler, what if I had imageg imagej etc? how could I do this but keep it simple?
    Many thanks nonetheless as this works very well so far for me on 10.6 and 10.8

  • How do I prevent Firefox from using random, incorrect icons? (Win8.1)

    I have this strange problem where Firefox (v30.0) is using random, incorrect icons both in the GUI and on certain web pages (especially Gmail). When I use the mouse to hover over the icon it then switches to the correct icon. I've tried restarting Firefox, reinstalling Firefox, reinstalling Firefox with reboot, nothing helps. I can't find anything on this in user forums. These seems to have just occurred in the past 2 weeks, not sure if there was a Firefox update involved.
    Thank you for the help!

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Workaround: want folder icons instead of random pile icons in dock?

    If you don't like the look of the (random) icons that appear for the piles you create in the dock, here's a workaround that should work.
    Create a folder that you name 1a.
    Put it in the pile
    Sort the pile by name.
    The 1a folder should appear first in line, with a nice folder icon.
    Cheers,
    mark

    Or Stacks Overlays.

  • PS CS3 random errors with Lightroom folder when making contact sheets

    When I make contact sheets in Photoshop CS3 of photo files in a folder of images exported from Lightrom Beta 2, it places some of the pictures randomly across the contact sheets, especially when I have more than 60 or more images. The first shot will always show at the end of the set of proofs 5 across, 6 rows down, but some images from the end of atake will end up scattered across the other sheets. If I make a set of contact sheets from images in a folder of the original images, not worked on in Lightroom, they come up perfectly. What can I do to fix this? I had it working OK in Lightroom Beta 1. I'm Working in PC XPSP3. A thousand thanks in advance. Cliff Moore

    First, LR3 final has been released.
    This doesn't seem to be a problem of LR, rather Photoshop.
    Why don't you make the contact sheet in Lightroom?
    Why do you think the order is incorrect. Did you check the file names? I guess the order depends on this.

  • How to display the icon as folder in tree table representation

    Hi,
    I am displaying the hierarchical structure for one table in which the expanding comes like normal ">". But i want to make it like folder icon.How is it possible plz suggest me.
    Thanks,
    Harsh

    The folder icons are added in the node stamp of the tree table.
    <f:facet name="nodeStamp">
      <af:column headerText="Directory Name" width="200" sortable="true" rowHeader="unstyled"
      sortProperty="name" id="c2">
      <af:panelGroupLayout id="pgl2">
      <af:image source="#{directory.icon}" id="nodeIcon"
      inlineStyle="margin-right:3px; vertical-align:middle; height:16px; width:16px;"
      shortDesc="directory"/>
      <af:outputText id="directoryStamp" inlineStyle="vertical-align:middle" value="#{directory.name}"/>
      </af:panelGroupLayout>
      </af:column>
      </f:facet>
    You can see the full source if you click the 'view source' link in the menu bar of the demo.
    Timo

  • Ipod nano shows icon of folder with exclamation mark on start nd then shuts

    i just got a new ipod nano i tried to start it after charging it but it shows me an icon of a folder with an exclamation mark and then shuts off.can nybody pls tell me how to d the entire setup from the start to end please

    All i can suggest is that you try and restore it on another computer (maybe a PC) and see if it fixes the problem. I am a service technician and I've done pretty much all the things you've tried on a iPod Video and still had to replace it so it looks like that'll be what you need to do.

  • Download step 2 says drag icon to folder when prompted, never got icon or prompt

    I have a new macbook pro and am trying to download fire fox. It seems to have downloaded but step 2 says "when prompted drag icon into applications folder. After it finished downloading I never got an icon to move to the folder and there was no prompt. What do I do??????

    See:
    * https://support.mozilla.com/kb/Installing+Firefox+on+Mac
    * http://kb.mozillazine.org/Installing_Firefox#Mac_OS_X

  • Random placing of imported tracks in library

    When importing some cd`s the individual tracks are placed randomly in the library instead of in the correct order under the album title.  Other cd`s import perfectly.  Am I doing something wrong ? Can I rearrange the tracks under the Album title once theyare in the library?  All advice grately received as this is getting very frustrating.

    Problem solved. I was listing the albums by artist rather than albums and with compilation albums the system was looking for the artist and placing the tune there or putting it in alphabetical order.  Thanks to apple support who set me straight.  Ringmore

  • How to keep icon on folder when i use yousendit or email?

    Hi there,
    I am trying to email or yousend a folder to a client and when i do they can not see icon i have put on the folder... is there any way of keeping the picture there?

    If the Leave on Server option is not there you are using an IMAP email account. IMAP is server based. You remotely view message with your computer or phones. When you delete a message from any device it is gone.
    I suggest you learn about the differences between POP and IMAP email and decide what works best for you.

Maybe you are looking for

  • Kodak CD Plugin for CS5 or CS

    I have a number of files with the extension:  .pcd  My research so far tells me this is a Kodak extension for images.  It also was suggested that such files can be opened in CS6 with a Kodak CD plugin.  I have had no luck locating such a plugin.  Sug

  • How to recover files ereased by sync from iPhon?

    Please see history: http://discussions.apple.com/thread.jspa?threadID=1724715&tstart=0

  • Adjust Date/Batch Change

    Since upgrading to iPhoto 11 (9.2), I can no longer adjust the date on my photos.  I had thousands of photos scanned in and I am trying to correct the date from the date scanned to the date taken (which I have on paper).  I could always do this befor

  • Airport Extreme keeps loosing signal

    I'm pretty sure there's a couple of postings about my situation. I have the airport extreme (white cone) connected to my Mac Mini and Macbook. I recently upgraded to the lasted updates. I noticed that my macbook keeps on loosing the signal and it won

  • How to write a script for adding a percentage?

    I have a simple form where I need a cell to automattically add a percentage to a different cell. For example in Excel my expression is: =SUM(E9*0.014)  [90*1.4%= 1.26] where as Cell E9 will be the amount I need the percentage to added to.  Header 1 H