Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Columns UI: Bold text for "now playing item" (Read 5404 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Columns UI: Bold text for "now playing item"

Hello, I use foobar2000 with Columns UI for a while now. I wonder, how to make text bold only for now playing item? I am trying to figure out this all day    I am not really good with title formatting syntax.
Maybe you could give me exact formatting script?
I want now playing item to be in Calibri font, 8 pt, bold.
Colors: RGB 235 235 235  if "Item" and "Inactive selected item" and RGB 255 255 255 if "Selected item".

BTW this is my foobar2000:


Columns UI: Bold text for "now playing item"

Reply #1
From the ColumnsUI Wiki:
Quote
You can set the text colour as follows:

$set_style(text,text colour,selected item text colour[,selected item text colour when window is not focused])

So try something like:
Code: [Select]
$if(%isplaying%,
$set_style(text,$rgb(235,235,235),$rgb(255,255,255),$rgb(235,235,235))
,)

As far as I know there is no way to use text attributes like bold, underline, or italic but you can play around with colors all you like.
(Please someone correct me if I am wrong.)

Columns UI: Bold text for "now playing item"

Reply #2
el playlist is an alternative if you feel like getting your hands dirty. but it does require a lot more effort to learn how it works.

Columns UI: Bold text for "now playing item"

Reply #3
From the ColumnsUI Wiki:
Quote
You can set the text colour as follows:

$set_style(text,text colour,selected item text colour[,selected item text colour when window is not focused])

So try something like:
Code: [Select]
$if(%isplaying%,
$set_style(text,$rgb(235,235,235),$rgb(255,255,255),$rgb(235,235,235))
,)

As far as I know there is no way to use text attributes like bold, underline, or italic but you can play around with colors all you like.
(Please someone correct me if I am wrong.)

Thank you for the help. Too bad that something like this doesn't work.    I'll play around with colors then.