Custom Report 3.2 - Updated 29/07/2014
New version (1.5) is now available to download from my website. Changes include...
- Fixed error if file path does not exist
- Added "C" format to replace newline character
- Added buttons to save and load settings
- Fixed error if file path does not exist
- Added "C" format to replace newline character
- Added buttons to save and load settings
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
-
- Posts: 5559
- Joined: Wed Feb 07, 2007 11:07 pm
- Location: New Jersey, USA
- Contact:
This is fantastic, thank you!!!!trixmoto wrote: - Added buttons to save and load settings


Nyn
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins
Join Dropbox, the online site to share your files
Link to Favorite Scripts/Skins
Join Dropbox, the online site to share your files
-
- Posts: 5559
- Joined: Wed Feb 07, 2007 11:07 pm
- Location: New Jersey, USA
- Contact:
3.2x - Win7 Ultimate (Zen Touch 2 16 GB/Zen 8GB)
Link to Favorite Scripts/Skins
Join Dropbox, the online site to share your files
Link to Favorite Scripts/Skins
Join Dropbox, the online site to share your files
trixmoto,
Still trying to get a simple list of Artists with the Albums specific to them. No various they might have a song on etc.
All the times I try to get that, I end up with a list of all the tracks in the Albums as well.
The html output nearly gets there, but with nearly 1000 albums, there is no way it will print
This list goes on the coffee Table, so I can browse through the albums, to decide what to play next.
Am I missing something?
Still trying to get a simple list of Artists with the Albums specific to them. No various they might have a song on etc.
All the times I try to get that, I end up with a list of all the tracks in the Albums as well.
The html output nearly gets there, but with nearly 1000 albums, there is no way it will print

This list goes on the coffee Table, so I can browse through the albums, to decide what to play next.
Am I missing something?
Rupert Bowling
@Big Isch - ok, I'll try to add something to cover this.
@Rupert - Try my "Just List Albums" script instead!
@Rupert - Try my "Just List Albums" script instead!

Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
trixmoto,
If you can that would be superb!!!!
I have tried "Just list albums", then I sorted it in editplus, deleted the tracks (all start with a number so takes out albums starting with a number too). End up with a list like this:
Queen JAZZ (13/11)
Queen Live Killers (20/22)
Queen Live Magic (13/15)
Queen Live at wembley (19/25)
Takes some time so it is difficult to update.
I have quite a few, that is part of the problem, getting on in years, and have been collecting for some time
If you can that would be superb!!!!
I have tried "Just list albums", then I sorted it in editplus, deleted the tracks (all start with a number so takes out albums starting with a number too). End up with a list like this:
Queen JAZZ (13/11)
Queen Live Killers (20/22)
Queen Live Magic (13/15)
Queen Live at wembley (19/25)
Takes some time so it is difficult to update.
I have quite a few, that is part of the problem, getting on in years, and have been collecting for some time

Rupert Bowling
If you open "JustListAlbum.vbs" in a text editor and set the "TrackMask" variable to be an empty string then you won't have to remove the tracks in future! 

Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
I found this thread and the great script b/c I was looking for this exact functionality. However, I can't seem to add the field for file type/format (i.e. flac, mp3, mp4, etc.) to my report and was wondering if it wasn't there or maybe I'm not recognizing the MM name used for that field.
I'm hoping the field is already an option, but if it's not, how can I add it?
FYI: I'm a novice when it comes to scripting.
Thanks!
-Kogos
I'm hoping the field is already an option, but if it's not, how can I add it?
FYI: I'm a novice when it comes to scripting.
Thanks!
-Kogos
Well this isn't actually a property of the song, so that's why it's not been added. I will work out a way to add it in the next version.
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
New version (1.6) is now available to download from my website. Changes include...
- Added fields for parts of the filepath
- Added fields for artwork information
- Added fields for parts of the filepath
- Added fields for artwork information
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
Great,
thanks for the added info of artwork.
1)
I think there is a small problem with CSV file export.
First field does not have quotes around field contents.
E.g.: for artist:
Emerson, Lake & Palmer
parsing of CSV file is wrong.
2)
What about the possibility to input a delimiter string to be placed between columns for TXT export ?
Thanks a lot
thanks for the added info of artwork.
1)
I think there is a small problem with CSV file export.
First field does not have quotes around field contents.
E.g.: for artist:
Emerson, Lake & Palmer
parsing of CSV file is wrong.
2)
What about the possibility to input a delimiter string to be placed between columns for TXT export ?
Thanks a lot
1) This is a bug I will fix in the next version. You can fix it by replacing line 601 with...
2) If you want a delimiter then use the CSV filetype.
Code: Select all
str = Chr(34)&Join(dic.Items,""",""")&Chr(34)
Download my scripts at my own MediaMonkey fansite.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.
All the code for my website and scripts is safely backed up immediately and for free using Dropbox.