QUOTE (blue_water @ Aug 23 2006, 22:44)

anyone can tell me how to make the song title in brackets appears in a different color like in this screenshot?
I use a different approach than Frank. Frank's code is short and gets the job done, however I only want the final set of parenthesis to be colored, I occasionally come accross a song title that has more than one set.

Globals:
CODE
$set_global(color.txt.label.bracket,$rgb(233,233,233,233,233,233))
$set_global(color.txt.label.txt,$rgb(10,36,106,233,233,233))
Column Display:
CODE
$if(%title%,$trim($left(%title%,$sub($strrchr(%title%,$char(40)),1))),)
$if($strrchr(%title%,$char(40)),
$get_global(color.txt.label.bracket) $char(40)$get_global(color.txt.label.txt)
$substr(%title%,$add($strrchr(%title%,$char(40)),1),$sub($strrchr(%title%,$char(41)),1))
$get_global(color.txt.label.bracket)$char(41)
)