blaxima:
The reason my previous code did nothing is because you have a mismatched bracket in your File Size code on the line after $alignabs() where you display the file size. I suspect this is also causing you trouble displaying the bitrate and "flags" (I dont know what those are supposed to be).
Here is your corrected code with a very simple progress bar added for the now-playing track:
CODE
//////////Boarders and Backgrounds//////////
$if(%_isplaying%,$drawrect(0,0,0,0,brushcolor-82-82-82 pencolor-169-169-255)
,
$ifequal($mod(%_playlist_number%,2),0,
$drawrect(-1,0,0,1,brushcolor-238-238-238 pencolor-228-228-228)
,
$drawrect(-1,0,0,1,brushcolor-238-238-238 pencolor-248-248-248)
)
)
//////////Play Button//////////
$padding(2,0)
$alignabs(4,2,%_width%,21,left,center)
$if(%_isplaying%,$font(franklin gothic medium,9,boldshadow glowalpha-150,238-238-238)
$char(9658)
//////////Track Info//////////
$font(AvantGarde LT Medium Caps,7,,128-128-255),$font(AvantGarde LT Medium Caps,7,,128-128-255))
$alignabs(22,1,%_width%,21,left,top)
$if(%_isplaying%,$font(,7,,169-169-255),$font(,7,shadow glowalpha-20,180-180-180))
[Disc %discnumber% ][%tracknumber%. ]
$if(%_isplaying%,$font(,7,,238-238-238),$font(,7,,168-175-181))
$if($meta_test(album artist),%artist%' - ')
$if(%_isplaying%,$font(,7,shadow glowalpha-30,168-175-181),$font(,7,shadow glowalpha-30,128-128-128))
%title%
//////////Time//////////
$padding(2,0)
$align(right,middle)
$if(%_isplaying%,$font(AvantGarde LT Medium Caps,7,,169-169-250),$font(,7,shadow glowalpha-20,180-180-180))
$if(%_isplaying%,- %playback_time_remaining%,%length%)
//////////File Size//////////
$if(%_isplaying%,$font(,6, shadow glowalpha-30,203-206-211),$font(,6,shadow glowalpha-20,180-180-180))
$alignabs(23,0,%_width%,21,left,bottom)
[$div(%filesize%,1048576)'.'$substr($muldiv(%filesize%,100,1048576),2,3)mb' ']
$puts(show,$num($muldiv(1000,$info(bitrate),1411),3))
$if(%isplaying%,$if($stricmp($get(show),1000),
$font(,,$get(font_options),250-250-250)$repeat($char(10),8)$get(active)ucm$puts(flag2,1),
'.'$substr($get(show),3,3)))
/// Progress Bar ///
$if(%isplaying%,
$drawrect(100,14,$muldiv($muldiv(100,%playback_time_seconds%,%length_seconds%),$sub(%_width%,200),100),5,brushcolor-130-130-255)
$drawrect(100,14,$sub(%_width%,200),5,brushcolor-null pencolor-255-255-255)
,)