QUOTE(lav-chan @ Apr 1 2006, 09:59 AM)
I didn't test, but this might do what you want (remove the line breaks when you try to use it, obviously):
CODE
$if($meta(album artist,0),$if($stricmp($left($meta(album artist,0),4),'the '),
$substr($meta(album artist,0),5,$len($meta(album artist,0))),$meta(album artist,0)),
$if($meta(artist,0),$if($stricmp($left($meta(artist,0),4),'the '),$substr($meta(artist,0),5,$len($meta(artist,0)))
,$meta(artist,0)),$meta(composer,0))) %date% %album% $num(%tracknumber%,3) %title% %_filename_ext%
Coincidentally, I was having the issue of sorting my music in 0.9. This string worked pretty well for a number of my albums, but there's one problem, and I'm not entirely certain as to how to tackle it.
I have one soundtrack, '
Kong in Concert', which has numerous artists who have worked together on it.
Unfortunately for me, that sort string won't pull the albums together if they have different artist names, and instead, just leaves them scattered everywhere.
This issue also affects a few of my other albums.
I'm not all that good with the formatting strings, though, so I'm not entirely sure what I'd be changing so that it would sort by album, disc number, track number, rather than by whatever means is above.
I've been trying to figure it out, but ended up manually sorting them back before 0.9... and that gets tiring.