when I run foobar 0.9 rc1 the colour formatting from columns UI dissapeard
and i dont know how I can restore them?
here the code:
Playlist view--> Global -->Variables:
" $puts(somecolor,$char(3)555555$char(3)) "
and
Playlist view--> Global -->styles:
CODE
$if(%_isplaying%,$rgb(164,235,12),$rgb(14,66,121))|
$rgb(14,66,121)|
$if(%_isplaying%,$rgb(56,106,179),$if($strcmp($mod(%_playlist_number%,2),0),$rgb(224,234,243),$rgb(237,242,249)))|
$rgb(180,192,207)|
$rgb(201,210,221)|
$rgb(200,215,240)|
$rgb(237,242,249)|
$rgb(237,242,249)|
$rgb(200,215,240)|
Shade[ST] told me that color formatting has changed in the latest columns ui, and is no longer compatible with the old format.
Use:
CODE
CODE
$set_style(#ITEM#[,1|0],#COLOR1#[,#COLOR2#][,#COLOR3#])
#ITEM# is text or back or frame-top, frame-left, frame-right, frame-bottom
if #ITEM# is one of the frames, the next item in the list is the frame status (on/off)
The colors are in hex format, with no special characters (eg, web format) : AFBF08 is a color.
Only #COLOR1# is used if coloring a frame. For text, colors 1 and 2 are used (text / textselected)
for background, color1 is back color, color2 is back/selected, color3 is back/selected-unfocused.
Example styling :
CODE
$set_global(pText,5BC8DB)
$set_global(pTextSel,A3D5D6)
$set_global(pBack,2F365E)
$set_global(pBackSel,493E30)
$set_global(pBackSelU,314833)
$set_style(text,$get_global(pText),$get_global(pTextSel))
$set_style(back,$get_global(pBack),$get_global(pBackSel),$get_global(pBackSelU))
coudl anyone help me??

