Just a quick question...when I import the "All Music" root node of album list panel it sorts the play list by album instead of by artist. I've been over and over the options and I can't seem to find anything about it. Here is my setup and an example of what happens when I click on All Music:

Also I'm having issues with my group display code I believe. When I have large play list the only album art, artist name, album name, and date that show up are of the first album on the play list. Everything else is just a list of tracks with nothing to distinguish they are a new album or new artist, etc. I've posted an example picture below and Ill post up my group display code, maybe something is off in it? Thanks a bunch!
Example
CODE
$puts(artfnt0,$font(Tahoma,10,bold,195-195-195))
$puts(abmfnt0,$font(Tahoma,11,,120-120-120))
$puts(techfnt0,$font(Tahoma,8,,195-195-195))
$if($greater($strstr(%playlist_name%,Radio),0),$puts(is_single,1))
$if($greater($strstr(%playlist_name%,Single),0),$puts(is_single,1))
$if($not(%tracknumber%),$puts(is_single,1))
$ifequal($mod(%_playlist_number%,2),0,
$drawrect(0,0,0,1,brushcolor-240-240-240 pencolor-null),
$drawrect(0,87,0,1,brushcolor-240-240-240 pencolor-null))
$drawrect($sub(%_width%,15),10,15,0,brushcolor-241-249-250 pencolor-null)
$imageabs(,,'FCS\unique\head_bg.png',)
$ifequal($get(is_single),1,
$if(%filesize%,
$imageabs2(60,60,,,,,2,20,'FCS\unique\sgcover.png',),
$imageabs2(60,60,,,,,2,20,'FCS\unique\radiocover.png',)),
$imageabs2(60,60,,,,,2,20,'FCS\unique\nocover.png',)),
$imageabs2(60,60,,,,,2,20,$replace(%path%,%filename_ext%,)folder.jpg,)
$ifequal($get(is_single),1,
$alignabs(70,42,$add(%_width%,-107),20,left,middle)
$get(abmfnt0)$if(%filesize%,SINGLES,ONLINE RADIO)
,
$alignabs(70,27,$add(%_width%,-107),20,left,middle)
$get(artfnt0)$if2(%album artist%,$if2(%artist%,UNKNOWN))
$alignabs(70,42,$add(%_width%,-107),20,left,middle)
$get(abmfnt0)$if2($upper(%album%),UNKNOWN)
$alignabs(70,55,$add(%_width%,-107),20,left,middle)
$get(techfnt0)[%genre%', '][%codec% ][$info(bitrate)K]
)
$puts(abmfnt0,$font(Tahoma,11,,120-120-120))
$puts(techfnt0,$font(Tahoma,8,,195-195-195))
$if($greater($strstr(%playlist_name%,Radio),0),$puts(is_single,1))
$if($greater($strstr(%playlist_name%,Single),0),$puts(is_single,1))
$if($not(%tracknumber%),$puts(is_single,1))
$ifequal($mod(%_playlist_number%,2),0,
$drawrect(0,0,0,1,brushcolor-240-240-240 pencolor-null),
$drawrect(0,87,0,1,brushcolor-240-240-240 pencolor-null))
$drawrect($sub(%_width%,15),10,15,0,brushcolor-241-249-250 pencolor-null)
$imageabs(,,'FCS\unique\head_bg.png',)
$ifequal($get(is_single),1,
$if(%filesize%,
$imageabs2(60,60,,,,,2,20,'FCS\unique\sgcover.png',),
$imageabs2(60,60,,,,,2,20,'FCS\unique\radiocover.png',)),
$imageabs2(60,60,,,,,2,20,'FCS\unique\nocover.png',)),
$imageabs2(60,60,,,,,2,20,$replace(%path%,%filename_ext%,)folder.jpg,)
$ifequal($get(is_single),1,
$alignabs(70,42,$add(%_width%,-107),20,left,middle)
$get(abmfnt0)$if(%filesize%,SINGLES,ONLINE RADIO)
,
$alignabs(70,27,$add(%_width%,-107),20,left,middle)
$get(artfnt0)$if2(%album artist%,$if2(%artist%,UNKNOWN))
$alignabs(70,42,$add(%_width%,-107),20,left,middle)
$get(abmfnt0)$if2($upper(%album%),UNKNOWN)
$alignabs(70,55,$add(%_width%,-107),20,left,middle)
$get(techfnt0)[%genre%', '][%codec% ][$info(bitrate)K]
)
