How do I strip off custom icons?

I am transitioning to Leopard and a lot of my graphics files have custom icons on them to let me see what they contained.
Cover flow takes these custom icons in preference to a real preview and shows a very pixelated version on screen.
How do I strip them off in bulk, and also preferably reset the file type which was stolen by GraphicConverter when I made the custom preview icons?

To remove icons you could try [CocoThumbX|http://www.versiontracker.com/dyn/moreinfo/macosx/26136]. It has a mode to delete icons.
CocoThumbX, at least the version I tried, didn't create hires icons - for that I used [FastIcns|http://www.versiontracker.com/dyn/moreinfo/macosx/31205]. You can set it up to run in batch mode, which allows you to setup the icon resolution to 512x512.
This worked, and my CoverFlow icons were sharp and crisp.
(One note however: when I used Icon View in the Finder window where I output the hires icons, the window was unbelievably slow (the rest of the Finder was fine). I sent feedback about that to Apple already, but would like to hear if you experience the same issue.

Similar Messages

  • How do I strip off a time format off of a string array

    How do I strip off a the first part of a time format out of a string array. The following is what it looks like
    14 April 2008 10:00:00.000, 30.000,128.591,-145.839
     "       "      "     10:00:01.000, "              "              "
    I tried the read from speadsheet file first. I tried lower level VIs. There must be something simple I am just missing.

    Search for the first comma and take the data before it.
    Message Edited by Ravens Fan on 12-10-2008 04:50 PM
    Attachments:
    Example_VI_BD.png ‏2 KB

  • How can I turn off "customizing request"?

    I'm programming a BDC program for KSV1. When I run the program i got a message saying "customizing request" and the program stops waiting me to put a request number. Is it possible to turn off "customizing request" setting for KSV1? or is there any way to input request number automatically?
    thanks.

    Hi,
    Consult your Basis consultant.He will be able to help you in this case.
    Regards,
    Amrish Purohit

  • How to get rid off custom installed theme completely and revert back to mavericks theme(system default)

    Recently, I tried installing a third party theme in my macbook pro (OSX mavericks_10.9.5 installed). Once installation got over i could notice that it was not properly installed in my retina display so i thought of reinstalling the same. Re-install could not be done properly because the theme was a hacked version. The installer theme packages effected the GUI of my system and thus it upgraded some of my core services applications to its custom theme format. So is there any solution to revert those services back to its default state.? Or is there any any way to get these installed format back to older format(icons and stuffs).?Or will it resolve the issue if i try installing the new OSx Mavericks (Productivity tool) from the AppStore?.Please let me know if you guys have got something the issue.
    Please help me.

    Paul--you are a life-saver!! Worked great. I did have to look around to make sure I was getting 4.9 instead of 4.7 (even when the file was named 4.9 at techspot.com), but I finally got the right file, did the install as you suggested, and everything is now fine. One note, though, that I haven't seen mentioned in any of this thread: when I first tried to open up iTunes after getting back to 4.9, the following message appeared: "The file iTunes Library.itl cannot be read because it was created by a newer version of iTunes." I merely went to the old .itl file that was created when I did the update to iTunes 5, renamed it, moved it over to my now new 4.9, and iTunes opened fine. My library was a few days out of date, because of the few days' lag from the time I did the iTunes update, but that was easily taken care of, and everything's now working fine. Thanks again!!!

  • How can I turn off the icons in the Bookmarks Toolbar? Thanks.

    How can I remove icons from the Bookmarks Toolbar?

    Add code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #personal-bookmarks .bookmark-item > .toolbarbutton-icon {display:none!important}
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)

  • Automatically create folders then attach custom icon to each folder.

    This is my current working script, does anyone know how I can now add customer icons to the folders in Applescript
    Many thanks
    Matt
    set theWeekNumber to ""
    repeat
    display dialog "Please enter the week number:" default answer theWeekNumber
    set theWeekNumber to text returned of result
    try
    if theWeekNumber = "" then error
    set theWeekNumber to theWeekNumber as number
    exit repeat
    on error
    set thePrefix to "INVALID ENTRY! "
    end try
    end repeat
    set theAFolder to "AFolder_WK" & theWeekNumber
    set theBFolder to "BFolder_WK" & theWeekNumber
    set theEnd to "_PSD"
    set theEnd2 to "todo"
    tell application "Finder"
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theAFolder & theEnd}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theBFolder & theEnd}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theAFolder & theEnd2}
    make folder at folder "Studio:Users:matthewchild:Desktop" with properties {name:theBFolder & theEnd2}
    end tell

    The following script uses a handler that will set a custom icon to a file item. In this example, you are prompted for the icon file and the file item to set to the icon, but you can just pass the desired image and folder paths directly to the handler.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFD891;
    overflow: auto;"
    title="this text can be pasted into the AppleScript Editor">
    -- assign an icon to a folder or file (requires Developer Tools)
    -- any image file can be used for the icon
    property startingDirectory : (path to home folder) -- a place for the file choice dialogs to start from
    on run -- example
    try -- check for tools
    get "/Developer/Tools/" as POSIX file as alias
    on error
    error "Developer Tools not installed"
    end try
    set iconFile to (choose file with prompt "Choose an image file for the icon:" default location startingDirectory)
    if (do shell script "/usr/bin/file " & quoted form of POSIX path of iconFile) does not contain "image" then -- check image file
    error "The icon file is not an image"
    end if
    tell application "Automator Runner" to tell open panel -- using this panel allows the choice of a file or folder
    set floating to true
    set can choose directories to true
    set can choose files to true
    set allows multiple selection to false
    call method "setShowsHiddenFiles:" of it with parameters {false}
    set title to "Select an item to set to the custom icon:"
    set prompt to "Set Icon" -- this is actually the button text
    activate
    if (display it in directory startingDirectory) is 0 then -- cancel button
    error number -128
    else
    my (setCustomIcon from iconFile to (it's path names as text)) -- just one item
    end if
    end tell
    end run
    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
    </pre>

  • Custom icon for desktop shortcut

    Hi All,
    I have a link in the portal which when the end users click should create a desktop shortcut to the portal.
    I used this to create the desktop shortcut
    var WshShell = new ActiveXObject("WScript.Shell");
    strDesktop = WshShell.SpecialFolders("Desktop");
    var oShellLink = WshShell.CreateShortcut(strDesktop + "
    Portal.url");
    oShellLink.TargetPath = "URL to the portal";
    oShellLink.Save();
    By default we get the IE icon for this shortcut. I want a custom icon to be associated with this shortcut.
    I can use oShellLink.IconLocation but the icon needs to be in every users c:\windows folder.
    Does somebody know how can I add this custom icon?
    Many Thanks,
    Akhilesh

    Google for Favicon
    "TonyEB" <[email protected]> wrote in
    message
    news:fb57gl$ea4$[email protected]..
    > Hi,
    >
    > How do you incorporate an Icon in to your website so
    that when someone
    > puts a
    > web short cut on their desktop it changes from the
    default to your
    > customized
    > one. Where in DW CS3 do you put this file?
    >
    >
    > Thanks
    >
    > Tony
    >

  • Removing custom icons

    Hey, how can I remove the custom icons which I have customised on folders earlier on?
    I followed the process on Mac101 to customise my icons:
    http://www.apple.com/support/mac101/customize/6/

    Tixx
    Open the Get Info window on the Folder (apple-i) click on the icon to highlight it then apple-x to cut it.
    Regards
    TD

  • Custom icon strip - how to reference it in the HHC?

    I could not get the custom icon strip to work for me. I think that I understood the overall concept but I do not know how to reference the bmp file in the HHC.Ricks Tips and Tricks file only states "make the reference inside the HHC file". Where exactly do I place the <param name="..." value="C:..BMP"> reference?
    Perhaps there is an example?

    Rick,
    thanks for your efforts despite my ignorance! My HHC file does not look like that, it has a different structure without an HTML list. After some fiddeling I got it to work now, even though I still did not find out why my TOC structure does not match yours (the binary TOC option is not active).
    Instead of using the <param name="ImageList" value="C:tocimages.bmp"> line, I inserted the reference into the properties tag. My HHC looks like this now and it works:
    <?xml version="1.0" encoding="utf-8"?>
    <toc version="1.0">
    <properties imagelist="C:tocimages.bmp">
    </properties>
    <item name=".." link="...html">
    (here the TOC items follow)
    </item>
    </toc>

  • How to assign file extension and custom icon to executable?

    Hi all,
    I was reading an old thread about this issue:
    http://forums.ni.com/ni/board/message?board.id=170&thread.id=116925 
    I need to try to do this.  My application uses a custom file extension (i.e. .abc).  Upon installation I would like to:
    1.  Assign My App and custom icon to the file class (extension .abc).
    This could be done by manipluting the registry (http://msdn.microsoft.com/en-us/library/bb776856(VS.85).aspx)?  This could be a problem with Vista s unless registry operations occur during installation any changes are placed in a VirtualStore, correct?
    2.  Enable the double-clicking of .abc file type to pass the data in the file to my VI (exe). 
    According to the File Handling Guidelines of Jean-Pierre Drolet (http://www.openg.org/tiki/tiki-index.php?page=File+Handling+Guidelines) the best way to do this may be using LabVIEW as an ActiveX server.
    I know that when I build an executable (or installer?) there is the option to enable LabVIEW to act as an ActiveX server.  This much I know I need to do.
    I thought I would open this discussion again as others may be interested and there doesn't appear to be a completely clear solution available.  Please do contribute where you can.
    Cheers,
    Battler.

    battler. wrote:
    My application consists of Event Structure.
    How to register for ommand line event so that when a user double-clicks on a .abc file I can handle the opening of it?
    This needs to work (the files need to open) not only when the application is closed but also when it's already open.
    Anyone have ideas? 
    The solution to that is to implement a DDE server in your application (and add DDE entries to the registry on installation). There are still DDE functions in LabVIEW vi.lib\Platform\dde.llb but they are considered depreciated and have been removed from the palette, also because Microsoft is trying to tell everyone that DDE is depreciated and sort of unsupported too. But it is still the mechanisme to pass actions from the shell to running applications.
    I hesitate to send you over to lavag.org where there have been some discussions about this years ago. If you go there you would do good to employ a friendly attitude. That board is run all by enthusiasts and idealists and they are all great folks but react not very friendly to people with an attitude.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How can I get rid of the icons in the bookmarks toolbar in 4.0 so I just have text there (fit more bookmarks in visible portion) but not switch off other icons?

    How can I change the bookmarks toolbar so that it shows only text and not icons (so I can fit more bookmarks on the visible portion) in 4.0 without turning off other icons? This was easy in version 3.

    You can do that with the Bookmarks Deiconizer extension - https://addons.mozilla.org/firefox/addon/bookmarks-deiconizer

  • Muse strips off digimarc copyright in jpeg files saved in photoshop. How do I prevent this from happening?

    In Muse, the digimarc watermark I added in jpegs saved in photoshop get stripped off when uploaded to my website. How can I prevent this from happening? The jpegs are set to their exact size in Muse. Thanks.

    Hello
    My procedure is to resize the original psd file in photoshop, change the mode to 8bits, apply the digimarc filter and then save as jpeg. I place the file in Muse without changing its size and upload. I then right click to save the uploaded image from my website and bring it into photoshop to verify the digimarc watermark. The digimarc filter shows there is no watermark at all.

  • Help, how to make Finder to refresh custom icon programmatically

    Hi
    I have two file both are same name, e.g. 1.rtf, but with different custom icon.
    When I copied the first 1.rtf to an USB drive, the custom icon was displayed correctly.
    However, when copied the second file to the USB drive to replace the first file, Finder still showed the custom icon of the first file.
    How can I solve this issue and how can I make Finder to refresh the custom icon programmatically.
    Thanks

    Hi KT, thanks your reply & help
    but result is same. The following is my experiment
    STEP 1: copy 1.rtf to USB drive, the result is OK.
    STEP 2: copy another 1.rtf to USB drive, Finder still showing the 1st file icon and a little bit blurred
    STEP 3: copy 3rd file without custom icon, the result is OK
    STEP 4: using following code to set its custom icon, the result is still show the custom icon of the 1st file
    [[NSWorkspace sharedWorkspace] setIcon:image forFile:[filePath stringValue]  options:nil];
    It seems that Finder will has some cache to store file's custom icon. If use "Force Quit" to relaunch Finder, it become correct but how can I use program code to refresh it without "Force Quit"?

  • How do I turn off open apps? You use to be able to press the home button twice and then hold the app icon until is vibrated and then turn it off.

    How do I turn off open apps? You use to be able to press the home button twice and then hold the app icon until is vibrated and then turn it off.

    WOW - Can't this be a flashing message in the forums since it's been asked about a 1,000 times now.

  • How do you remove face tagging icon from images.  I cannot get them off some images.

    How do you remove face tagging icon from images.  I cannot get them off!  This is for adobe photoshop elements 6.   Thanks

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

Maybe you are looking for

  • Is it possible to play two videos at the same time in Captivate 4

    My idea is to create some e-learning material which shows a screencast of a powerpoint presentation and a video in the top left corner of the screen showing somebody presenting the slides. Does anybody know if it is possible to do this with Captivate

  • Using a report layout in background mode

    Is is possible to apply a saved report layout like you apply to the alv grid to a csv file run in background mode?

  • Basic RMI program works in windows but not Linux

    Hello, I'm trying to learn RMI for a program at work. I have the book "Core Java 2 - Volume 2 - Advanced Features". Chapter 5 of this book is about RMI. The most basic example program they use works fine in Windows. However, when I try to run this sa

  • Can you request a movie if it's not on iTunes?

    I really want to get the movie Jaws onmy iPad but was sad to see its not on iTunes. Is there somewhere you can go to request movies?

  • Serious UI Bug!!

    I have PS 11.0.1 on Windows XP SP3. I find the tabbed interface a real pain as it really limits dragging and dropping ability. How do you drag a layer or effect? Dragging onto the tab does nothing. But that is entirely off-topic... The problem is tha