Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: How can i change the icons for mpc files? (Read 6114 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

How can i change the icons for mpc files?

How can i change the icons for mpc files?

How can i change the icons for mpc files?

Reply #1
You can grab my iconpack  see link below.
Otherwise you can do it manually in the registry. If you don't know how to do that let me know. But you should know how to use regedit before you do that.

How can i change the icons for mpc files?

Reply #2
Let me explain. Make a .reg file (test.reg etc.) in notepad. Write something like this to create a filetype for mpc.
what is written in red is the path to your icon.
The green is the path to your media player.
Change that.

Code: [Select]
REGEDIT4

[HKEY_CLASSES_ROOT\.mpc]
@="Musepack audio"

[HKEY_CLASSES_ROOT\Musepack audio]
@="Musepack audio"

[HKEY_CLASSES_ROOT\Musepack audio\DefaultIcon]
@="[color=red]C:\\Programmer\\AudioIcons\\mpcicon.bmp[/color]"

[HKEY_CLASSES_ROOT\Musepack audio\shell]
@="Play"

[HKEY_CLASSES_ROOT\Musepack audio\shell\Enqueue]
@="&Enqueue in foobar2000"

[HKEY_CLASSES_ROOT\Musepack audio\shell\Enqueue\command]
@="\"[color=green]C:\\Programmer\\foobar2000\\foobar2000.exe\[/color]" /ADD \"%1\""

[HKEY_CLASSES_ROOT\Musepack audio\shell\Play]
@="&Play in foobar2000"

[HKEY_CLASSES_ROOT\Musepack audio\shell\Play\command]
@="\"[color=green]C:\\Programmer\\foobar2000\\foobar2000.exe\[/color]" \"%1\""


Save the file and run it.
Hope that fast explanation is enough.
If you are not used to working with the registry I would not advice doing edits like this. However one time has to be the first.

edit: JamesBond is right. I added that.

How can i change the icons for mpc files?

Reply #3
i think there is something missing, the first line of the file MUST be REGEDIT4.

Code: [Select]
REGEDIT4

[HKEY_CLASSES_ROOT\.mpc]
@="Musepack audio"

[HKEY_CLASSES_ROOT\Musepack audio]
@="Musepack audio"

[HKEY_CLASSES_ROOT\Musepack audio\DefaultIcon]
@="C:\\Programmer\\AudioIcons\\mpcicon.bmp"

[HKEY_CLASSES_ROOT\Musepack audio\shell]
@="Play"

[HKEY_CLASSES_ROOT\Musepack audio\shell\Enqueue]
@="&Enqueue in foobar2000"

[HKEY_CLASSES_ROOT\Musepack audio\shell\Enqueue\command]
@="\"C:\\Programmer\\foobar2000\\foobar2000.exe\" /ADD \"%1\""

[HKEY_CLASSES_ROOT\Musepack audio\shell\Play]
@="&Play in foobar2000"

[HKEY_CLASSES_ROOT\Musepack audio\shell\Play\command]
@="\"C:\\Programmer\\foobar2000\\foobar2000.exe\" \"%1\""

 

How can i change the icons for mpc files?

Reply #4
Assuming this is Windows, you can just goto tools > options > filetypes and make them look like whatever you want.