Help - Search - Members - Calendar
Full Version: foo_uie_single_column_playlist
Hydrogenaudio Forums > Hosted Forums > foobar2000 > 3rd Party Plugins - (fb2k)
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28
...Just Elliott
mguander:
CODE
$imageabs2(85,85,0,$add($mul(%_height%,$sub(%tracknumber%,2)),$muldiv(%_height%,5,6)),,,10,,$replace(%path%,%filename_ext%,cover.jpg),)

...works fine for me.
kockroach
Hi terrestrial, I was just wondering if you were considering putting the !noheader! option in the "Group Display" section. Yotsuya brought it up originally, and I agree that it might make more sense to have it there rather than in the "Group By" section.

Thanks!
...Just Elliott
QUOTE(...Just Elliott @ Sep 27 2006, 13:09) *

Quick question - what's the best way to do alternating backgrounds?

anybody?
kockroach
QUOTE(...Just Elliott @ Sep 27 2006, 09:40) *

anybody?

Try this:
CODE
$ifequal($mod(%_playlist_number%,2),0,$drawrect(130,0,0,0,brushcolor-250-250-250 pencolor-240-240-240),$drawrect(130,0,0,0,brushcolor-255-255-255 pencolor-240-240-240))


Just change the colors and size to suit.
terrestrial
QUOTE(Sw!ng @ Sep 27 2006, 03:29) *

Looks like this is going to be a great component, too !! (better say it IS ... but beta tongue.gif )
Unfortunatly it cant replace the conventional Playlistview for me, yet. -Since I often use it for editing single Meta-Fields.

Is such a function going to be implented ??
(you know: doubleclickin in a Column, and editing the Artist-Tag, for example.)

Or is it allready implemented, and I didnt recognize ??

.THNX.


No in-place editing of fields, sorry. Too difficult to do with different fonts / positions / variables.

QUOTE(cartman(2vd) @ Sep 27 2006, 05:43) *

research report:
ok i did some more testing on this and it surely looks like there is some problem with handling images (maybe in "+ fixed centering/resizing bug" or new "gdi release images" feature). When i restarted my foobar this noon this code
CODE
$imageabs2(,,0,0,46,46,295,1,$replace(%path%,%filename_ext%,folder.jpg),)

did just as it is meant to = did no resize (strange because yesterday it did but without foobar restart!)

so new research progress is. If you change something in code with imageabs2 and click apply some images disappear but after you restart foobar some of then appear and acts like they should. To speak the truth after restart almost every image works (but still not all of them:()

does anybode else encountering this behavior?


images are loaded and resized once, then cached in memory. if you change the resize, you will still get the old cached copy (which may be a different size).

QUOTE(kockroach @ Sep 27 2006, 09:27) *

Hi terrestrial, I was just wondering if you were considering putting the !noheader! option in the "Group Display" section. Yotsuya brought it up originally, and I agree that it might make more sense to have it there rather than in the "Group By" section.

Thanks!


The group by determines the grouping and count of items, so anything affecting that would have to go there. I can maybe get _itemcount and _itemindex to work inside the group by section, depending on what the performance is like (it has to be very fast, as the the entire playlist has to be indexed).


QUOTE(...Just Elliott @ Sep 27 2006, 09:40) *

QUOTE(...Just Elliott @ Sep 27 2006, 13:09) *

Quick question - what's the best way to do alternating backgrounds?

anybody?


I use this:

CODE

$ifequal($mod(%_playlist_number%,2),0,$drawrect(0,0,0,0,pencolor-0-0-0 alpha-30),)

kockroach
QUOTE(terrestrial @ Sep 27 2006, 09:52) *

QUOTE(kockroach @ Sep 27 2006, 09:27) *

Hi terrestrial, I was just wondering if you were considering putting the !noheader! option in the "Group Display" section. Yotsuya brought it up originally, and I agree that it might make more sense to have it there rather than in the "Group By" section.

Thanks!


The group by determines the grouping and count of items, so anything affecting that would have to go there. I can maybe get _itemcount and _itemindex to work inside the group by section, depending on what the performance is like (it has to be very fast, as the the entire playlist has to be indexed).

The reason why I ask is that I want to hide the header of songs that are part of a random list of songs.
Currently I use this in the "Group By":
CODE
%codec% %date% %album artist% %album%

For the "Group Display" this is how I choose what to display (this code doesn't include all of the font and color code):
CODE
$puts(group0,$if($stricmp(%_itemcount%,$substr(%track%,4,5)),%album artist%,%artist%))
$puts(group1,$if($stricmp(%_itemcount%,%totaltracks%),%album artist%,%artist%))
$if($stricmp(%codec%,FLAC),$get(group0))
$if($stricmp(%codec%,MP3),$get(group1))
$if($stricmp(%codec%,CDDA),$get(group1))

This will group my albums with headers exactly the way I want, but for individual songs (wether a single or a song from an album) in a random list it gives a header for each song.

Here is a view of a album based list:
IPB Image

Here is a view of a random playlist:
IPB Image


Ideally I would like to have a single header for a group of random songs, but I don't think it is possible. So what I would like to do is to hide the headers that appear for individual songs. From what I can tell, there is no way to do that without have a "no header" option which could result in the first two lines of the "Group Display" to look like this:
CODE
$puts(group0,$if($stricmp(%_itemcount%,$substr(%track%,4,5)),%album artist%,!noheader!))
$puts(group1,$if($stricmp(%_itemcount%,%totaltracks%),%album artist%,!noheader!))


QUOTE(terrestrial @ Sep 27 2006, 09:52) *

images are loaded and resized once, then cached in memory. if you change the resize, you will still get the old cached copy (which may be a different size).

Also, how can you refresh the cache with a new image or a resize?
Thanks!
mquander
QUOTE(...Just Elliott @ Sep 27 2006, 06:57) *

mguander:
CODE
$imageabs2(85,85,0,$add($mul(%_height%,$sub(%tracknumber%,2)),$muldiv(%_height%,5,6)),,,10,,$replace(%path%,%filename_ext%,cover.jpg),)

...works fine for me.


My code looks like that too, but it seems to retain the aspect ratio of the original image, which isn't very nice if you want a no-cover image or a "cd case" style wrapper image.
int
Since updating to 0.3.2, my titles/albums have started wrapping onto the next level down (if they're too wide to fit), covering up any information i've got there. Any way to stop this from happening?
Spirit_of_the_ocean
I don`t know what I am doing wrong but single column playlist does't seems to work. It is not correct installed and not shown under "components"

What can I do?
Yotsuya
Spirit of the ocean:

- Do you have .NET v2.0 installed on your system?
- Do you have the latest version of ColumnsUI on your system?
- Have you tried redownloading singlecolumnplaylist and overwriting your existing .dll?
- Check the foobar console window, do you receive any error message regarding the inability to load this component?
Spirit_of_the_ocean
QUOTE(Yotsuya @ Sep 27 2006, 18:21) *

Spirit of the ocean:

- Do you have .NET v2.0 installed on your system?

No just Verion 1.1
QUOTE

- Do you have the latest version of ColumnsUI on your system?

YES
QUOTE

- Have you tried redownloading singlecolumnplaylist and overwriting your existing .dll?

Yes I tried this smile.gif
QUOTE

- Check the foobar console window, do you receive any error message regarding the inability to load this component?


Yes you are right

So this means I need to install .Net 2.0
kockroach
QUOTE(apathy @ Sep 25 2006, 12:26) *

Just updated and its great smile.gif

But now my playlist is messed up at the bottom. The last song shouldnt be there, when u click on it foobar just crashes crying.gif

I am seeing this problem now too. It only just appeared, and I have been using the most recent version for a little while. Also, it isn't just showing the last song, sometimes it is another song just up the list. It might be related to the redrawing of the panel when scrolling down the list.

Edit: It seems that it occurs if the panel's vertical size is not a multiple of the row height.
Generalverdacht
one simple question: do i have to rename my album art to some special way? or is there already a way like in albumart to search for different filenames?
Yotsuya
There is no wildcard support like in albumart, however you can use stuff like:
[%album artist% - ]%album%.jpg

So yes, you have to name your art by some system, but it's up to you what that system is as long as you can reference it with a titleformat string.
alphaex32
Could you make it so that the context menu of the group header is the same as if the whole group is selected (rather than just using the first item in the group)?

Btw, does this plugin support the button function like trackinfo_mod?
cartman(2vd)
QUOTE(alphaex32 @ Sep 28 2006, 04:36) *

Could you make it so that the context menu of the group header is the same as if the whole group is selected (rather than just using the first item in the group)?


thats neat idea i second that.
joule
Have you discussed the following possibility yet:

Only displaying the group headers and when clicking any header it expands/collapses. I.e a playlist with expandable/collapsible albums.
Moe-loves-ayumi
I made a reflect below the covers :

IPB Image

The code is horrible because I didn't find any way to make a loop. It's slow because foobar2000 has to draw each line of the image. Add lines to $imageabs2() if your Row height is greater than 15.
CODE
// set the size of the image
$puts(image_size,150)
// refer to %_itemindex% : line to start to draw the reflect
$puts(index_start,9)
// set alpha-xxx
$puts(image_alpha,200)
// set the path of glow_album_reflet.png
// example :
// $puts(image_path,C:\Documents and Settings\USer\Application Data\foobar2000\images\glow_album_reflet.png)
$puts(image_path,)

$ifgreater(%_itemindex%,$sub($get(index_start),1),
$puts(indexsup,$sub(%_itemindex%,$sub($get(index_start),1)))
$puts(hauteursup,$sub($add($get(image_size),%_height%),$mul(%_height%,$get(indexsup))))

$ifequal($get(indexsup),1,$drawrect(-5,0,$get(image_size),1,brushcolor-235-235-235 pencolor-235-235-235),)

$imageabs2($get(image_size),$get(image_size),,$get(hauteursup),,1,,,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),1),,1,,1,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),2),,1,,2,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),3),,1,,3,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),4),,1,,4,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),5),,1,,5,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),6),,1,,6,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),7),,1,,7,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),8),,1,,8,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),9),,1,,9,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),10),,1,,10,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),11),,1,,11,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),12),,1,,12,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),13),,1,,13,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),14),,1,,14,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))
$imageabs2($get(image_size),$get(image_size),,$sub($get(hauteursup),15),,1,,15,$replace(%path%,%filename_ext%,folder.jpg), alpha-$get(image_alpha))

// glow
$imageabs2($get(image_size),$get(image_size),0,$sub($mul($sub($get(indexsup),1),%_height%),1),,,0,,$get(image_path),)
,
)


I use this image as glow_album_reflet.png :

IPB Image
MrEnergizer
Kockroach writes "Ideally I would like to have a single header for a group of random songs, but I don't think it is possible. So what I would like to do is to hide the headers that appear for individual songs. From what I can tell, there is no way to do that without have a "no header" option which could result in the first two lines of the "Group Display" to look like this:"

As nobody has replied to this Im not sure if this can be done. I rarely listen to full albums and would like my singles to be displayed by Artist - Title in the playlist with no header what string do I use for this? Is it possible to have both albums and singles together properly displayed in the same playlist?
Thanks
mazy
that's insane, Moe-loves-ayumi! imho even with loops it wouldn't be much faster (only easier to code).

imho there could be some additional options for $imageabs2 to horizontally / vertically flip images. this would come handy even in case of indicators like arrows etc., you wouldn't have to have image for each direction / orientation. with gdi+, terrestrial could as well add support for arbitrary rotation, but i'm not sure it would be of much use. maybe for some sort or circular animated progress thingy ...
marc2003
QUOTE(MrEnergizer @ Sep 28 2006, 14:57) *

Kockroach writes "Ideally I would like to have a single header for a group of random songs, but I don't think it is possible. So what I would like to do is to hide the headers that appear for individual songs. From what I can tell, there is no way to do that without have a "no header" option which could result in the first two lines of the "Group Display" to look like this:"

As nobody has replied to this Im not sure if this can be done. I rarely listen to full albums and would like my singles to be displayed by Artist - Title in the playlist with no header what string do I use for this? Is it possible to have both albums and singles together properly displayed in the same playlist?
Thanks


it's easy enough to display albums and singles in the same playlist. but because you are grouping albums by the %album% tag, this means for singles you need to remove the %album% tag altogether. if that's not viable, then you might as well stop reading now...... tongue.gif

IPB Image

group by
CODE
%album%


item display
CODE
$if(%tracknumber%,%tracknumber%'. ',)
$if($or($meta(album artist),$not(%tracknumber%)),%artist%' - ',)
%title%


group display
CODE
$if(%album%,
$if2(%album artist%,%artist%)' - '%album%' ''('%date%')'
,
SINGLES
)
R2D2
QUOTE(kockroach @ Sep 27 2006, 13:57) *

I am seeing this problem now too. It only just appeared, and I have been using the most recent version for a little while. Also, it isn't just showing the last song, sometimes it is another song just up the list. It might be related to the redrawing of the panel when scrolling down the list.

Edit: It seems that it occurs if the panel's vertical size is not a multiple of the row height.


Actually, you're right. I tried resizing the window until its height was a multiple of 14 (my row height), and that little annoyance was gone.
Thank you.
chaosblade
Thanks a bunch for the !noheader! stuff. Should be better for me to mess around with smile.gif
Quick question prolly answered before - whats the basic-most code to make headers span across two lines?

EDIT: i swear i didn't see that "group rows" selection before XD
int
QUOTE(int @ Sep 27 2006, 17:40) *

Since updating to 0.3.2, my titles/albums have started wrapping onto the next level down (if they're too wide to fit), covering up any information i've got there. Any way to stop this from happening?


^^
bozo950
i got a question about code:
for exemple the code %path%\cover.jpg give me:
E:\Mes Documents\Ma musique\Blues Brothers\19 - Think.mp3\cover.jpg

how can i remove the 19 - Think.mp3

what's the code i should use to get this:
E:\Mes Documents\Ma musique\Blues Brothers\cover.jpg
Frank Bicking
bozo950:

CODE
$replace(%path%,%filename_ext%,)cover.jpg
bozo950
thx laugh.gif
Strictly4me
My singleplaylist.
Thanks to all guys to inspire me for this config.

Font: Link providing illegal download of "Arial Unicode MS" font removed by moderation (necessary for playing songs blinking arrow)

Row Height: 30
Group Row:3

Group by:
CODE
%album%


Item Display:
CODE
$if($strcmp($mod(%_playlist_number%,2),1),
$drawrect(,,,,brushcolor-50-50-50 pencolor-null))
$padding(3,1)

$font(calibri,9,bold,210-210-210)
$if(%_isplaying%,
$select($add(1,$mod(%_time_elapsed_seconds%,2)),$rgb(255,255,255),$rgb(72,72,255)))%title%
$font(Arial Unicode MS,9,,210-210-210)
$if(%_isplaying%,
$select($add(1,$mod(%_time_elapsed_seconds%,2)),$rgb(255,255,255)'➨',$rgb(72,72,255)'➨'))

$alignabs(3,15,%_width%,%_height%,,)
$font(calibri,8,cleartype,210-210-210)
[%length% | ]
[%bitrate% kbps]

$alignabs(-3,3,$sub(%_width%,2),%_height%,right,)
$font(Wingdings,9,glow-72-72-255 glowexpand-1,250-250-250)
$repeat(«,%rating%)

$alignabs(-3,15,$sub(%_width%,2),%_height%,right,)
$font(calibri,8,cleartype,210-210-210)
[%play_counter%x]
$if(%cwb_queueindex%, '['%cwb_queueindexes%/%cwb_queuelength%']')


Group Display:
CODE
$drawrect(0,0,0,0,brushcolor-160-160-160 pencolor-null)
$imageabs2(86,86,,,,,2,2,'default.jpg',)
$imageabs2(86,86,,,,,2,2,$replace(%path%,%filename_ext%,)folder.jpg,)

$font(Tahoma,12,glow-72-72-255 glowexpand-0,255-255-255)
$alignabs(100,2,$add(%_width%,-107),20,left,top)
$if2(%album artist%,%artist)
$alignabs(100,22,$add(%_width%,-107),20,left,top)
$upper(%album%)
$alignabs(100,44,$add(%_width%,-107),20,left,top)
$font(,10,glow-72-72-255 glowexpand-0,)'('%date%')'


Looks like so:

IPB Image

((((( Strictly4me )))))
kalmark
QUOTE(Strictly4me @ Sep 29 2006, 12:12) *

Font: Link providing illegal download of "Arial Unicode MS" font removed by moderation (necessary for playing songs blinking arrow)

I managed to substitute Arial Unicode MS with Deja Vu Sans for some things, it might be good for this purpose too. And it's free.
Moe-loves-ayumi
Is it possible to add %_grouplength% or something like that ? It may allow to show the length of an album in the Group Display.
tomthomson
Is this a bug? :

When I'm scrolling upwards through my playlist with the keyboard cursors and there is a group header I have to go through the whole group header, i.e. through all the specified group rows.

When I'm doing the same downwards everything works fine.
chaosblade
I've noticed that myself. Not sure if this is intended or a bug.
Blitzmeister
QUOTE(Moe-loves-ayumi @ Sep 29 2006, 23:23) *

Is it possible to add %_grouplength% or something like that ? It may allow to show the length of an album in the Group Display.

I believe if your files are marked right then %totaltracks% is your friend. But you need all your albums marked that way.
Hope that helps,
Cheers.
Yotsuya
If you want the number of items in a group to be displayed in the header you can use %_itemcount%. However I thought moe was trying to put the total time of the items in the header, which I do not think is currently possible

EDIT: Unless you want to go and tag all your files with something like %albumlength% or some other custom tag. The header inherits the tags of the first item in the group so if you tag track 1 of an album with a custom tag containing the album's total length, you should be able to display it in the header. This is not a very good solution imo.
Moe-loves-ayumi
QUOTE(Blitzmeister @ Sep 29 2006, 17:42) *
I believe if your files are marked right then %totaltracks% is your friend. But you need all your albums marked that way.
Well, %totaltracks% is not necessary because %_itemcount% return the number of items which are grouped by %album%. %_grouplength% should return the length of the group of items as a length in seconds or minutes and seconds (ex : 46:53).

QUOTE(Yotsuya @ Sep 29 2006, 17:47) *
However I thought moe was trying to put the total time of the items in the header, which I do not think is currently possible
Yep, so I request %_grouplength% or something like that.
Ken-chan
I have another request to make:

Setting the line height dynamicaly, per example...

$if(%isplaying%,$lineheight(30),$lineheight(15))
musko
Houston, we got a problem..

Some images wont show using imageabs2() combined with $replace(%path%,%filename_ext%,)folder.jpg as a relative path to each cover.

Ive done some testing and found that if the '#' char is in the folderpath to the actual image it wont display at all. But if change # to something else it works..

wtf?? blink.gif
chaosblade
Even the latest versions still crash when double-clicking on anywhere that isnt an item\header. It really shouldn't take foobar down.

For example, make a new playlist and put one song into it. click anywhere in the playlist outside of that song's item rectangle.
kockroach
QUOTE(ChaosBladE @ Sep 30 2006, 11:55) *

Even the latest versions still crash when double-clicking on anywhere that isnt an item\header. It really shouldn't take foobar down.

For example, make a new playlist and put one song into it. click anywhere in the playlist outside of that song's item rectangle.

Yep, I can confirm it on my end too. Also, when I do this, ZoneAlarm says that foobar2000.exe is trying to access dwwin.exe (error reporting), but does not produce a failure.txt file in the fb2k directory.
cacko
Hi,

can foo_uie_single_column_playlist use album art from matroska file (like in the foo_uie_albumart_mka -> matroska:front.jpg) ?
chaosblade
i don't think it reads images from tags.. might be wrong.
bagj629
Does anyone know what I should add to this code in order to have Foobar ignore a song's tags. I want Foobar to ignore all tags on my "Single Tracks -s-" folder. Here's the code im using now along with foo_cwb_hooks:
CODE
$if($strchr(%playlist_name%,-s-),!noheader!,
$if(%tracknumber%,%album%%discnumber%,!noheader!)
)



So far this code has been great with removing headers from my Single Tracks -s- folder, but I really want it to ignore the songs' tags too. Thanks for the help!
Yotsuya
What do you mean by "ignore the song's tags" ?
bagj629
Sorry if I'm confusing. If the song is labeled as a single, I don't want the song's tag displayed, I just want the filename shown. Does that make any sense?
Yotsuya
That would be done from your item display box. Something like:

CODE
$if(%tracknumber%,
%tracknumber%. [%artist% - ]%title%
,
%filename_ext%
)


But it all really depends on (1) How do you "label a song as a single" and (2) What other code do you use in the item display box.
bagj629
Well I'm using foo_cwb_hooks and the folder which all my single tracks are located in is called "Single Tracks -s-". Using that along with the code from my earlier post, the headers are removed from songs in the "Single Tracks -s-" folder.

This is the code being used in my Item Display Box:
CODE

$if($strcmp($mod(%_playlist_number%,2),1),
$drawrect(,,,,brushcolor-231-235-239 pencolor-null))
$if(%_selected%,$drawrect(0,0,0,0,brushcolor-null pencolor-SYSCOL-6))
$padding(6,0)
$font(calibri bold,9,,120-120-120)[$num(%tracknumber%,2)'. ']
$font(calibri bold,9,$if(%isplaying%,underline,),120-120-120)
$replace(%title%,'(',$font(,,bold italic,204-204-204)'(')
$alignabs(6,13,%_width%,%_height%,,)
$font(CubicFive10,6,nocleartype,170-170-170)
[%length% | ]
[%bitrate% kbps]
$align(right,bottom)['('%comment%')']
CepiPerez
QUOTE(bozo950 @ Sep 29 2006, 06:26) *

i got a question about code:
for exemple the code %path%\cover.jpg give me:
E:\Mes Documents\Ma musique\Blues Brothers\19 - Think.mp3\cover.jpg

how can i remove the 19 - Think.mp3

what's the code i should use to get this:
E:\Mes Documents\Ma musique\Blues Brothers\cover.jpg


If you have all your music in "Ma musique" folder the try this code:
E:\Mes documents\Ma musique\%artist%\cover.jpg
Yotsuya
bagj629:
You need to add an $if() statement to switch between different text display layouts based on wether or not the track is a single. Something like this:

CODE
$if($strcmp($mod(%_playlist_number%,2),1),
$drawrect(,,,,brushcolor-231-235-239 pencolor-null))
$if(%_selected%,$drawrect(0,0,0,0,brushcolor-null pencolor-SYSCOL-6))
$padding(6,0)
$if(%tracknumber%,
$font(calibri bold,9,,120-120-120)[$num(%tracknumber%,2)'. ']
$font(calibri bold,9,$if(%isplaying%,underline,),120-120-120)
$replace(%title%,'(',$font(,,bold italic,204-204-204)'(')
$alignabs(6,13,%_width%,%_height%,,)
$font(CubicFive10,6,nocleartype,170-170-170)
[%length% | ]
[%bitrate% kbps]
$align(right,bottom)['('%comment%')']
,
%filename_ext%
)


In this example I used %tracknumber% to determine if the track is the single, if you something else like $strstr(%directoryname%,-s-) then you'll need to change line 5
blaxima
Is there anyway to display in the header "various artist" when having multiple artists all under the same abum, like in a soundtrack for example? For me it shows as the name of the album but dispays the first artist name only.
Raan
QUOTE(blaxima @ Sep 30 2006, 22:21) *

Is there anyway to display in the header "various artist" when having multiple artists all under the same abum, like in a soundtrack for example? For me it shows as the name of the album but dispays the first artist name only.

Well, you could make it easy on yourself and just mark those albums with a tag and then check for that tag in the "Group by" section. rolleyes.gif
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.