I just want some text to start on new lines, and if the text is too long for a line, for there to be ellipses instead of wrapping text to the next line.
I tried searching the Wiki and posts here but couldn't find anything. I was using $char(10) initially, but then this creates problems with very long text.
Here's what I have:
CODE
$drawrect(0,0,0,0,pencolor-null brushcolor-SYSCOL-1)
$padding(2,4)$align(center,middle)$font(Calibri,11,,192-192-192)
$if(%_trackinfo_notrack%,
' '
,
$if(%contentgroup%,%contentgroup%,%content group%) '\' %genre% $char(10)
$font(Calibri,13,,255-0-0)
%directoryname% '\ ' $char(10)
$if($strcmp($ext(%_path%),cue),$if2(%subsong%' - ',)$if2(%artist%' - ',)$if2(%title%,),%_filename%))
$font(Calibri,10,,192-192-192)
%bitrate% kbps %codec% %codec_profile%
$if($greater(%_filesize%,1048576),
$num($left($num($muldiv(%_filesize%,100,1048576),6),4),1)
.$right($muldiv(%_filesize%,100,1048576),2) MB,
$num($left($num($muldiv(%_filesize%,100,1024),6),4),1)
.$right($muldiv(%_filesize%,100,1024),2) KB)$char(10)
)
// PerSecond
$padding(2,4)$align(center,bottom)$font(Calibri,12,,192-192-192)
[%_time_elapsed% / ]%_length%$char(10)