Help - Search - Members - Calendar
Full Version: Columns UI / Panels UI appearance
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, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132
Yotsuya
Oops I keep forgetting about that one.. change the code like this:

CODE
/// Progress Bar ///
$if(%isplaying%,
$ifgreater(%playback_time_seconds%,1,
$drawrect(100,14,$muldiv($muldiv(100,%playback_time_seconds%,%length_seconds%),$sub(%_width%,200),100),5,brushcolor-130-130-255)
,)
$drawrect(100,14,$sub(%_width%,200),5,brushcolor-null pencolor-255-255-255)
,)


EDIT: That .6 is caused by the code that was previously ignored by your mismatched bracket. It looks like you were trying to come up with some sort of indicator based on bitrate and "flags". Maybe you should consider removing or commenting this block of code:

CODE
$puts(show,$num($muldiv(1000,$info(bitrate),1411),3))
$if(%isplaying%,$if($stricmp($get(show),1000),
$font(,,$get(font_options),250-250-250)$repeat($char(10),8)$get(active)ucm$puts(flag2,1),
'.'$substr($get(show),3,3)))
blaxima
1)Oh so it was your code laugh.gif

2)yeah i just figured that out.
I just didnt remove everything out of some stuff i was trying and didnt like the way it looked

thanx for your help
Yotsuya
Well the problem is that everythng outside of a $muldiv() gets rounded to an integer. So untill your song has been playing for atleast 1 second everything gets rounded down to a 0, and with the $drawrect() function 0 means basically "draw till the end of the panel". So adding the $ifgreater() condition like above avoids drawing the rectangle at all until the song is far enough along that we can avoid the 0.

edit: this is a bit of a hack and there are probably some very short tracks out there that would require something greater than 1. A better solution would to evaluate the entire $muldiv($muldiv()) string to be atleast 1 but 1 second works for most normal music.
Purple Monkey


I aim for a functional and informative foobar first, so I haven't covered it in eye candy yet.
Foxhawk
Well, mine's coming along nicely (to my tastes tongue.gif ) thanks to the people in this thread...



As you can see, pretty much everything is borrowed from various people in this thread... whistling.gif

The menu bars/buttons/other stuff is still there while I work on it...

Now to do something with that trackinfo panel... and the rest of the group panel dry.gif

but yea, viva foobar


oh, and for the observant ones out there, the progress bar has already been fixed
fwqhgads
oh my

you must tell me about those CD Case thingies
Foxhawk
hey... there... fwqhgads biggrin.gif

anyway, it's just some guy's case.png from earlier in the thread, slapped over an album art image.

Here's my version, which is just his case.png with some extra area cropped out.
fwqhgads
Hello.

Thanks for the info. Looks interesting.
callisto
QUOTE (blaxima @ Sep 30 2006, 20:10) *


nice layout, but what's the font in your home stereo panel which shows artist, title etc??? those dots...
I want to use it too biggrin.gif
mind posting a link (if its a free one)? or at least the name
Lolita
QUOTE (marc2003 @ Sep 28 2006, 23:47) *
QUOTE (Foxhawk @ Sep 29 2006, 07:59) *

I want to make the album art much bigger (out to the text). Experimenting with the parameters was ineffective, and I wasn't able to find a source that explains what their usage.

also, please ignore the crazy track order and all of that jazz tongue.gif


right here's my code for this setup



row height 15
group rows 6

(which gives a group height of 90. see code below to see i've set my image height/width to 84)

group display
CODE
$font(Tahoma,10,bold,118-150-173)
$imageabs2(84,84,,,,,5,3,'default.jpg',)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)folder.png,)
$alignabs(92,,$add(%_width%,-107),20,left,top)
$if2(%album artist%,%artist)
$alignabs(92,14,$add(%_width%,-107),20,left,top)
$upper(%album%)
$alignabs(92,28,$add(%_width%,-107),20,left,top)
$font(,8,,)'('%date%')'


job done. smile.gif

What is name of that windows visual style? I was using it a while ago, but can't remeber it's name.
Ran Sagy
Looks like one of the ClearLooks clones.
marc2003
QUOTE (ChaosBladE @ Oct 1 2006, 19:33) *
Looks like one of the ClearLooks clones.


indeed... smile.gif

http://www.deviantart.com/view/18591720/
adf
Well I stumbled upon this thread four days ago and saw the first foobar config and was like "THAT'S AWESOME" so I started messing around with Columns UI, and this is what I got. Mimics one of the ones on the first page. Album list is autohidden on the left.



I have one question for those of you more experienced: How do I know what song is going to start playing when I hit play? I unchecked the "playback follows cursor" so it starts playing the last played song, but I don't know how to access it. Are there variables like %cwb_next_title% only for the currently playing song? Thanks.
Acksaw


Can someone convert my FCS into foo_uie_single_column_playlist and stick the album art thing under the album and artist information on the playlist with as the backing? It would be HIGHLY appreciated!
tool++
That would take ages :\

PS

Foxhawk
QUOTE (Acksaw @ Oct 1 2006, 15:08) *
img

Can someone convert my FCS into foo_uie_single_column_playlist and stick the album art thing under the album and artist information on the playlist with
img
as the backing? It would be HIGHLY appreciated!


I think we'd need your code/FCS first tongue.gif
Sphix
@Acksaw: Mind sharing your trackinfo code?
uRT
@tool++

I just love your foobar2000-layout, it's like "eye-orgasm". Would you mind sharing your setup? I'm intrested in the trackinfo(?) below and the play-button, looks so fresh! wink.gif
callisto
thats my new one. not finished but on the way smile.gif
modified tool++ code (thx for that) to fit my needs
thx to russel777 for the trackinfo...

here it is:


greetz, callisto
zoidbergslo
tool++ your configs always looks great. Mind sharing jour single column config. Thanks
fwqhgads
QUOTE (tool++ @ Oct 1 2006, 13:59) *
That would take ages :\

PS

(image)

Sweet another Pelican fan I see.

cool.gif
tool++
Ok here's a small update, I decided to steal apple's idea of having a logo up top :]

Here's it when it's playing:





Here's it when it isn't:

Idec Sdawkminn
tool++, good choice of music.
Ran Sagy
You do brilliant stuff, tool++ smile.gif
musosticky
love it tool can I get the configs required? Would love to pick it apart for learning purposes
snively
tool that progress bar is nice.

and yes, muse most certainly does rock.
tool++
QUOTE (fwqhgads @ Oct 1 2006, 22:40) *
QUOTE (tool++ @ Oct 1 2006, 13:59) *

That would take ages :\

PS

(image)

Sweet another Pelican fan I see.

cool.gif




Pelican are rad.

I'll post configs etc tomorrow. :]
snively
yea dont forget the track info mode code either smile.gif
tool++
I also have some more ideas up my sleeve to make it more subtly graphical :]
gr8
Hi guys, I'm a newbe here, 1st of all sorry for such a long post and I hope this is the right topic to post it in smile.gif
I'm a big fan of iTunes appearence, especially iTunes 7, but like more functionality of Foobar2000 and for along time I was using an old version of foobar 0.8.3 and was pretty satisfied, but not a long time ago a friend of mine showed me some screenshots of new modified foobar with it's new plugins (single_column and info_mod) and i was really impressed. I've realized that now it's possible to make foobar look almost like iTunes 7, so I've decided to do that.
Ofcourse I understand that some things is just impossible to implement in foobar, but anyway i wanna try to get of it as much as possible, so.. here is what i wanna get as a final product:



Thanx to other people who also like iTunes appearence, here is what I've got now:



So, the 1st problem, as you see, is that the progress bar gets out of it's frame, I was using the code of moglenstar (thanx a lot bro for your help) with some modifications in pngs and also in code to fit my case, so here's the code:

CODE
// -- background gradient
$imageabs(,,itunes\trackinfo_bg1.png,)
// -- left corner image
$imageabs(,,itunes\left_bg1.png,)
// -- background gradient
$imageabs(,,itunes\trackinfo_bg1.png,)
// -- left corner image
$imageabs(,,itunes\left_bg1.png,)
// -- right corner image
$imageabs($sub(%_width%,9),0,itunes\right_bg1.png,)
// -- if foobar is paused, show the awesome apple image
$if(%ispaused%,$imageabs($sub($div(%_width%,2),14),0,itunes\apple1.png,),
// -- otherwise, show the now playing information
$if(%isplaying%,
// -- title
$padding(60,-4)
$align(center,top)%title%$char(10)
%artist% - %album%


// -- progress bar
$padding(60,30)
$drawrect(,,,9,brushcolor-null pencolor-40-40-35)
$puts(progress,$muldiv(%playback_time_seconds%,$sub(%_width%,124),%length_seconds%))
$ifgreater($get(progress),0,
$drawrect(1,1,,7,brushcolor-null pencolor-null)
$padding(,2)$drawrect(2,,$get(progress),5,brushcolor-172-176-152 pencolor-null),)

$padding(-30,-35)$font(,7,,)
$align(left,bottom)%playback_time%

$align(right,bottom)-%playback_time_remaining%
,
// -- or show no information (music stopped)
))


Is it possible to fix it? Does anybody know what seems to be the problem?
Now we're moving to a more difficult problem: making playlist look like in iTunes.
I've looked through some designs and especially i liked of these people:
Draikin - , unart - , CepiPerez -

So, here's approximately what i want it to look like:


I've tried to do it myself and spent several hours trying to make it look like I want, but i didn't manage to overlay cdcase.png over my album artworks, and now I just give up. I believe there are some people here, that for them to manage a thing like this is a matter of minutes, so I ask if someone is willing to help me in this, I'm using original pictures(case and nocover)of Draikin.
Or atleast if someone could explain me how to use with these functions (i mean how can i know what are the parameters and what they mean): $imageabs, $imageabs2, $alignabs, $drawrect and some other u think i need to use in order to do this.
When, I'll finish this, I'll post all the setings for iTunes-Foobar2000 lovers smile.gif
Thanx in advance
bozo950
richardtodd
QUOTE (bozo950 @ Oct 1 2006, 18:06) *



can i get those buttons bozo?
NappyHead
[quote name='richardtodd' date='Oct 1 2006, 16:43' post='436929']
[quote name='bozo950' post='436926' date='Oct 1 2006, 18:06']

[/quote]


Very nice, can you please share your config.

Thanks

NH
Chase
QUOTE (tool++ @ Oct 1 2006, 15:41) *
Ok here's a small update, I decided to steal apple's idea of having a logo up top :]

Here's it when it's playing:





Here's it when it isn't:





Your BB style looks nice, too. You really bring it all full-circle. Way to keep things simple and pretty, man. Awesome, as usual. How about a desktop shot? I'd like to see your setup.
eejadx
QUOTE (CepiPerez @ Sep 27 2006, 17:20) *
About this skin:



­...

CepiPerez,
Thanks for your config, it looks real good!

But I have a problem with your Single Column config:
track title wont display unless I set Calibri font size to 7 instead of 8 (take a look at my screenshot, the Now Playing track). Any idea?



Thanks, Marc
cLess-R34
New Foobar layout from me today happy.gif



It looks a little dull, but this one is tweaked out for minimal CPU-cycle disturbance (as I use a slow old CPU and play Q3CPMA games at the same time) and small RAM usage.
Comes in at about 4,000 KB RAM usage, and CPU rarely jumps to 2-10% on track changes etc.

Thanks to Tool++ and others in this thread for awesome strings, scripts, your guidance and patience.
CepiPerez
QUOTE (eejadx @ Oct 1 2006, 21:52) *
QUOTE (CepiPerez @ Sep 27 2006, 17:20) *

About this skin:



­...

CepiPerez,
Thanks for your config, it looks real good!

But I have a problem with your Single Column config:
track title wont display unless I set Calibri font size to 7 instead of 8 (take a look at my screenshot, the Now Playing track). Any idea?



Thanks, Marc


Did you modify the code?
Post the code, then I'll tell you where's the problem.
musko
Cough Cough.. Another one based on Cepiperez code. tongue.gif
Simple, Clean and pretty nice looking..
bozo950
QUOTE (NappyHead @ Oct 1 2006, 15:56) *
QUOTE (bozo950 @ Oct 1 2006, 18:06) *




Very nice, can you please share your config.

Thanks

NH

@richardtodd:here it is the buttons

the config is a mod/mix from tool+ and ceciperez configs:
group by
CODE
%album%

item display
CODE
$ifequal($mod(%_playlist_number%,2),0,
$drawrect(0,0,0,0,brushcolor-230-230-230 pencolor-null),
$drawrect(0,0,0,0,brushcolor-245-245-245 pencolor-null))

$if(%_selected%,$drawrect(0,0,0,0,brushcolor-200-200-200 pencolor-null))
//$if(%_focused%,$drawrect(246,0,0,0,brushcolor-null pencolor-null))
//$if(%_selected%,$textcolor(SYSCOL-9),$textcolor(SYSCOL-8))
$if(%_isplaying%,$textcolor(SYSCOL-9),)
$if(%_isplaying%,$drawrect(246,0,0,0,brushcolor-40-40-40 pencolor-null))

$font(calibri,8,boldshadow glowalpha-50,70-70-70)
$alignabs(5,-1,$sub(%_width%,300),12,,)%tracknumber% - %title%
$alignabs($sub(%_width%,127),-1,120,20,right,)%length%
$alignabs(10,10,220,110,,)$font(calibri,8,bold,170-170-170)
%bitrate%  kb/s
$alignabs($sub(%_width%,126),13,120,20,right,)
$font(wingdings,6,bold,170-170-170)$repeat(,%rating%)

$if(%isplaying%,
$drawrect(0,0,0,0,brushcolor-90-90-90 pencolor-null)
$alignabs(0,4,900,200,,)$font(Wingdings 3,10,boldshadow,250-250-250)$char(117)
$font(calibri,8,boldshadow glowalpha-150,)
$alignabs(18,-1,$sub(%_width%,318),12,,)%tracknumber% - %title%
$alignabs($sub(%_width%,127),-1,120,20,right,)%length%
$alignabs(18,10,120,110,,)$font(calibri,8,boldshadow glowalpha-150,180-180-180)
%bitrate%  kb/s
$alignabs($sub(%_width%,126),13,120,20,right,)
$font(wingdings,6,boldshadow glowalpha-120,180-180-180)$repeat(,%rating%)
)

group display
CODE
$font(calibri,12,boldshadow glowalpha-155,240-240-240)
$imageabs2(,,,,,,,,'C:\Program Files\foobar2000\images\backg4.png',)
$imageabs2(85,85,,,,,1,1,'C:\Program Files\foobar2000\images\noalbum.png',)
$imageabs2(85,85,,,,,1,1,$replace(%path%,%filename_ext%,)folder.jpg,)
$imageabs2(85,85,,,,,1,1,$replace(%path%,%filename_ext%,)folder.png,)
$imageabs2(85,85,,,,,1,1,'C:\Program Files\foobar2000\images\artoverlay.png',)
$alignabs(90,45,$add(%_width%,-107),20,left,top)
$if2(%album artist%,%artist)
$alignabs(90,58,$add(%_width%,-107),20,left,top)
$upper(%album%)
$alignabs(90,72,$add(%_width%,-107),20,left,top)
$font(,8,,)'('%date%')'
Acksaw
QUOTE (Foxhawk @ Oct 1 2006, 20:23) *
QUOTE (Acksaw @ Oct 1 2006, 15:08) *


img

Can someone convert my FCS into foo_uie_single_column_playlist and stick the album art thing under the album and artist information on the playlist with
img
as the backing? It would be HIGHLY appreciated!


I think we'd need your code/FCS first tongue.gif


Oops, forgot to link it, www.slyck.p4h.biz/myfcs.fcs
joule
QUOTE (cLess-R34 @ Oct 2 2006, 03:41) *
New Foobar layout from me today happy.gif



It looks a little dull, but this one is tweaked out for minimal CPU-cycle disturbance (as I use a slow old CPU and play Q3CPMA games at the same time) and small RAM usage.
Comes in at about 4,000 KB RAM usage, and CPU rarely jumps to 2-10% on track changes etc.

Thanks to Tool++ and others in this thread for awesome strings, scripts, your guidance and patience.


I'd love using your config. Do you mind sharing it?
lazy
i've made mod of home stereo display with resizing panels (width, height and font sizes), text limiter and scrolling. Resizing is customizable within variables. Experienced user will have no problem to adjust layout. I'm too lazy to redo Russels777's HSD tongue.gif . It's just a demonstration.


here is the code:
CODE
// VARIABLES ===========
// panels bg color
$puts(c.bg,204-216-190)
// bg color
$puts(c.bg2,150-180-0)
// progress bar color
$puts(c.play,164-176-150)
$puts(c.frame,0-0-0)
$puts(c.frame2,80-110-0)
$puts(font,LCDMono)
$puts(altfont,DejaVu Sans Mono)
// width and height margins
$puts(w.margin,2)
$puts(h.margin,2)
// W and H of separators between panels
$puts(w.sep,2)
$puts(h.sep,2)
// W and H of text padding inside of panel
$puts(w.pad,7)
$puts(h.pad,2)
// END OF VARIABLES ===============

// for non englishs fonts
$if($or($strcmp($substr($ascii(%album%),3,3),?),$strcmp($substr($ascii(%artist%),4,4),?),$strcmp($substr($ascii(%title%),2,2),?)),$puts(noeng,1))

// free width and height, used for resizing
$puts(w.free,$sub(%_width%,$get(w.margin),$get(w.margin)))
$puts(h.free,$sub(%_height%,$add($get(h.margin),$get(h.sep),$get(h.margin))))

// percent of taken place for every row
$puts(h.row1,$muldiv($get(h.free),8,10))
$puts(h.row2,$muldiv($get(h.free),2,10))

// y-coords for rows
$puts(y.row1,$get(h.margin))
$puts(y.row2,$add($get(y.row1),$get(h.row1),$get(h.sep)))

// strings to display. r1c1 stands for row 1 column 1 and so on
$puts(s.r1c2,%track%)
$puts(s.r1c1,%playback_time_remaining%)
$puts(s.r1c3,$if(%singletrack%,'"'%title%'"'[' - '%artist%]' ','"'%title%'" '['- '%artist%]'/'%album%['/'%date%]' '))

// global font. Size of font calculating from row height
$font($get(font),$put(fontsize,$sub($get(h.row1),$get(h.pad),$get(h.pad),10)),,0-0-0)

// calculating widths of panels
$puts(w.r1c1,$add($calcwidth($get(s.r1c1)),$get(w.pad),$get(w.pad)))
$puts(w.r1c2,$add($calcwidth($get(s.r1c2)),$get(w.pad),$get(w.pad)))
$puts(w.r1c3,$sub($get(w.free),$get(w.r1c1),$get(w.sep),$get(w.r1c2),$get(w.sep)))
$puts(w.r2c1,$get(w.free))
$puts(w.r2c1p,$muldiv($if2(%playback_time_seconds%,0),$get(w.free),$if2(%length_seconds%,1)))

// calculating x-coords for panels
$puts(x.r1c1,$get(w.margin))
$puts(x.r1c2,$add($get(x.r1c1),$get(w.r1c1),$get(w.sep)))
$puts(x.r1c3,$add($get(x.r1c2),$get(w.r1c2),$get(w.sep)))
$puts(x.r2c1,$get(w.margin))

// TEXT LIMITER AND SCROLLING ===========================
$if($not($get(noeng)),$puts(s.r1c3,$lower($replace($upper($get(s.r1c3)),-,$char(8208),&,+,À,a,Á,a,Â,a,Ã,a,Ä,ae,Å,a,Æ,ae,Ç,c,È,e,É,e,Ê,e,Ë,e,Ì,i,Í,i,Î,i,Ï,i,Ò,o,Ó,o,Ô,o,Õ,o,Ö,oe,Ù,u,Ú,
u,Û,u,Ü,ue,ß,ss))))
$puts(w.symb,$calcwidth(a))
$puts(len.r1c3,$div($get(w.r1c3),$get(w.symb)))

$ifgreater($len($get(s.r1c3)),$get(len.r1c3),
$puts(cursor,$add($mod(%playback_time_seconds%,$len($get(s.r1c3))),1))
$puts(s.r1c3,$substr($get(s.r1c3),$get(cursor),$len($get(s.r1c3)))$left($get(s.r1c3),$sub($get(cursor),1)))
,)
$puts(s.r1c3,$left($get(s.r1c3),$sub($get(len.r1c3),1)))
// ===========================================

// drawing panels
$drawrect(0,0,%_width%,%_height%,brushcolor-$get(c.bg2) pencolor-$get(c.frame2))
$drawrect($get(x.r1c1),$get(y.row1),$get(w.r1c1),$get(h.row1),brushcolor-$get(c.bg) pencolor-$get(c.frame))
$drawrect($get(x.r1c2),$get(y.row1),$get(w.r1c2),$get(h.row1),brushcolor-$get(c.bg) pencolor-$get(c.frame))
$drawrect($get(x.r1c3),$get(y.row1),$get(w.r1c3),$get(h.row1),brushcolor-$get(c.bg) pencolor-$get(c.frame))
$drawrect($get(x.r2c1),$get(y.row2),$get(w.r2c1),$get(h.row2),brushcolor-$get(c.bg) pencolor-$get(c.frame))
$drawrect($get(x.r2c1),$get(y.row2),$get(w.r2c1p),$get(h.row2),brushcolor-$get(c.play) pencolor-$get(c.frame))

// placing text
$alignabs($add($get(x.r1c1),$get(w.pad)),$add($get(y.row1),$get(h.pad)),$add($get(x.r1c1),$get(w.r1c1)),$add($get(y.row1),$get(h.row1)),,)
$get(s.r1c1)
$alignabs($add($get(x.r1c2),$get(w.pad)),$add($get(y.row1),$get(h.pad)),$add($get(x.r1c2),$get(w.r1c2)),$add($get(y.row1),$get(h.row1)),,)
$get(s.r1c2)
$alignabs($add($get(x.r1c3),$get(w.pad)),$add($get(y.row1),$get(h.pad)),$add($get(x.r1c3),$get(w.r1c3)),$add($get(y.row1),$get(h.row1)),,)
$if($get(noeng),$font($get(altfont),$get(fontsize),,0-0-0))
$get(s.r1c3)
// glass effect
$imageabs($get(w.margin),$get(h.margin),images\glass.png,)
gr8
Guys, need help, managed to shift the overlay image horizontally,
but can't shift it vertically:

Using this code:
CODE
$imageabs2(152,152,0,$add($mul(%_height%,$sub(%tracknumber%,2)),$muldiv(%_height%,5,6)),,,39,-6,$replace($replace($replace(%path%,%filename_ext%,folder.jpg),',',),?,),)
$imageabs(9,$if($strcmp(%tracknumber%,1),0,$add(24,$mul(-24,%tracknumber%))),images\case.png,)

Would highly appreciate if someone could help me with it


P.S. I've figure it out, problem solved smile.gif
eejadx
QUOTE (CepiPerez @ Oct 2 2006, 00:27) *
Did you modify the code?
Post the code, then I'll tell you where's the problem.


I did modified the code sligthly, but it occurs even when copy-paste from your post.

Item Display:
CODE


$imageabs(9,$if($strcmp(%tracknumber%,01),0,$add(24,$mul(-24,%tracknumber%))),images\noalbum.png,)
$imageabs(10,$if($strcmp(%tracknumber%,01),1,$add(25,$mul(-24,%tracknumber%))),$replace($replace(images\albums\
$directory(%path%,2)\$directory(%path%,1)\mini.png,',',),?,),)

//$if($strcmp(%tracknumber%,01),$drawrect(96,0,144,16,brushcolor-210-210-210 pencolor-128-128-128l))


$font(calibri,8,boldshadow glowalpha-50,)$if($strcmp(%tracknumber%,01),$alignabs(100,-3,120,110,,)%date%,)
$if($strcmp(%tracknumber%,01),$imageabs(100,15,images\bar_album1.png,))
$font(calibri,8,boldshadow glowalpha-50,100-100-100)$if($strcmp(%tracknumber%,02),$alignabs(100,-3,130,110,,)%album%,)

//$ifequal($mod(%_playlist_number%,2),0,
//$drawrect(246,0,0,0,brushcolor-230-230-230 pencolor-null),
//$drawrect(246,0,0,0,brushcolor-245-245-245 pencolor-null))

$if(%_selected%,$imageabs(246,0,images\10.PNG,))
$if(%_focused%,$imageabs(246,0,images\10.PNG,))
//$if(%_selected%,$textcolor(SYSCOL-9),$textcolor(SYSCOL-8))
//$if(%_isplaying%,$textcolor(SYSCOL-9),)
$if(%_isplaying%,$imageabs(246,0,images\75.PNG,))

$font(calibri,7,boldshadow glowalpha-50,70-70-70)
$alignabs(250,-1,$sub(%_width%,300),12,,)%title%
$alignabs($sub(%_width%,127),-1,120,20,right,)%length%
$alignabs(250,10,220,110,,)$font(calibri,8,bold,170-170-170)
$if($strcmp(%play_counter%,?),Never Played,
$ifequal(%play_counter%,0,Never Played,
$ifequal(%play_counter%,1,1 Play,
%play_counter% Plays)))
// - $if($meta(LYRICS),Lyrics available,No Lyrics)
$alignabs($sub(%_width%,126),13,120,20,right,)
$font(wingdings,6,bold,170-170-170)$repeat(,%rating%)

$if(%isplaying%,
$imageabs(246,0,images\75.PNG,)
$alignabs(250,4,900,200,,)$font(Wingdings 3,10,boldshadow,250-250-250)$char(117)
$font(calibri,7,boldshadow glowalpha-150,)
$alignabs(268,-1,$sub(%_width%,318),12,,)%title%
$alignabs($sub(%_width%,127),-1,120,20,right,)%length%
$alignabs(268,10,120,110,,)$font(calibri,8,boldshadow glowalpha-150,180-180-180)
$if($strcmp(%play_counter%,?),Never Played,
$ifequal(%play_counter%,0,Never Played,
$ifequal(%play_counter%,1,1 Play,
%play_counter% Plays)))
// - $if($meta(LYRICS),Lyrics available,No Lyrics)
$alignabs($sub(%_width%,126),13,120,20,right,)
$font(wingdings,6,boldshadow glowalpha-120,180-180-180)$repeat(,%rating%)
)

Group display:
CODE
$font(calibri,9,boldshadow glowalpha-50,)
$alignabs(10,-2,120,110,,)%artist%
$imageabs(9,15,images\bar_artist.png,)

Row height: 24

Thanks, Marc
DarkWeaver
QUOTE (joule @ Oct 2 2006, 08:48) *
QUOTE (cLess-R34 @ Oct 2 2006, 03:41) *

New Foobar layout from me today happy.gif



It looks a little dull, but this one is tweaked out for minimal CPU-cycle disturbance (as I use a slow old CPU and play Q3CPMA games at the same time) and small RAM usage.
Comes in at about 4,000 KB RAM usage, and CPU rarely jumps to 2-10% on track changes etc.

Thanks to Tool++ and others in this thread for awesome strings, scripts, your guidance and patience.


I'd love using your config. Do you mind sharing it?

I second that. Could you also post the tweaks you mentioned, or link to them if they're simply in another thread.
gr8
So.. it's ready, or atleast it looks like I wanted, although some modifications will follow



Thanx all for all, especially HELP smile.gif
Ran Sagy
How did you put the headers besides the items, and not above?
DarkWeaver
I'm not sure he has the headers turned on, the info is just done in the item display (with if statements making sure you're on the right line).
speedemonV12
hey guys, i was just wondering how i can get some album art for my music? I have all my music in one folder, My Music, and i have all my files named by artist - title.mp3 so i dont have them sorted into folders by album... and most of the album tags on the files are messed up, so i was wondering if there was a way to search for album art by artist, and download it...

thanks
Foxhawk
QUOTE (speedemonV12 @ Oct 2 2006, 14:16) *
hey guys, i was just wondering how i can get some album art for my music? I have all my music in one folder, My Music, and i have all my files named by artist - title.mp3 so i dont have them sorted into folders by album... and most of the album tags on the files are messed up, so i was wondering if there was a way to search for album art by artist, and download it...

thanks


something like this ?
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-2009 Invision Power Services, Inc.