Reset icons for a file type system wide?

All of the .mpg files on my system are from a camcorder that records MPEG-2 video with 5.1-channel audio that QuickTime cannot play.
By default all of these .mpg files had a QuickTime icon, even though QuickTime can't play them. I assigned a different application (VLC) to these files through the normal Get Info >> Open With >> Change All method and now all of my .mpg files open with VLC and play just fine.
However, after I pressed Change All it seems the system changed about half of the icons on my .mpg files to VLC's icon and left the rest with QuickTime icons.
Is there any way to change all the .mpg icons back to one or the other (preferably VLC, since that's what actually plays them)?
Needless to say changing icons one file at a time would be too time consuming.
Any help appreciated.

The problem I had may be similar to yours. I de-installed iWork 8, after testing it. I have a registered copy of iWork 6 and i was happy.
Anyway, after the de-installation all the Pages icons where folder icons!?! While searching the net for a solution, because none of the described methods worked, I remembered that *Onyx, the maintenance program, has a function to delete and rebuild the application-file links*.
So I did this and everything was fine after assigning the default application (Pages)...except one of my pdf file icons on the desktop was broken, so be aware!

Similar Messages

  • Dreamweaver CS6 displaying the wrong icon for certain file types

    I recently upgraded to the Maverick and I noticed that my Dreamweaver changed some of my files' icon to Acrobat Reader symbol. This does not represent the actual file type. My most important files, such as mp3 and m4v, are not displaying correctly. My concern is that it is affecting my website. How do I change the icons back to the original file type icons? Much needed help! Thanks!

    What do local file associations have to do with your website? You have a severely wrong understanding of this stuff. Anyway, file associations on Mac can be changed using a right-click and Get Info and then choosing a new default program for the file type.
    Mylenium

  • Globally setting icon for a file type

    I've been using LilyPond a lot recently. The .ly files it saves don't have their own icon, though, they just get the generic document icon. I know that I can manually set an icon for a single file using 'Get Info', but it's not practical now because I have so many .ly files. Is there a way I can tell OS X to use my own icon every time it sees a .ly file?
    Thanks,
    (- Steve -)

    Hi, Stephen.
    If by LilyPond you mean this application, it's the application's responsibility to assign the custom icon for files it creates, e.g. .ly files you edit and save in LilyPond. You might want to send feedback concerning this to the developers. However, as I understand the application based on a quick review of its manual, it can work with any plain-text (ASCII) file.
    You can change the default application in which all .ly files open by using the instructions in "Mac OS X 10.4 Help: Changing the application that opens a document." That may result in those files bearing the same icon as the LilyPond application. That is also the mechanism by which a given icon is assigned to all files of a given type.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Resetting icons based on file type

    Not sure what happened here, but maybe a week or so ago, the icons for my image files (jpg, png, etc.) become different things. In the same folder, JPG files may have 3 or 4 different icons. Sorry, I don't know how else to explain it. Any idea how to make it so they all just go back to the standard icon for those different file types? thanks

    Sorry, please disregard. I just restarted Finder and everything works fine now.

  • Icons in Finder for many file types are now blank

    For no reason at all when I booted my Mac today many of the icons for my file types have just dissapeared! Anyone have any idea how to get them back? It is REALLY annoying because it makes files look like the are a folder deeper than they really are when using the list view which I always do. It's not all icons though but noticably it's all archives (.zip, .tar.gz .jar) and CSS, JS and JSP files.

    For the second tiem this week the answer to my problem with OS X is a re-boot. I'm used to that working on Windows but not on OS X. This kind of thing should not be happening but it is and it didn't used to happen.

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • Change all icons of a file type in Yosemite?

    Hello,
    I just upgraded from a early 2011 MBP running Mavericks to a new Retina MBP running Yosemite. I did not use Migration Assistant as I wanted a fresh start and instead have copied over all of my data from a clone manually. I use Parallels 10 to run a Windows 7 VM to run some software, including MS Office, etc. Since my upgrade, all of my Office file icons (.docx, .xlsx, etc.) are the generic white/gray page with the turned down upper-right corner. I set the default program for all to be the correct application within my VM, but now would like to change the file icons for all files of a type to something more meaningful. Somehow, I had that on my previous MBP, but can't remember how that happened... Without having to individually change each icon for 10,000+ files, is there an easy way to batch change all Excel file types (.xls, .xlsx, .xlsm, .csv, etc.) to a single icon?
    Thanks in advance.

    Same thing happening to me.  I've fixed disk permissions, for what that's worth.  Still have generic icons for office docs.  It's always something....

  • The icons for html files are blank . . . how do i get them to show the firefox image

    on the desktop and in directories, the icons for html files are blank . . .
    firefox is my default browser . . .
    how do i get the icons to show the firefox image ?? . . .

    You can check for issues with the Windows icon cache and try to rebuild the icon cache.
    # Open the Task Manager (Shift+Ctrl+ESC)
    # In the Process tab, right-click on the Explorer.exe process and select End Process.
    # Open the file picker via "File > New Task (Run)" and click the Browse button.
    # Type or Paste %USERPROFILE%\AppData\Local (%LocalAppData%) in the File name field (AppData is a hidden folder).
    # Select the IconCache.db file and use "Delete" in the right-click context menu to delete the file.
    # After the IconCache.db file has been deleted, start a new explorer.exe process via "File > New Task" to get the desktop and Taskbar back.
    The IconCache.db file is a hidden file, so make sure that you can see hidden files.
    * http://kb.mozillazine.org/Show_hidden_files_and_folders

  • Remove the unique icon for movie files

    In Finder, I get a custom icon for each movie file that is the first frame of the movie. That doesn't help me, so I want to change it to only show the QuickTime image as a custom icon. This is the behavior of Tiger and it was useful to me. I don't get any benefit out of seeing the first frame. I get a benefit out of instantly knowing it is a movie file. Please reply if you know how to revert Leopard to using the application icon rather than the first frame image as the document icon.

    Moof666 wrote:
    Progress? I think not. Anyone know a hack to make the Finder show app icon for all files at once?
    Open a Finder window, go to Macintosh HD (or whatever the boot volume is called in your system), click the little gear icon/button, and select "Show View Options", then un-tick "Show icon preview", and click on the "Use as Defaults" button (if this button is not active, select a different option from the Arrange drop-down menu, and it will activate).

  • How to remove or disable "Finder Preview" for a file type?

    I have some large .hdr files which are large image files, and cause PathFinder (but I guess the issue is not really Finder or PathFinder but the preview app being called in Preview feature) to beachball forever. The problem is the calculation of image size and thumbnail display when either clicking on the .hdr image file (which brings in preview) or ctrl-clicking on the file which kicks off image size calculation for contextual menu in PathFinder (confirmed by PathFinder support). While I can get around ctrl-clicking until this issue is fixed, there is no walking around preview feature for thumbnail viewing unless I tell Preview not to consider .hdr files as image files (while still being able to view thumbnails of other image formats such as jpg and tif, which is what I will like to do).
    Those .hdr files are not valid Photoshop radiance files. They are generated by Photomatix (www.hdrsoft.com). So, Preview seems to be having issues with it. Whenever I click on a large file (no problem with an empty file labeled with .hdr extension), PathFinder memory shoots from 50+MB to 500+MB and it beachballs forever until I kill it.
    So, I will like to tell Preview not to consider .hdr files as image files. Pointers on how to do this will be appreciated. I am guessing that Preview.app is being called by Finder (same thing should apply to PathFinder) to calculate image sizes and render thumbnails. Please correct me if I am wrong about it.

    You can turn off the preview column in Finder's Show View Options. I don't know if this will help with your problem. Also, I 'think' if you use a program to create a preview icon for the file (assuming it supports that format) the Finder will use that. It sounds like you want to keep icon preview selected, so I don't think there is a way to conditionally show the previews. You can also set Finder's PreviewDisclosureState to 0, which hides the preview icon--it controls the disclosure triangle in the preview column. Again, I don't know how this will affect what you want.

  • It should be possible to set default behavior for all file types

    It should be possible to set a default action for all file types. I'm so tired of having to manually sit and say "save this file" because Firefail always defaults to "open with" and has disabled the "Do this automatically for files like this from now on."
    And spare me the zealotry religious excuses for why its the fault of websites and not Firefail
    ''edited to remove swearing''

    I do want users to have full control to be able to set any folder view they want by using Apply to Folders; I just want to set the initial/default view to Detail because that matches what the majority of my users want.
    That is, what registry setting changes when I go to a picture folder, change the view to Detail, and click Apply to Folders? Having done that, I still retain the ability to change it to some other view and apply that to folders. But what registry setting
    represents the change I just made when applying Detail view to all Picture folders.?
    This settings is simple via GUI, but it is related a lot of registry keys, I made a test in my machine, capture the "Apply to Folders" process using Regshot tool (this is a small tool which can compare the regsitry changes after you change some
    settings), and this is the result:
    this is part of the registry changes, a plenty of registry keys and values need to be changed. hard to list them here. if you have interests, I recommend the tool Regshot, it can help you capture the regsitry changes.
    NOTE: Please Note: The third-party product discussed here is manufactured by a company that is
    independent of Microsoft. We make no warranty, implied or otherwise, regarding this product's
    performance or reliability.
    Yolanda Zhu
    TechNet Community Support

  • PDF SCANS ERROR MESSAGE: CAN'T "OPEN THE DEFAULT APP FOR THIS FILE TYPE" EG. PDF

    OFFICEJET PRO 8600 PLUS , WIN 7, SCAN TO COMPUTER AS A PDF FILE.  ERROR MESSAGE: "
     CAN'T "OPEN THE DEFAULT APP FOR THIS FILE TYPE" EG. PDF

    Hi @reddog2,
    I would contact HP Cloud Services for assistance. Call 1-855-785-2777.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • How do you make console apps the default application for a file type?

    I have a console movie player, mplayer, that I like a lot. I've compiled it from source on my intel core2 macbook pro and it works fine. There is no gui, but to play movie files you open up a terminal and type the command mplayer /path/to/file. I would like mplayer to play a movie file automatically when I double click on the file, but I can't seem to figure out how to do it. I tried setting it in the file info dialogue, but when I go to the path of the binary I want, it is not selected. How can I set a console app as my default application for my file type?

    there is a GUI mplayer for OS X. why don't you use it instead of the command line one?
    if you insist on using the command line mplayer then the only way to do this is to put a GUI wrapper on it. this can be done with automator or apple script for example. but really, why don't you just use the GUI mplayer?

  • How to skip line for delimited file type?

    Hi, i wanna ask how to skip (example: the first two line) for delimited file type?
    Thanks...
    Here is my script
    Function NY_Skip06Center [strField, strRecord]
    ' FDM DataPump Import Script:
    'Created by: FDM_Admin
    'Date created: 2/28/2006
    Dim strEntity
    'Check first two characters of entity
    For strEntity = 1 to 6
    'Skip line
    Res.PblnSKip = True
    Next strEntity
    End if
    End Function
    But it returns this error when imported
    Error: An error occurred importing the file.
    Detail: Object variable or With block variable not set
    Anyone knows what's wrong
    Edited by: user649207 on Mar 19, 2010 2:15 AM
    Edited by: user649207 on Mar 19, 2010 3:04 AM

    strAcc = DW.Utilities.fParseString (strField, 1, 1, chr(9))
    I didn't look closely enough last time. The above is illogical. The parsestring function parses a string based on a delimiter.
    The function has these arguments:
    String to Parse
    How many fields are in the string
    The parsed field to return
    Field delimiter
    In the above, strField is returning the field specified in your import format. You are also saying that there is a total of 1 field. If that were the case, you wouldn't need to parse anything.
    I am guessing that your call needs to look something more like this:
    strAcc = DW.Utilities.fParseString (*strRecord*, *8*, 1, chr(9))
    Make sense?
    If not, maybe you can include a few sample lines from your data file and that will make it easier to help you.
    Is your import format fixed or delimited?

  • File Dialog (Details View and Multiple Selections for View File Type)

    I would like to use the generic windows dialog box found in the toolbar under:
    File I/O/Advanced File Functions/File Dialog
    What I would like to do is have multiple selections for the file type, for example one menu selection is *.txt, another is *.rtf, another is *.csv, etc. Listing a single type is straightforward.
    Also does anyone know if there is a way to have the dialog open in the DETAILS view automatically?
    Thanks for any help!
    Carlton

    Hi,
    You can do it in following ways:
    1. Write in pattern input the string "*.txt; *.csv; *.rtf". This will show to the user only files with this extensions in the dialog.
    2. Another way is to create ring or menu where user could specify the extension. Depending on this extension you could wire the appropriate string to the pattern input of "File Dialog.vi"
    I have made an example.
    Good luck.
    Oleg Chutko.
    Attachments:
    fileopen.vi ‏42 KB

Maybe you are looking for

  • Automatic Email in DSWP & Automated ticket generation for NOTIF_CREATE tran

    Dear All, I have one issue, Whenever the threshold level in any of the satellite system, above certain level, an alert is raised in SOLMAN  (Solution Manager) and the alert can be viewed TCode DSWP . Now my requirement is whenever  ERROR  alert is ge

  • Urgent: Report

    Hi Guru's... My Program Perfomance is very slow.... Plz tell me wat can i do.... TABLES : VBAK, VBRP, VBRK, KNA1, T001, LIKP, VBPA, TVKBT, TVGRT, KONV, VBKD, VBFA, T052, BSAD. TYPE-POOLS: SLIS. DATA: BEGIN OF ITAB OCCURS 0,       VKBUR   LIKE VBAK-VK

  • MAil adapter alternative

    Dear all, My requirement is that we need to read attachment in the mail,read the content of the attachment and send it to proxy. I know this functionality can be achieved using mail adapter,due to security reasons ,we were asked to find alternative.

  • Want to updated sales pricing procedure through quotation

    Hello Friends, In general scenario: we update any condition type in vk11 tcode and tht is reflected in quotation pricing. my requirement : while creating quotation if the user changes any price for any condition tht should automatically get updated i

  • Won't let me connect to wifi, what can I do?

    I go to settings and on the wifi button it says NO WIFI, what can I do to fix it?