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 (Read 4591965 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: Columns UI

Reply #7950
Sorry I forgot to write, Windows 10 ver.1909.

Re: Columns UI

Reply #7951
Because Columns UI relies on functionality added to the OS in version 2004.
.

Re: Columns UI

Reply #7952
I understood it well. Thanks for your reply.

Re: Columns UI

Reply #7953
Message for music music:

I have detected an error in Album list panel in the case of having "Show root node" enabled.

For example:
   - I type Shakira, it responds correctly lighting in album list panel "Shakira" and loading all her albums in the playlist view.
   - Then I type an artist starting with A, for example "Abbey" and it lights up the first artist starting with B, in my case B.B.King. It is evident that what happens is that first it processes the A and it goes to process "All Music" and it spends a good time and when it finishes it goes to the first artist that begins by B.

A long time ago I commented that the "All Music" option did not work well and I suggested, if possible, to precede "All Music" with a symbol such as # so that it would be something like this: "#All Music" so that when writing an artist that begins with A it would not process the whole half library.

Re: Columns UI

Reply #7954
Yes, this has been discussed before. One suggestion was delaying the playlist update after each key press, to avoid delays while you're still typing. And yes, the other was to add a character such as a zero-width space to the start of the name.

How big is your library and what CPU do you have?
.

Re: Columns UI

Reply #7955
Yes, this has been discussed before. One suggestion was delaying the playlist update after each key press, to avoid delays while you're still typing. And yes, the other was to add a character such as a zero-width space to the start of the name.

How big is your library and what CPU do you have?

Library 6 TB
Intel i7-7567U

Re: Columns UI

Reply #7956
How can i set bold for now playing track on playlist?

Re: Columns UI

Reply #7957
How can i set bold for now playing track on playlist?

You cannot use more than one font for the playlist columns.
You can only change the color and intensity of each column when the track is playing.

Re: Columns UI

Reply #7958
How can i set bold for now playing track on playlist?

You cannot use more than one font for the playlist columns.
You can only change the color and intensity of each column when the track is playing.


Can u help me please and fix my cfg? I want to do similar like you but use blue color. Like at my volume control button.

Re: Columns UI

Reply #7959
How can i set bold for now playing track on playlist?

You cannot use more than one font for the playlist columns.
You can only change the color and intensity of each column when the track is playing.


Can u help me please and fix my cfg? I want to do similar like you but use blue color. Like at my volume control button.

I'm sorry I can't help you because I have used global variables (Preferences/Columns UI/Playlist View/Globals) and they are quite complicated to handle and have many variants. You have to make the calls to the global variables from the script of each of the columns. 

There is a simpler solution that you can do yourself and that consists of placing in the script of each column at the beginning of your current script the following code:
$if(%_isplaying%,$rgb(255,80,0))

This code paints each column blue only when the track is playing and when it is not playing it will be painted with the color you have already defined in colours & fonts

 

Re: Columns UI

Reply #7960
Thank you it works. But i cant get the same blue, I used color picker and it's rgb(13,124,205). But volume and progress blue looks different. Why?

Re: Columns UI

Reply #7961
Thank you it works. But i cant get the same blue, I used color picker and it's rgb(13,124,205). But volume and progress blue looks different. Why?

Try turning it upside down:
$rgb(205,124,13)

Re: Columns UI

Reply #7962
Thank you it works. But i cant get the same blue, I used color picker and it's rgb(13,124,205). But volume and progress blue looks different. Why?
The seekbar blue in your screenshot is rgb(0, 120, 212). But that's only a small difference. If the text looks darker, it's probably related to subpixel rendering (ClearType). You could try the ClearType tuner in Windows, but you may just have to adjust the text colour until you're happy with it (unless someone else has another suggestion...)
.

Re: Columns UI

Reply #7963
When i use 0 120 212 it's orange. :D




Re: Columns UI

Reply #7967
still orange

1. When i open new album its blue.
2. When i cllose foobar and run it again and press play its orange.
3. when i open new album/files its blue again

i dont understand whats going on


Re: Columns UI

Reply #7969
Removed. Now playing item is now white. in colours and fonts which item i shoud change to blue?



Re: Columns UI

Reply #7972
I was wrong, sorry. You can't change color of playing item in Colors & Fonts.

The solution is:
Code: [Select]
$if(%isplaying%,$rgb(0,120,212,0,120,212),)%title%
in display script

Quote
$if(%isplaying%,$rgb(r1,g1,b1,r2,g2,b2),) where r1,g1,b1 is the color of the now playing text normally, and r2,g2,b2 is the color of the text when selected

Re: Columns UI

Reply #7973
I have written this script to create a column in Re-Facets that lists the tracks that contain in the title the string " with " (in lower case)
$if($strstr(%title%,' with '),%title%,)

I need to write a similar script to use in the filter search box that is case sensitive.
I have used the following script: title HAS " with "
It lists the tracks whose title contains " with " but it is not case sensitive.