Help - Search - Members - Calendar
Full Version: Discussion of "Default UI Gallery"
Hydrogenaudio Forums > Hosted Forums > foobar2000 > General - (fb2k)
Pages: 1, 2, 3, 4, 5
NullString
Which color scheme do you guys use for the spectrum visualization?
There are lots of options, like making gradients of different colors.
Playing with the color choices, I came with this one:
IPB Image


What I did was setting the first color to 150 hue, 150 sat, 0 lum. Then I added a color with 150 hue, 150 sat, but increasing the lum 10 by 10 (step 10), until I got to lum=210. That way the colors were really vivid in a shade of blue.
It would be great to see other combinations of colors, there's a lot of creativity in the color scheme of this element.
snively
how can i move around elements when i'm in layout edit mode?

i'm trying to do:

IPB Image
shakey_snake
QUOTE(snively @ Feb 20 2008, 18:19) *

how can i move around elements when i'm in layout edit mode?

you can't "move them" per say, but you have to copy and paste to move them around.
Raven.am0k
right klick on the elements and then cut out or change the UI Element.
For this construct you need a (left/right) splitter, and then on the left field of the splitter you also need a (top/bottom) splitter.
Just rightclick on the fields and insert the new ui element.

I hope this will help you a little bit!
Fractal_Mortality
I've seen a few defaul_uis now with custom buttons... How can this be done, or are these just dockable panels?
shakey_snake
QUOTE(Fractal_Mortality @ Feb 22 2008, 15:24) *

I've seen a few defaul_uis now with custom buttons... How can this be done, or are these just dockable panels?
it is a new feature of 9.5.1 betas.
http://www.foobar2000.org/beta/index.html
snively
thanks. figured it out finally..
Takaji
Here's mine:

IPB Image

I still think it's rather ugly, but I'm using a darker colour to reduce strain on my eyes. I wish there was some way to remove the very obvious splitter bars, or at least, reduce them to being a few pixels thick.

What would be really cool is if you could specify which columns the playlist would show depending on the playlist tab that's selected. The reason I wonder is that my classical/opera music contains extra tags that my pop/rock collection does not, such as performer, conductor, etc...
If foobar could remember which columns to show per playlist that would rock....
Unless this exists?

Doubt it.
Fractal_Mortality
QUOTE(Takaji @ Feb 22 2008, 22:58) *


What would be really cool is if you could specify which columns the playlist would show depending on the playlist tab that's selected. The reason I wonder is that my classical/opera music contains extra tags that my pop/rock collection does not, such as performer, conductor, etc...
If foobar could remember which columns to show per playlist that would rock....
Unless this exists?

Doubt it.


I agree, this feature would be quite cool.
Jose Hidalgo
I agree too. In fact the best would be if, for each playlist, one could specify which columns to show / hide.

Some examples :
- For classical music : more columns (conductor, performer, etc.)
- For singles : the album column might be not necessary
- For VA albums : the artist column might be necessary (it isn't in most albums, except when album artist is not null)
- For soundtracks : the genre column might be not necessary if the genre has been already set to "soundtrack"
- Etc.

So the best would be to be able to create SEVERAL PLAYLIST VIEW LAYOUTS (layout 1, layout 2, layout 3...), and then for each playlist, be able to assign one precise layout (classical -> layout 1, singles -> layout 2, etc.)

The advantage of layouts over columns is simple : in a layout, one could specify each column's width and order. Imagine the possibilities !

And now the big question : what do devs think ?... ph34r.gif
shakey_snake
You could already do something like this with one column and title formatting.

CODE
$if($equal($lower(%genre%),classical),%performer% - %conductor%,%artist%)

...or something to that effect.

Obviously maybe not exactly what you guys are looking for, but if you need something more complicated, there's always other UIs.
ArtMustHurt
i need to get a widescreen lcd...would be sooo much nice with a wider screen smile.gif
Jose Hidalgo
Thanks shakey snake. smile.gif You know, that's what I like about this forum : whatever your request, there's always someone coming in and saying : "but you can ALREADY do that, don't you know ?" laugh.gif

As for the rest of your post :
QUOTE(shakey_snake @ Feb 23 2008, 20:27) *

if you need something more complicated, there's always other UIs.

That's the kind of answer I was hoping NOT to get. tongue.gif IMHO this function is not, or should not be, UI-dependent. In every UI there are playlists and a playlist view, so I'd rather see this as improving the way foobar handles playlists ("playlist preferences" if you like). wink.gif
Takaji
QUOTE(Jose Hidalgo @ Feb 23 2008, 12:37) *

I agree too. In fact the best would be if, for each playlist, one could specify which columns to show / hide.


Exactly what I'm talking about. I'd love to see that function.

QUOTE(shakey_snake @ Feb 23 2008, 14:27) *

You could already do something like this with one column and title formatting.

CODE
$if($equal($lower(%genre%),classical),%performer% - %conductor%,%artist%)

...or something to that effect.


Thanks for that info, I guess I'll have to use it for now. Hopefully an idea like what we're talking about will be implemented?
kanak
Small Note:

CODE

$if($equal($lower(%genre%),classical),%performer% - %conductor%,%artist%)


can be written more elegantly as:

CODE

$if($stricmp(%genre%,classical),%performer%- %conductor%,%artist%)


NOTE: stricmp is case insensitive.
Walterrrr
QUOTE(Jose Hidalgo @ Feb 23 2008, 12:09) *

Thanks shakey snake. smile.gif You know, that's what I like about this forum : whatever your request, there's always someone coming in and saying : "but you can ALREADY do that, don't you know ?" laugh.gif


It is a lovely forum in that regard!
Except I'm at a loss as to where I should ask why "Use Custom Sort String" isn't an option on any Library displayers
Jose Hidalgo
QUOTE(kanak @ Feb 23 2008, 21:57) *

Small Note:

CODE

$if($equal($lower(%genre%),classical),%performer% - %conductor%,%artist%)


can be written more elegantly as:

CODE

$if($stricmp(%genre%,classical),%performer%- %conductor%,%artist%)


NOTE: stricmp is case insensitive.

Could you please provide a version that would test, not if %genre% is equal to "classical", but if %genre% CONTAINS the string "classical" ? Thank you.

I have several genres where I could use your trick, and all of them share the substring "classical". So a new version would avoid having to play with $or, which would be less elegant...
kanak
For "contains", try this:

CODE

$strstr(%genre%,classical)
Jose Hidalgo
Thanks, it works. smile.gif Not case-sentitive though, but that's not a problem for me.
kanak
QUOTE(Jose Hidalgo @ Feb 25 2008, 07:59) *

Thanks, it works. smile.gif Not case-sentitive though, but that's not a problem for me.


using the $lower to force the tag to become lowercase would solve that problem:

QUOTE

$strstr($lower(%genre%),classical)
Jose Hidalgo
Yes, I know, like I said it's not a problem for me. I just wanted to emphasize for everybody the fact that $strstr is case sentitive, that's all. wink.gif
Anarkhy

IPB Image

What is the code to show the album info in playlist view like in these screenshot?

Frank Bicking
Right-click on a column header, choose Groups, By Artist/Date/Album/Codec.
Mowbrayster
I absolutley love the new foobar. However, I noticed that with album list you can longer just click on a folder or album and it be sent to the playlist, you now have to press ENTER.

Is there any way of changing this?
kanak
QUOTE(Mowbrayster @ Feb 27 2008, 19:16) *

I absolutley love the new foobar. However, I noticed that with album list you can longer just click on a folder or album and it be sent to the playlist, you now have to press ENTER.

Is there any way of changing this?


No. You can doubleclick instead of select and ENTER though.
SirChristof
QUOTE(Mowbrayster @ Feb 27 2008, 19:16) *

I absolutley love the new foobar. However, I noticed that with album list you can longer just click on a folder or album and it be sent to the playlist, you now have to press ENTER.

Is there any way of changing this?


This is the singular, only reason I still use Columns UI + Album List Panel, vs the new (and otherwise excellent) default UI.
Byron86
QUOTE(plissk3n @ Jan 4 2008, 13:20) *

IPB Image


How can I create a custom facet column for the subgenre count like in the screenshot?

IPB Image

Thanks in advance
kanak
Right click your genre facets, under statistics there should be a "subgenre" click that.

NOTE: The subgenre statistic exists ONLY because its the child of the genre facet. In general, other than the predefined presets, you can add the number of children as a column for every facet.
Byron86
QUOTE(kanak @ Feb 28 2008, 13:16) *

Right click your genre facets, under statistics there should be a "subgenre" click that.

NOTE: The subgenre statistic exists ONLY because its the child of the genre facet. In general, other than the predefined presets, you can add the number of children as a column for every facet.

Maybe I'm blind, but I didn't find a "subgenre" option under "Statistics" sad.gif

And to your note: Unfortunately, I don't know how to add the number of the subgenres as a column...

Frank Bicking
As you have already been told by kanak, the "subgenres" statistics column is only available if you have a facet that displays subgenres next to the genre facet, as you can see in your own screenshot. The first statistics column is special and depends on what is displayed in the next facet. If you have two facets with artist and album, it would enable you to display the number of albums for each artist.

So the procedure is as follows: set the first facet to genre, set the second facet to subgenre, and finally add a statistics/subgenres column to the genre facet.
Jose Hidalgo
BTW we're talking subgenres here, but I believe the recommended tag is %style%, not %subgenre%. Am I right ?
Frank Bicking
There is no such thing as an officially recommended tag in this regard. Neither field is part of the ID3v2 specifications, for example.

I know you have been told otherwise in this thread. Those so-called "standards" were made up by random users who believed that they had some sort of authority on this topic, which they have not. Unless you see any of those fields actively used or mentioned in the default foobar2000 configuration (such as "album artist"), neither custom field is recommended over the other.
Byron86
Thank You Frank... I didn't know that it's THAT easy rolleyes.gif
PredUK
To save starting a new thread, I shall ask my question here.

Is it possible to delete an element from a layout? I wish to remove a splitter, but the only option that is close is to cut the element within the splitter/tab/whatever.
kanak
QUOTE(PredUK @ Feb 29 2008, 12:45) *

To save starting a new thread, I shall ask my question here.

Is it possible to delete an element from a layout? I wish to remove a splitter, but the only option that is close is to cut the element within the splitter/tab/whatever.


No splitter exists by itself, so you can simply replace the parent splitter of the splitter you want to remove with a non-splitter element (like albumlist or whatever) temporarily, and then replace the albumlist with the contents you want.
PredUK
QUOTE(kanak @ Feb 29 2008, 18:00) *

No splitter exists by itself, so you can simply replace the parent splitter of the splitter you want to remove with a non-splitter element (like albumlist or whatever) temporarily, and then replace the albumlist with the contents you want.
That works...thanks. Just wondered if there was a way I missed to do what I wanted, instead of a workaround. But a workaround still works so it's all good!
Xezzy
QUOTE(Byron86 @ Mar 1 2008, 00:49) *

IPB Image

Changed the colors, Facets, Statusbar, Playlist and some other things...


How did get rating in playlist view?
kanak
QUOTE(Xezzy @ Mar 1 2008, 06:03) *

How did get rating in playlist view?


He's probably using a font with those characters, and then using Character Map to find & put them in the code for the ratings column.
ArtMustHurt
QUOTE(Xezzy @ Mar 1 2008, 04:03) *

QUOTE(Byron86 @ Mar 1 2008, 00:49) *

IPB Image

Changed the colors, Facets, Statusbar, Playlist and some other things...


How did get rating in playlist view?

yeah i wanna know this as well biggrin.gif
Garfield4
QUOTE(ArtMustHurt @ Mar 5 2008, 21:49) *

QUOTE(Xezzy @ Mar 1 2008, 04:03) *

QUOTE(Byron86 @ Mar 1 2008, 00:49) *

IPB Image

Changed the colors, Facets, Statusbar, Playlist and some other things...


How did get rating in playlist view?

yeah i wanna know this as well biggrin.gif


I use this with default ui font:

In Preferences goto Playlist View and click the Add New button

$if(%rating%,$select(%rating%,★,★★,★★★,★★★★,★★★★★)))

Byron86
This is what I use for my Rating column:

CODE
$if(%rating%,$repeat($char(9733),%rating%),$char(9734))
ArtMustHurt
do you need to add a new meta value so you can add the rating to the tags?
ArtMustHurt
could someone show me how to get the ratings working with the use of facets?
Ritsl
QUOTE(ArtMustHurt @ Mar 7 2008, 12:57) *

could someone show me how to get the ratings working with the use of facets?

This thread contained all the info I needed.
ArtMustHurt
QUOTE(Ritsl @ Mar 7 2008, 13:33) *

QUOTE(ArtMustHurt @ Mar 7 2008, 12:57) *

could someone show me how to get the ratings working with the use of facets?

This thread contained all the info I needed.

awesome...works fine now biggrin.gif thanks alot!!!
elite818
QUOTE(nightfishing @ Oct 21 2007, 16:13) *

One day with the beta

IPB Image

I was wondering how to move the buttons to the middle of the page like in the pic?
nightfishing
You need to add the UI element "Toolbar header" and then you can add buttons to the toolbar.
elite818
QUOTE(nightfishing @ Mar 15 2008, 23:05) *

You need to add the UI element "Toolbar header" and then you can add buttons to the toolbar.

Thanks!
Fishy Joe
QUOTE(Mowbrayster @ Feb 28 2008, 11:16) *

I absolutley love the new foobar. However, I noticed that with album list you can longer just click on a folder or album and it be sent to the playlist, you now have to press ENTER.

Is there any way of changing this?


I have a follow-on question from the above. Is it possible to have the album list on the left and a full playlist on the right, such that selecting an item in the album list will change focus to that item in the playlist?

Currently album list and facets replace the playlist with the selected item. I would like the full "all items" playlist to remain, and merely the focus change.

Hope that's clear smile.gif
labou
I have two questions:

1. Can I change the play button from the columns to something else?(The way it was when it first came out was better imo)

2. Does anyone know the number to have ratings just be circles?
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.