by NumYummy » Sat May 02, 2009 12:13 pm
Macarena wrote:Dreadlau wrote:Please could you create a reg to "play next" a folder.
That would be very kind.
You are welcome!
This seems to be working for me, but again the usual disclaimer bla-bla:
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Open with MediaMonkey]
[HKEY_CLASSES_ROOT\Directory\shell\Open with MediaMonkey\command]
@=""C:\\Program Files\\MediaMonkey\\MediaMonkey.exe" "%1""
[HKEY_CLASSES_ROOT\Directory\shell\PlayNext in MediaMonkey]
@="Play &next in MediaMonkey"
[HKEY_CLASSES_ROOT\Directory\shell\PlayNext in MediaMonkey\Command]
@=""C:\\Program Files\\MediaMonkey\\MediaMonkey.exe" /NEXT "%1""
[HKEY_CLASSES_ROOT\Directory\shell\Enqueue in MediaMonkey]
@="Play &last in MediaMonkey"
[HKEY_CLASSES_ROOT\Directory\shell\Enqueue in MediaMonkey\Command]
@=""C:\\Program Files\\MediaMonkey\\MediaMonkey.exe" /ADD "%1""
Note1: if you already used the previous entry from above then you exclude the first two registry entries from this script, otherwise you can have doubled "play" option.
Note2: that there can be a collision with other reg entries, and cleaning the right-click menu is only by removing the entry from registries manually. Good luck!
Note3: If this does not work for subdirectories, then I guess MM does not read them, MM just ignore them while they are not files. I do not think this is fixable using registry.
BTW: I tried to so make it look nice in the menu, like groupping, but Im not able to do it, maybe sb else... Have a nice weekend!
I'm running Vista Home Premium and using this code didn't work automatically for me. Copying that and running it as a .reg file did create the keys, but it didn't put the commands into the command keys, so I had to do that manually. At that point, it worked. As far as the grouping of commands, I was able to achieve that by simply renaming the keys so that they were side by side in regedit (i.e. "MediaMonkey (enqueue)" "MediaMonkey (play next)" "MediaMonkey (play now)"). Now, it works like a charm, except for the problem in Note3 above. I still don't know how to make it recurse the subdirectories! Thanks for the head start, Macarena. Hope this helps everyone!
P.s. I have foobar as my default mp3 player and so I just created similar keys in the foobar2000.MP3 key to achieve the same effect on individual files.
[quote="Macarena"][quote="Dreadlau"]Please could you create a reg to "play next" a folder.
That would be very kind.[/quote]
You are welcome!
This seems to be working for me, but again the usual disclaimer bla-bla:
[code]Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Open with MediaMonkey]
[HKEY_CLASSES_ROOT\Directory\shell\Open with MediaMonkey\command]
@=""C:\\Program Files\\MediaMonkey\\MediaMonkey.exe" "%1""
[HKEY_CLASSES_ROOT\Directory\shell\PlayNext in MediaMonkey]
@="Play &next in MediaMonkey"
[HKEY_CLASSES_ROOT\Directory\shell\PlayNext in MediaMonkey\Command]
@=""C:\\Program Files\\MediaMonkey\\MediaMonkey.exe" /NEXT "%1""
[HKEY_CLASSES_ROOT\Directory\shell\Enqueue in MediaMonkey]
@="Play &last in MediaMonkey"
[HKEY_CLASSES_ROOT\Directory\shell\Enqueue in MediaMonkey\Command]
@=""C:\\Program Files\\MediaMonkey\\MediaMonkey.exe" /ADD "%1""
[/code]
Note1: if you already used the previous entry from above then you exclude the first two registry entries from this script, otherwise you can have doubled "play" option.
Note2: that there can be a collision with other reg entries, and cleaning the right-click menu is only by removing the entry from registries manually. Good luck!
Note3: If this does not work for subdirectories, then I guess MM does not read them, MM just ignore them while they are not files. I do not think this is fixable using registry.
BTW: I tried to so make it look nice in the menu, like groupping, but Im not able to do it, maybe sb else... Have a nice weekend![/quote]
I'm running Vista Home Premium and using this code didn't work automatically for me. Copying that and running it as a .reg file did create the keys, but it didn't put the commands into the command keys, so I had to do that manually. At that point, it worked. As far as the grouping of commands, I was able to achieve that by simply renaming the keys so that they were side by side in regedit (i.e. "MediaMonkey (enqueue)" "MediaMonkey (play next)" "MediaMonkey (play now)"). Now, it works like a charm, except for the problem in Note3 above. I still don't know how to make it recurse the subdirectories! Thanks for the head start, Macarena. Hope this helps everyone!
P.s. I have foobar as my default mp3 player and so I just created similar keys in the foobar2000.MP3 key to achieve the same effect on individual files.