Advanced Report 6.4 - Updated 24/06/2014
Posted: Sat Jan 28, 2006 11:46 am
This script makes an HTML file listing all of your artists. Click on an artist and it will take you to a list of their albums. Click on an album and it will take you to the list of tracks. All in one file! The script can be customised: there are masks for displaying the album and track details.
There is an installer available to download from my website. Unfortunately the code file is too large to post!
There is an installer available to download from my website. Unfortunately the code file is too large to post!

Code: Select all
'
' MediaMonkey Script
'
' NAME: AdvancedReport 6.4
'
' AUTHOR: trixmoto (http://trixmoto.net)
' DATE : 24/06/2014
'
' INSTALL: Copy to Scripts directory and add the following to Scripts.ini
' Don't forget to remove comments (') and set the order appropriately
'
' Thanks to: ZvezdanD for his modifications to Magic Nodes which ignore prefixes
' Psyxonova for his expert SQL help
' Buxfix for making the output XHTML and providing new stylesheet
' Bex for his help with SQLite optimisation and filters and selected tracks
' Tralla for her modified versions which I've taken many ideas from
' Jn and Gege for letting me use their WebSearch Panels script
'
' [AdvancedReport]
' FileName=AdvancedReport.vbs
' ProcName=AdvancedReport
' Order=22
' DisplayName=Advanced Report
' Description=Advanced Report
' Language=VBScript
' ScriptType=1
'
' Album mask fields:
' <Name><Artist><Length><Tracks><Rating><Stars><Year><Bombs><Discs><Comment><Genre>
'
' Track mask fields:
' <Track#><Artist><Title><Album><Album Artist><Genre><Year><Bitrate><BPM>
' <Composer><Custom 1><Custom 2><Custom 3><Filename><Length><Rating><Stars>
' <Bombs><|><Band><Channels><MusicComposer><Conductor><Copyright><Custom 4><Custom 5>
' <Disc#><Grouping><Lyricist><Mood><Occasion><Publisher><Quality><Tempo><Encoder>
' <Link><ArtistLink><TitleLink><Comment><MediaIcon><Date><OrigYear><Lyrics>
' <StartTime><StopTime><SkipCount><TrackType>
' <Series><Director><Producer><Actors><ParentalRating><EpisodeNumber><SeasonNumber>
'
' Tooltip mask fields:
' <Track#><Artist><Title><Album><Album Artist><Genre><Year><Bitrate><BPM>
' <Composer><Custom 1><Custom 2><Custom 3><Filename><Length><Rating>
' <Band><Channels><MusicComposer><Conductor><Copyright><Custom 4><Custom 5>
' <Disc#><Grouping><Lyricist><Mood><Occasion><Publisher><Quality><Tempo><Encoder>
' <Comment><Date><OrigYear><Lyrics><StartTime><StopTime><SkipCount><TrackType>
' <Series><Director><Producer><Actors><ParentalRating><EpisodeNumber><SeasonNumber>
'
' Artist mask fields:
' <Name><Tracks><Albums><Authors><Conducts><Lyrics><Rating><Year><Stars><Bombs><Comment>
'
' FIXES: Made output HTML5 compliant and updated DOCTYPE
' Fixed errors if prefixes contain an apostrophe
'