INTERACT FORUM

More => Old Versions => JRiver Media Center 20 for Windows => Topic started by: rec head on August 30, 2014, 04:45:24 pm

Title: Can I change column colors?
Post by: rec head on August 30, 2014, 04:45:24 pm
Title says it all. In Standard View I'd like to be able to change column colors. Did a search didn't find anything.
Title: Re: Can I change column colors?
Post by: fitbrit on August 30, 2014, 09:07:30 pm
It would be a nice option, but I believe it's not currently available.
Title: Re: Can I change column colors?
Post by: r_harms on September 01, 2014, 07:26:11 pm
Just make an expression column to replace the standard column and use:

<font color="4A95C9">[Sample Rate]<//Font>

I use this code to color code my 'Audio Format' column if you want to get a little fancier...

IfElse(compare([Channels], =, 1),
<font color="183D61">Mono<//Font>,compare([Channels], =, 2),
Stereo,compare([Channels], =, 3),
<font color="4A95C9">2.1<//Font>,compare([Channels], =, 4),
<font color="4A95C9">Quad<//Font>,compare([Channels], =, 5),
<font color="4A95C9">5.0<//Font>,compare([Channels], =, 6),
<font color="4A95C9">5.1<//Font>) If(isequal([File Type],mp3,1),<font color="183D61">[File Type]<//Font>,[File Type]) If(compare([Bit Depth], >, 16),
<font color="4A95C9">[Bit Depth]x<//Font>,
 [Bit Depth]x)&datatype=[number]IfElse(compare([Sample Rate], <, 44100),
<font color="183D61">FormatNumber(math([Sample Rate,0] / 1000), 1)<//Font>,compare([Sample Rate], >, 48000),
<font color="4A95C9">FormatNumber(math([Sample Rate,0] / 1000), 1)<//Font>,
1, FormatNumber(math([Sample Rate,0] / 1000), 1))

Good luck...