INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Can I change column colors?  (Read 864 times)

rec head

  • Citizen of the Universe
  • *****
  • Posts: 1004
Can I change column colors?
« 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.
Logged

fitbrit

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 4877
Re: Can I change column colors?
« Reply #1 on: August 30, 2014, 09:07:30 pm »

It would be a nice option, but I believe it's not currently available.
Logged

r_harms

  • Junior Woodchuck
  • **
  • Posts: 67
Re: Can I change column colors?
« Reply #2 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...



Logged
Pages: [1]   Go Up