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: foo_uie_single_column_playlist (Read 736647 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

foo_uie_single_column_playlist

Reply #900
Thanks for the update. Glad to see that arrow up now jumps correctly over the group descriptions.


foo_uie_single_column_playlist

Reply #902
Maybe I am not say something stupid now because I don't know what
I like the way you can modiy the playlist the way you want.
I miss just some things:
- drag and drop for the titles
- the option  set goup rows to zero and so not appearing in playlist
- maybe something similar to a header so that you can easy sort music as  you want (I use some buttons for some sorting)

And really for the newbies a really good tutorial because I found it really hard to modify the playlist

foo_uie_single_column_playlist

Reply #903
Ooh, the UI has become ultra slow now! When I switch through playlists, there's a very noticable lag. Between redrawing everything is grey. OK, I'm only on an intel p3/800 thinkpad, but this is not quake3?

foo_uie_single_column_playlist

Reply #904
I can confirm the selection bug aswell.
Squeller, What size is your playlists? My tiny 2000 track lists take no more than a split second to draw.

foo_uie_single_column_playlist

Reply #905
Squeller, What size is your playlists? My tiny 2000 track lists take no more than a split second to draw.
With the bigger playlists, which have about 1500 entries, I see grey for about half a second. But with the small ones (100 entries) the look and feel is still as if it was bloatware, maybe 0.2 seconds of grey.

foo_uie_single_column_playlist

Reply #906
is there any way for the group display to know whether it is singles or album? i can get it to work in the item display but not in the group.

Also is there a way to create a playlist of just singles / or just albums?

foo_uie_single_column_playlist

Reply #907
You can control whether headers appear or not by making the result of the Group By box be !noheader! - for example, mine is:

Code: [Select]
$ifgreater($num(%totaltracks%,2),01,%album%%disc%,!noheader!)


Which results in albums getting headers and singles not. Singles are denoted by their TOTALTRACKS tag, Which should be set to 1.

foo_uie_single_column_playlist

Reply #908
mmh, strange behaviour in the newest version:
when I select mulitple files with shift or strg and left-click to edit their properties it selects only a single file
but I think this is due to the rewriting of the keyboard/mouse handling

foo_uie_single_column_playlist

Reply #909
Yeah, If you read a few posts back, Some people noticed that. terrestrial will probably fix it for the next revision

foo_uie_single_column_playlist

Reply #910
You can control whether headers appear or not by making the result of the Group By box be !noheader! - for example, mine is:

Code: [Select]
$ifgreater($num(%totaltracks%,2),01,%album%%disc%,!noheader!)


Which results in albums getting headers and singles not. Singles are denoted by their TOTALTRACKS tag, Which should be set to 1.


AHHHH i hadnt set my singles to have 1 as the total tracks. now it all makes sense thank you

Is !noheader! suppose to not show the header? for me it actually outputs the text "!noheader!"

foo_uie_single_column_playlist

Reply #911
put it in the "Group By" area

foo_uie_single_column_playlist

Reply #912
.. and make sure you're running one of the latest versions

foo_uie_single_column_playlist

Reply #913
Thanks for the component

Only the simple 'space' will separate words. All other breaking symbols in unicode fonts are treated as non-breaking joiners.

Example
Code: [Select]
$replace(
$substr(%path%,$strstr(%path%,$meta(artist,0)),$strrchr(%path%,'\'))
,\, \ )

appending a zero-width space, instead of regular spaces, on both sides of backslashes will not have the effect of \ appearing to separate words

foo_uie_single_column_playlist

Reply #914
My group display looks like this:

Code: [Select]
$drawrect(0,0,0,0,brushcolor-35-35-35 pencolor-0-0-0)

$alignabs(100,5,$add(%_width%,-107),30,left,top)
$font(tahoma,15,bold,200-200-200)
$if2(%album artist%,%artist%)
$font(tahoma,12,bold,200-200-200)%album%
blah blah blah


Which gives a look like this:



As you can see in the group display, it's %artist% %album% (in the smaller font). This works great, however on really long artist and album titles, like "Agoraphobic Nosebleed - PCP Torpedo & ANbRX" the text is too wide for the single column playlist. Is there any way to make ellipses for "%artist% %album%" that is too wide to fit in the column? If not ellipses, is there a way to use $cut(x,y) that would encapsulate %artist% and %album%?

Thank you.

edit:

Yotsuya gave me the following sample code:

Code: [Select]
$drawrect(0,0,0,0,brushcolor-35-35-35 pencolor-0-0-0)

$alignabs(100,5,$add(%_width%,-107),30,left,top)

$left(
$font(tahoma,15,bold,200-200-200)
$if2(%album artist%,%artist%)
$font(tahoma,12,bold,200-200-200)
%album%
,30)
$ifgreater($len(
$font(tahoma,15,bold,200-200-200)
$if2(%album artist%,%artist%)
$font(tahoma,12,bold,200-200-200)
%album%
),30,...,)


However, $left() applies to the text inside the parenthesis, not the variable %album%.

foo_uie_single_column_playlist

Reply #915
heh, sorry I thought it would process the $font, I guess it doesnt because it's not a real titleformat command. try this:

Code: [Select]
$drawrect(0,0,0,0,brushcolor-35-35-35 pencolor-0-0-0)

$alignabs(100,5,$add(%_width%,-107),30,left,top)

$font(tahoma,15,bold,200-200-200)
%album artist%
$font(tahoma,12,bold,200-200-200)
$left( %album%,$sub(30,$len(%album artist%)))
$ifgreater($len(%album artist% %album%),30,...,)


Notes:
- You dont need to do $if2(%album artist%,%artist%) because foobar automatically maps %artist% for any missing %album artist%
- The position to clip the album name will change with the length of the artist name, so you want to apply the caclulations on the entire string not just %album%

 

foo_uie_single_column_playlist

Reply #916
Before:


After:


I normally use SCPL but sometimes I switch via hotkey to my lyrics layout, after switching back from my lyrics layout to my SCPL layout playlist is like in the after screenshot. This can be fixed just like LXtreme said, switch to another playlist and it is shown correctly...


do you think you could post your config for the scpl?

foo_uie_single_column_playlist

Reply #917
Question to those of you with graphic overlay (more so png) intensive setups, does it lag when you scroll (fast)?

foo_uie_single_column_playlist

Reply #918
Odd behavior with new selections?

Well I've noticed that the new SCPL allows us to click on a header to select all the items in the group.. this is nice. It even allows Ctrl+Click on multiple headers to select multiple groups. The problem though is that if I right click on selected tracks, the selection changes to only the track I right clicked on. This is particularly bothersome when trying to tag multiple tracks to make an album. I did notice though, that Ctrl+Rightclick will work in the way normal rightclick was expected.

foo_uie_single_column_playlist

Reply #919
Little question :
I have 6 images (named 0s1.png, 1s1.png, 2s1.png, 3s1.png, 4s1.png and 5s1.png), I want to display the firt one when %rating% = 0, the second when %rating% = 1.....
I try this but it doesn't work :
Code: [Select]
if(%rating%,$imageabs(604,0,images\$get(rating)s1.png,),$imageabs(604,0,images\0s1.png,))


Can you help me ?

foo_uie_single_column_playlist

Reply #920
How can i show the icon for the codec of an album?
Ive been trying:

$imageabs2(30,30,,,30,30,,$add(28,$mul(-17,%tracknumber%)),images\icons\%codec%.ico,)

foo_uie_single_column_playlist

Reply #921
change the ico file extensions to png......put them in a different folder first though as they wont work in explorer if you dont
My Name is Sean and I'm here to leech off your genius.


foo_uie_single_column_playlist

Reply #923
Can we get some sort of $set_global() and $get_global() support?

I'm basically looking to store a variable between groups. I'd like to have only the first group that belongs to an artist to display the artist's name. The groups afterwards that belong to the same artist would just have blank space. The look I'm going for is the WMP11 look.

foo_uie_single_column_playlist

Reply #924
Is there a way simelar to !noheader! in group display, to control item display, or is it impossible to control playlists this way?
Can't wait for a HD-AAC encoder :P