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
fwqhgads
QUOTE (Nickoladze @ Oct 8 2006, 16:37) *
brushcolor-0-0-0 is the colors used in the form of r-g-b

so that code makes a black square, a white one would be brushcolor-255-255-255

sleep.gif oic

Thanks!

EDIT: Alright, one more thing. Whenever a track is playing, it automatically changes the background for the text of that track to black (0-0-0). Anyone know how to have it so it just leaves it alone?



New code is:

CODE
/////////////Item Display

$if(%_isplaying%,$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-0-0-0),
$if(%_selected%,$drawrect(0,0,0,0,brushcolor-255-255-255 pencolor-null),
$imageabs(3,0,'images\bg1.png',)

$ifequal($mod(%tracknumber%,2),0,
            $drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-null)
        ,
            $drawrect(0,0,0,0,brushcolor-20-20-20 pencolor-null)
        )
)
)
$padding(2,0)

$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,164-171-179))
$alignabs(4,0,%_width%,21,left,top)↘

$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,180-180-180))

[%tracknumber%. ]

$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,129-138-150))

$if($meta_test(album artist),)

$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,120-120-120))
%title%

$if(%_isplaying%,$font(calibri,8,bold glow-129-138-150 glowblur-10,255-255-255),$font(calibri,8,bold,180-180-180))

$align(right,center)%length%

//$drawrect(0,0,1,0,brushcolor-161-170-179 pencolor-null)
//$drawrect(1,0,3,0,brushcolor-222-225-228 pencolor-null)

//////////////Group Display

$font(cambria,12,bold,164-171-179)
$drawrect(0,0,0,0,brushcolor-120-120-120 pencolor-null)

$imageabs2(84,84,,,,,5,3,'C:\Program Files\foobar2000\images\noalbum.png',)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)folder.png,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)folder.jpg,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)%album%.jpg,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)*.jpg,)
$imageabs2(84,84,,,,,5,3,$replace(%path%,%filename_ext%,)*/*.*,)
$imageabs2(84,84,,,,,5,3,'C:\Program Files\foobar2000\images\artoverlay.png',)

$alignabs(92,40,$add(%_width%,-107),20,left,top)
$lower($if2(%album artist%,%artist%))
$alignabs(92,55,$add(%_width%,-107),20,left,top)
$font(Swis721 Cn BT D-Type,14,,138-145-153)
%album%$font(Swis721 Cn BT D-Type,14,bold,120-120-120)[ %date%]
$alignabs(92,71,$add(%_width%,-107),20,left,top)
$font(calibri,9,bold,153-153-153)[$upper(%genre%)]


Sorry for being such a newbie... I'm really new to all this. :x
rouge
If I understand you correctly, $if(%_isplaying%,$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-0-0-0) at the top should be the culprit. I'm only confused as to it's function without any height/width arguments. Anyway, just removing that line should fix it.

This is what I've been working on. It's not done, but I just thought I'd post a screenshot to inspire some of you, since no one else has tried this technique.

spex04
QUOTE (fwqhgads @ Oct 9 2006, 06:03) *
QUOTE (Nickoladze @ Oct 8 2006, 16:37) *

brushcolor-0-0-0 is the colors used in the form of r-g-b

so that code makes a black square, a white one would be brushcolor-255-255-255

sleep.gif oic

Thanks!

EDIT: Alright, one more thing. Whenever a track is playing, it automatically changes the background for the text of that track to black (0-0-0). Anyone know how to have it so it just leaves it alone?



New code is:

<codebox stuff>

Sorry for being such a newbie... I'm really new to all this. :x


You might also need to remove one of the brackets, where there are two directly on-top of each other (one above/one below), if things break when you remove that first line..

QUOTE (rouge @ Oct 9 2006, 07:55) *
If I understand you correctly, $if(%_isplaying%,$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-0-0-0) at the top should be the culprit. I'm only confused as to it's function without any height/width arguments. Anyway, just removing that line should fix it.

This is what I've been working on. It's not done, but I just thought I'd post a screenshot to inspire some of you, since no one else has tried this technique.




Hmm.. nice idea.

Must have been annoying to code the image resizing..
fwqhgads
=o!!

Incredible! Thanks alot guys!
spex04
Bored, so I made this (not completely finished yet, I'm sure I'll carry on tweaking it):

agt
spex04, thats awesome. i want.
...Just Elliott
Tiny update, but, here's badoing3.

Lithos
My new setup, just a mix of Toolej & CepiPerez configs wink.gif
unart
I implemented a new track info panel:

carmenm
QUOTE (unart @ Oct 9 2006, 05:27) *
I implemented a new track info panel:


Very good as usual unart, especially cause you give new ideas of layouts and configs. Could you share your track info and single playlist? Could use it ...
lizzard
QUOTE (CepiPerez @ Oct 8 2006, 11:34) *
For everyone who wants my config:



I use:
- Single columns playlist
- Track info Mod
- foo_run for buttons
- foo_cwb_hooks for volume slider
- unofficial foo_playcount for last played - Add this to "Appended Information": %W %D/%M/%y

The buttons are included in the trackinfo_mod, I use Run services for play, stop, etc. Check the trackinfo mod forum for the latest version.

Here's a link for my images: link
Images must be in "C:\Program Files\Foobar 2000\" and in "C:\Documents and settings\YOURUSERNAME\Application data\Foobar2000\".

The covers must be in "C:\Documents and settings\YOURUSERNAME\Application data\Foobar2000\cover" folder in PNG in 80x80.



Use the auto-hide option for the second vertical splitter (the one that contains the lyrics panel)

Here's the code of the top trakinfo:
CODE

$imageabs($sub($div(%_width%,2),400),0,neo1\back1.png,)
$if(%isplaying%,
$puts(progress,$muldiv(%playback_time_seconds%,$sub(%_width%,24),%length_seconds%))
$drawrect(10,82,$sub(%_width%,20),8,brushcolor-null pencolor-120-120-120),)
$ifgreater($get(progress),0,$padding(9,82)$drawrect(3,2,$get(progress),4,brushcolor-90-90-90 pencolor-nulll),)
$if(%_isplaying%,
$font(calibri,14,boldshadow,170-170-170)$alignabs(0,4,%_width%,30,center,)%artist%
$alignabs(0,28,%_width%,20,center,)$font(calibri,8,boldshadow,170-230-250)"%title%"
$alignabs(0,44,%_width%,20,center,)$font(calibri,8,boldshadow,140-140-140)from
$font(calibri,8,boldshadow,210-210-210)"%album%"
$alignabs(0,61,%_width%,20,center,)$if($strcmp(%play_counter%,?),
$font(Calibri,8,boldshadow,180-180-180)Playing song for fist time,
$if($strcmp(%play_counter%,1),$font(Calibri,8,boldshadow,180-180-180)Song played %play_counter% time',' on ,Song played %play_counter% times. Last on )
$if($strcmp($left($right(%last_played%,10),1),1),Sunday', ',)
$if($strcmp($left($right(%last_played%,10),1),2),Monday', ',)
$if($strcmp($left($right(%last_played%,10),1),3),Tuesday', ',)
$if($strcmp($left($right(%last_played%,10),1),4),Wednesday', ',)
$if($strcmp($left($right(%last_played%,10),1),5),Thursday', ',)
$if($strcmp($left($right(%last_played%,10),1),6),Friday', ',)
$if($strcmp($left($right(%last_played%,10),1),7),Saturday', ',)
$right(%last_played%,8) at $right($left(%last_played%,16),5))
,
$font(calibri,18,boldshadow,170-170-170)$alignabs(0,10,%_width%,30,center,)Foobar2000
$alignabs(0,46,%_width%,20,center,)$font(calibri,9,boldshadow,170-230-250)Music Player
$alignabs(0,68,%_width%,20,center,)$font(calibri,8,boldshadow,210-210-210)v0.9.3
)


Here's the code of my playlist:
Row Height: 23 - Order by %artist%
Item Display:
CODE

$imageabs(10,$if($strcmp(%tracknumber%,01),0,$add(23,$mul(-23,%tracknumber%))),neo1\albumborder.png,)
$imageabs(11,$if($strcmp(%tracknumber%,01),1,$add(24,$mul(-23,%tracknumber%))),$replace($replace(cover\%artist% - %album%.png,',',),?,),)
$font(calibri,8,boldshadow glowalpha-50,)
$if($strcmp(%tracknumber%,01),$alignabs(100,-3,120,110,,)%date%,)
$if($strcmp(%tracknumber%,01),$imageabs(100,15,neo1\line2.png,))
$font(calibri,8,boldshadow glowalpha-50,100-100-100)
$if($strcmp(%tracknumber%,02),$alignabs(100,-3,140,110,,)%album%,)
$if(%_selected%,$drawrect(246,0,0,0,brushcolor-220-220-220 pencolor-null))
$if(%_isplaying%,$drawrect(246,0,0,0,brushcolor-40-40-40 pencolor-null))
$font(calibri,8,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,7,bold,170-170-170)
$if($strcmp(%play_counter%,?),No plays,%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%,
$drawrect(246,0,0,0,brushcolor-40-40-40 pencolor-null)
$alignabs(250,-2,900,200,,)$font(Wingdings 3,17,bold glow-100-100-100,250-250-250)m
$font(calibri,8,boldshadow glow-50-90-100,170-230-250)
$alignabs(272,-1,$sub(%_width%,318),12,,)%title%
$alignabs($sub(%_width%,127),-1,120,20,right,)%length%
$alignabs(272,10,120,110,,)$font(calibri,7,boldshadow glow-70-70-70,180-180-180)
$if($strcmp(%play_counter%,?),No plays,%play_counter% Plays) - $if($meta(LYRICS),Lyrics available,No Lyrics)
$alignabs($sub(%_width%,126),13,120,20,right,)$font(wingdings,6,boldshadow glow-70-70-70,180-180-180)$repeat(,%rating%)
)

Group Display:
CODE

$font(calibri,9,boldshadow glowalpha-50,)
$alignabs(10,-2,580,110,,)%artist%
$imageabs(9,15,neo1\line3.png,)


Code of the bottom Trackinfo:
CODE

$imageabs($sub($div(%_width%,2),454),5,neo1\back2.png,)
$if(%isplaying%,
$puts(volume,$add($mul($substr($num(%cwb_volume%,4),2,4),-1),100))
$alignabs(10,20,60,200,,)
$font(Calibri,7,glow-50-70-90,170-230-250)
Volume: $get(volume) '%'
$imageabs($sub(%_width%,58),12,'neo1\vol\'$div($add($get(volume),5),10)'.png',)
$alignabs($sub(%_width%,70),45,60,200,right,)
$get(spacer)%_time_elapsed%$if(%_time_total%,' / '%_time_total%,)
$if(%_time_remaining%,$get(spacer),)
$alignabs(10,45,200,200,,)
$if($strstr(%_path_raw%,'tone://'),$if(%_time_total%,%_length%' Seconds of '$replace(%title%,'Tone: ',)' Tone',%title%),)
$if($strstr(%_path_raw%,'silence://'),%_length%' Seconds of Silence',)
$if($strstr(%_path_raw%,'cdda://'),'CDDA',)
$if2(%mp3%,$if2(%__codec%,))
$if($strstr(%_path_raw%,'cdda://'),$get(spacer)'1411kbps',$if(%__bitrate%,$get(spacer)%__bitrate%' kbps ',))
$if(%__extrainfo%,$get(spacer)%__extrainfo% ,)
$if(%__samplerate%,$get(spacer)$cut(%__samplerate%,2)' kHz' ,)
$if(%__channels%,$get(spacer)$ifgreater(%__channels%,1,'Stereo','Mono'),)
,)
$button($sub($div(%_width%,2),64),32,0,0,0,0,neo1\pause1b.png,neo1\pause2b.png,Playpause,)
$button($sub($div(%_width%,2),40),31,0,0,0,0,neo1\prev1.png,neo1\prev2.png,Previous,)
$button($add($div(%_width%,2),17),31,0,0,0,0,neo1\next1.png,neo1\next2.png,Next,)
$button($add($div(%_width%,2),44),32,0,0,0,0,neo1\stop1.png,neo1\stop2.png,Stop,)
$button($sub($div(%_width%,2),15),26,0,0,0,0,neo1\play1.png,neo1\play2.png,Play,)


Enjoy!

@Cepiperz
First, thanks for this fenomenal foobar!!!!
I had two problems, because i´m a noob and i don´t know nothing about codes, so i ask for ypur help, or somebody else.

1º How to made two windows like you have anda where is the autohide.
2º Only the olay buton works, whem i click ond pause or dtop, doesn´t works.
3º I can´t put those covers...i resize the image to 80x80 png and put them on c:\documents and settings\xxxxx\aplication data\foobar200\cover. The album is not displayed. I had rename from folder to cover and album.

I didn´t change any code. I use the second track info mod to insert the image of the headphones.. i can´t put in the lirycs panel.
A help would be apreciated.
Thanks.
unart
QUOTE (carmenm @ Oct 9 2006, 13:30) *
QUOTE (unart @ Oct 9 2006, 05:27) *

I implemented a new track info panel:


Very good as usual unart, especially cause you give new ideas of layouts and configs. Could you share your track info and single playlist? Could use it ...


My track info code (excuse my quick&dirty style):
CODE

$imageabs(0,0,foo_unart\arte.png,)
$imageabs2(,,,,,,517,22,'c:\_guido\Musik\'$directory(%path%,3)'\'$directory(%path%,2)'\'$directory(%path%,1)'\folder.png',)

$puts(fon,Arial)

$puts(percent,$muldiv(%_time_elapsed_seconds%,300,
%_time_total_seconds%))
$if($greater($get(percent),0),
$drawrect(242,$add(%_height%,-13),$add($muldiv($get(percent),
$add(500,-22),300),-2),2,
brushcolor-255-66-3 pencolor-255-66-3))
$drawrect(242,$add(%_height%,-9),477,1,
brushcolor-220-220-220 pencolor-220-220-220)

$imageabs(210,185,foo_unart\$if(%isPaused%,pause,play).png,)

$ifgreater($put(commaplace,$strstr(%artist%,', ')),0,
$puts(zusatz,$rgb(152,152,152)$right(%artist%,$sub($sub($len(%artist%),1),$get(commaplace))) )
$puts(artist,$left(%artist%,$sub($get(commaplace),1))),
$puts(artist,%artist%))

$alignabs(230,25,300,50,,)
$font($get(fon), 16, , 200-200-200)$get(zusatz)
$font(,,, 240-240-240)$replace($get(artist),'Aerzte','Ärzte')

$alignabs(242,250,400,50,,)
$font(,16,,255-66-3)
$ifgreater($len(%title%),40,
$substr(%title%,1,38) ...,
%title%)

$alignabs(,100,500,50,right,)
$font(, 12,, 255-255-255)
$ifgreater($len(%album%),50,
$substr(%album%,1,48) ...,
%album%)

$alignabs(,70,500,50,right,)[%date%]
$alignabs(,130,500,50,right,)[# %tracknumber%]

$alignabs(10,270,200,50,,)
$font(, 8,, 230-230-230)
$ifgreater($len(next: %cwb_next_artist% - %cwb_next_title%),43,
$substr(next: %cwb_next_artist% - %cwb_next_title%,1,40) ...,
next: %cwb_next_artist% - %cwb_next_title%)



$alignabs(10,120,200,20,,)
$font(,8,, 230-230-230)list: %cwb_activelist%
$alignabs(10,140,200,20,,)
$font(,,,)[genre: %genre%]

$alignabs(10,170,200,20,,)
$font(,,,)bitrate: %bitrate% kb/s
$alignabs(10,190,200,20,,)
$font(,,,)samplerate: %samplerate% hz

$font($get(fon), 12, , 255-255-255)
$alignabs(,254,723,30,right,)
%playback_time%$get_global(h_grau) / %length%

$puts(volume,$substr($num(%cwb_volume%,4),2,4))
$alignabs(10,10,100,30,left,top)
$font(webdings,10,,250-250-250)
$char(88)
$font(arial,10,bold,250-250-250)
$if($greater(1,$get(volume)),$puts(amp,12),
$if($greater(3,$get(volume)),$puts(amp,11),
$if($greater(6,$get(volume)),$puts(amp,10),
$if($greater(9,$get(volume)),$puts(amp,9),
$if($greater(13,$get(volume)),$puts(amp,8),
$if($greater(16,$get(volume)),$puts(amp,7),
$if($greater(21,$get(volume)),$puts(amp,6),
$if($greater(26,$get(volume)),$puts(amp,5),
$if($greater(33,$get(volume)),$puts(amp,4),
$if($greater(43,$get(volume)),$puts(amp,3),
$if($greater(58,$get(volume)),$puts(amp,2),
$puts(amp,1)
)))))))))))
$if($stricmp(100,$get(volume)),$puts(amp,0))
$rgb(250,250,250)$repeat($char(305),$get(amp))
$rgb(150,150,150)$repeat($char(305),$sub(12,$get(amp)))

$font($get(fon), 11, , 255-255-255)
$alignabs(193,218,30,30,,)
%play_count%×



$alignabs(10,90,100,29,,)
$font(Arial, 10,bold , 2-2-2)
$if($strcmp(%rating%,5),$get_global(orange)× × × × ×,)
$if($strcmp(%rating%,4),$get_global(orange)× × × ×$get_global(d_grau) ×,)
$if($strcmp(%rating%,3),$get_global(orange)× × ×$get_global(d_grau) × ×,)
$if($strcmp(%rating%,2),$get_global(orange)× ×$get_global(d_grau) × × ×,)
$if($strcmp(%rating%,1),$get_global(orange)×$get_global(d_grau) × × × ×,)
$if(%rating%,,$get_global(d_grau)× × × × ×)


My single column "item display" code:
CODE

$puts(fon,Arial)
$puts(fgr,11)
$puts(fat,)
$puts(tab1,230)
$puts(tab2,$add($get(tab1),30))
$puts(rechts,$add(%_width%,$add(-$get(tab1),-15)))

$ifgreater($put(commaplace,$strstr(%artist%,', ')),0,
$puts(zusatz,$rgb(152,152,152)$right(%artist%,$sub($sub($len(%artist%),1),$get(commaplace))) )
$puts(artist,$left(%artist%,$sub($get(commaplace),1))),
$puts(artist,%artist%)
)
$puts(breite,$if(%TOTAL%,$if($strcmp(%TOTAL%,'5'),190,),190))
$puts(abreite,$add($get(breite),-40))

$drawrect(0,,,,brushcolor-240-240-240 pencolor-null)
$drawrect($add($get(tab1),-5),0,$get(rechts),28,brushcolor-255-255-255 pencolor-null)
$if(%_selected%,$drawrect($add($get(tab1),-5),3,$get(rechts),20,brushcolor-220-220-220 pencolor-null),)
$if(%isplaying%,$drawrect($add($get(tab1),-5),1,$get(rechts),24,brushcolor-55-55-55 pencolor-null),)

$if($or($strcmp($num(%tracknumber%,2),'01'),$not(%tracknumber%),$strcmp(%comment%,'Sampler')),
,)


$if($or($strcmp(%comment%,'Alben'),$strcmp(%comment%,'alte Platten')),
$imageabs2($get(breite),$get(breite),0,$add(-1,$mul($add(%tracknumber%,-1),28)),$get(breite) ,28,22,,foo_unart/c_back.jpg,)
$imageabs2($get(abreite),$get(abreite),0,$add(-22,$mul($add(%tracknumber%,-1),28)),$get(abreite) ,28,42,,$replace(%path%,%filename_ext%,)folder.jpg,),)

$if($and(%tracknumber%,$or($strcmp(%comment%,'Alben'),$strcmp(%comment%,'alte Platten'))),
$font($get(fon),$get(fgr),$get(fat),200-200-200)
$alignabs($get(tab1),6,%_width%,%_height%,,)%tracknumber%
,)
$font($get(fon),$get(fgr),$get(fat),$if(%isplaying%,250-250-250,40-40-40))
$alignabs($add($get(tab2),3),6,%_width%,%_height%,,)
$ifgreater($len(%title%),40,
$substr(%title%,1,37) ...,
%title%)

$alignabs(0,4,$add(%_width%,-30),%_height%,right,)
$font($get(fon),$get(fgr),$get(fat), 150-150-150)%play_count%×
$font(Arial, 12,bold , 2-2-2)
$repeat(-,%rating%)
$font(Arial, 12,bold, 190-190-190)
$repeat(-,$add($mul(%rating%,-1),5))


And my "group display" code (row height 28, group rows 2):
CODE

$puts(fon,Arial)
$puts(fgr,11)
$puts(fat,bold)
$puts(tab1,197)
$puts(tab2,$add($get(tab1),30))
$imageabs(20,10,foo_unart/rund1.png,)
$imageabs($add(%_width%,-40),10,foo_unart/rund2.png,)
$drawrect(40,10,$add(%_width%,-80),$add(%_height%,-15),brushcolor-255-255-255 pencolor-null)
//$imageabs(,,foo_unart/tit.png,)
//$imageabs(200,27,foo_unart/tit.png,)
$ifgreater($put(commaplace,$strstr(%artist%,', ')),0,
$puts(zusatz,$rgb(152,152,152)$right(%artist%,$sub($sub($len(%artist%),1),$get(commaplace))) )
$puts(artist,$left(%artist%,$sub($get(commaplace),1))),
$puts(artist,%artist%)
)

$alignabs(40,29,400,%_height%,left,)
$font($get(fon),$get(fgr),$get(fat),40-40-40)
$ifgreater($len(%artist%),25,
$substr(%artist%,1,22) ...,
$get(zusatz)$font($get(fon),$get(fgr),$get(fat),40-40-40)$replace($get(artist),'Aerzte','Ärzte'))

$alignabs($get(tab2),29,720,%_height%,left,)
$font($get(fon),$get(fgr),$get(fat),255-66-3)
$ifgreater($len(%album%),35,
$substr(%album%,1,32) ...,
$if($strcmp(%album%,'unbekannt'),$font(,,,200-200-200)single song,%album%))
$alignabs(0,29,$add(%_width%,-40),%_height%,right,)
$font($get(fon),$get(fgr),,200-200-200)[%genre% ]
$font($get(fon),$get(fgr),$get(fat),155-155-155)[%date%]

satorippoi
QUOTE (CepiPerez @ Oct 6 2006, 23:43) *
My new foo skin:



Hope you like it.


I am a newbie here, will you teach me how to make it look so wonderful and stylish?..
PLEASE!.. rolleyes.gif
BoneJazz
QUOTE (Hannuh @ Oct 7 2006, 23:06) *
Here's My current foobar2k look:




amazing configuratio Hannuh!

Could you post your complete configuration (fonts, images....)

Thanks
lizzard
@Cepiperz
First, thanks for this fenomenal foobar!!!!
I had two problems, because i´m a noob and i don´t know nothing about codes, so i ask for ypur help, or somebody else.

1º How to made two windows like you have. Or is just the autohide funtion? If i put the auto hide it doesn´t work, only using hide but after it doesn´t appear.
2º Only the play buton works, when i click on pause or stop, doesn´t works.


3º I can´t put those covers...i resize the image to 80x80 png and put them on c:\documents and settings\xxxxx\aplication data\foobar200\cover. The album is not displayed. I had rename from folder to cover and album. This i have change to folder.jpg using a code i´ve seen behind, and now is working

4º The cover of some albums are breaked, the image is separeted or mixed. How I can fix that?

I use the second track info mod to insert the image of the headphones.. i can´t put in the lirycs panel - i think is where you put it.

A help would be apreciated.
Thanks.
Bachi-Bouzouk
Still some things to improve but it's close to the end:

unart
QUOTE (Bachi-Bouzouk @ Oct 9 2006, 18:09) *
Still some things to improve but it's close to the end:


For 3.5 years I'm thinking that my layout is "close to the end". I stopped believing in a final layout. wink.gif
Bachi-Bouzouk
it was just a manner to say that it will remain untouched for some weeks/months at least biggrin.gif (Even if I have some projects regarding lyrics but it's another matter)

I found the use of foo_uie_single colum.. easier than I thought it could be (only 50 lines for the complete code). The difficut thing is to use paint shop pro (or whatever) to create layers and nice pictures..
chivas
some changes to my setup, now with added tabs.
i'm still at only 6mb usage even with single+columns playlist.

single playlist is kinda slow on scrolling tho, with all those 600x600 covers lol. guess i'll have to thumb them.


animated gif:

jaco
chivas nice, whats the VS?
saberrider


That "Next Track" album preview is kinda tricky... I had to use one cwb_next_user for the album, artist and song tags and one for both %filename_ext% and %path% without losing the synchronisation between cwb and albumart... Well it was worth it I guess...
At least I'm beginning to get a clue of all the possibilities smile.gif
Snowsfall
Here's my config stuff for those who've been asking for it.



icons are from this pack : http://www.customize.org/details/32323

my shadow .png is here(rename to shadoww.png): http://static.flickr.com/83/265361993_897daea675_o.png

VS is a modded version of: http://www.customize.org/details/47167

progress bar trackinfo
CODE
$drawrect(,,,7,brushcolor-null pencolor-70-70-70)

$puts(progress,$muldiv(%playback_time_seconds%,$sub(%_width%,24),%length_seconds%))
$ifgreater($get(progress),0,
$padding(0,1)$drawrect(,,$get(progress),5,brushcolor-60-60-60 pencolor-null),)
$imageabs(0,7,'images\shadoww.png',)



bottom trackinfo
CODE
$alignabs(0,-3,25,25,,)
$if($stricmp(%isplaying%,1),$font(webdings,12,glow-150-150-150 glowexpand-1,255-255-255)²,$font(webdings,12,,150-150-150)²)

$alignabs(0,0,%_width%,%_height%,right,top)$font(calibri,9,cold,150-150-150)
$if($stricmp(%isplaying%,1),%title% $font(calibri,9,bold glow-255-255-255 glowexpand-0 glowalpha-175,255-255-255)%artist% ,)



single column playlist view, made for about a 350ish pixel width
row height - 12
group rows - 4


Item Display:
CODE
$padding(0,0)
$if(%_isplaying%,$drawrect(0,0,0,0,brushcolor-0-0-0 pencolor-0-0-0)
,
$ifequal($mod(%_playlist_number%,2),0,
            $drawrect(0,0,0,0,brushcolor-92-92-92 pencolor-82-82-82)
        ,
            $drawrect(0,0,0,0,brushcolor-87-87-87 pencolor-82-82-82)
        )
)

$if(%_selected%,$drawrect(,,,,brushcolor-null pencolor-20-20-20)$drawrect(,,,21,brushcolor-null pencolor-20-20-20),)

$padding(2,0)

$alignabs(0,-1,%_width%,%_height%,left,)

$if(%_isplaying%,$font(calibri,8,bold,130-130-130)[%tracknumber%.]$font(calibri,8,bold glow-255-0-0 glowexpand-1 glowalpha-175,255-0-0) ↘  ,$font(calibri,8,bold,130-130-130)[%tracknumber%. ])

$if(%_isplaying%,$font(calibri,8,bold glow-255-255-255,255-255-255),$font(calibri,8,bold,180-180-180))

$if($meta_test(album artist),%artist%' - ')

$if(%_isplaying%,$font(calibri,8,bold glow-255-255-255 glowexpand-0 glowalpha-175,255-255-255),$font(calibri,8,bold,180-180-180))

%title%

$alignabs(-58,-2,%_width%,%_height%,right,)
$if(%_isplaying%,$font(calibri,8,glow-255-255-255 glowexpand-0 glowalpha-195,255-255-255),$font(calibri,8,,150-150-150))%length%

$alignabs(0,-1,%_width%,20,right,)
$if(%_isplaying%,
$font(Wingdings,9,,50-50-50),$font(Wingdings,9,,75-75-75))
«««««
$alignabs(0,-1,%_width%,20,right,)
$if(%_isplaying%,
$font(Wingdings,9,,203-206-211),$font(Wingdings,9,,130-130-130))
$repeat(«,%rating%)

$ifequal(%_itemindex%,1,$imageabs(0,0,'images\shadoww.png',),)



Group Display
CODE
$drawrect(0,0,0,0,brushcolor-46-46-46 pencolor-null)
$drawrect(47,1,243,40,brushcolor-120-120-120 pencolor-null)

$alignabs(46,-5,243,%_height%,left,)$font(calibri,34,bold,135-135-135)↗
$alignabs(50,-12,243,%_height%,right,)$font(calibri,34,bold,105-105-105)↙

$alignabs(48,23,243,%_height%,left,)$ifgreater($calcwidth($font(Arial Rounded MT Bold,13,uppercase bold,)%artist%),243,$alignabs(48,31,246,%_height%,left,)$font(Arial Rounded MT Bold,7,uppercase,80-80-80),$font(Arial Rounded MT Bold,13,uppercase bold,80-80-80))%artist%
$alignabs(48,0,241,13,right,)$font(AvantGarde LT Medium,7,uppercase,155-155-155)[%date% ]$font(AvantGarde LT Medium,7,uppercase,195-195-195)$if($meta_test(album artist),%album artist%,%album%)

$alignabs(56,39,%_width%,%_height%,left,)$font(Kroeger 05_55,6,,110-110-110)[%genre%]
$alignabs(47,41,15,%_height%,left,)$font(Wingdings 3,5,,70-70-70)q
$alignabs(275,41,15,%_height%,right,)$font(Wingdings 3,5,,90-90-90)q
$alignabs(-56,39,%_width%,%_height%,right,)$font(Kroeger 05_55,6,,110-110-110)[%__bitrate%'kbps']

$imageabs2(46,46,0,0,46,46,0,1,$replace(%path%,%filename_ext%,)..\artist.jpg,)
$imageabs2(46,46,0,0,46,46,291,1,$replace(%path%,%filename_ext%,folder.jpg),)
Raven.am0k
Hello, just wanna post my (i think) last Foobar.
Because i have to work all the time, i don´t have much time any more -.-

I choose a clean color setup fitting to my background and my VS.
Nothing special.
REALLY biggrin.gif

CepiPerez
QUOTE (lizzard @ Oct 9 2006, 12:57) *
@Cepiperz
First, thanks for this fenomenal foobar!!!!
I had two problems, because i´m a noob and i don´t know nothing about codes, so i ask for ypur help, or somebody else.

1º How to made two windows like you have. Or is just the autohide funtion? If i put the auto hide it doesn´t work, only using hide but after it doesn´t appear.
2º Only the play buton works, when i click on pause or stop, doesn´t works.


3º I can´t put those covers...i resize the image to 80x80 png and put them on c:\documents and settings\xxxxx\aplication data\foobar200\cover. The album is not displayed. I had rename from folder to cover and album. This i have change to folder.jpg using a code i´ve seen behind, and now is working

4º The cover of some albums are breaked, the image is separeted or mixed. How I can fix that?

I use the second track info mod to insert the image of the headphones.. i can´t put in the lirycs panel - i think is where you put it.

A help would be apreciated.
Thanks.



1º - The autohide option is in preferences -> Columns UI.
To see the lyrics, put the mouse over the right side of the foobar and it will shows the panel.
If it won't. The when the cursor change to resize, press it and move to left. (I hope you undestand me).

2º - For the buttons, you need to make Run services. Here's the codes:
Play: C:\Program files\foobar2000\foobar2000.exe /play
Pause: C:\Program files\foobar2000\foobar2000.exe /playpause
Stop: C:\Program files\foobar2000\foobar2000.exe /stop
Next: C:\Program files\foobar2000\foobar2000.exe /next
Previous: C:\Program files\foobar2000\foobar2000.exe /prev

3º - Tell me the path and name of an image cover you make, and I'll give you the code.

4º - That's because you change the code, I'm shure the size of the images of the new code is not 80x80.

5º - The headphone is in the trackinfo_mod. Here's the code:
$imageabs($sub($div(%_width%,2),170),-8,neo1\headphone.png,-5)
I set the height of the trackinfo to the end of the image, the lyrics panel just display lyrics.

Regards.
lizzard
QUOTE (CepiPerez @ Oct 9 2006, 17:29) *
QUOTE (lizzard @ Oct 9 2006, 12:57) *

@Cepiperz
First, thanks for this fenomenal foobar!!!!
I had two problems, because i´m a noob and i don´t know nothing about codes, so i ask for ypur help, or somebody else.

1º How to made two windows like you have. Or is just the autohide funtion? If i put the auto hide it doesn´t work, only using hide but after it doesn´t appear.
2º Only the play buton works, when i click on pause or stop, doesn´t works.


3º I can´t put those covers...i resize the image to 80x80 png and put them on c:\documents and settings\xxxxx\aplication data\foobar200\cover. The album is not displayed. I had rename from folder to cover and album. This i have change to folder.jpg using a code i´ve seen behind, and now is working
n
4º The cover of some albums are breaked, the image is separeted or mixed. How I can fix that?

I use the second track info mod to insert the image of the headphones.. i can´t put in the lirycs panel - i think is where you put it.

A help would be apreciated.
Thanks.



1º - The autohide option is in preferences -> Columns UI.
To see the lyrics, put the mouse over the right side of the foobar and it will shows the panel.
If it won't. The when the cursor change to resize, press it and move to left. (I hope you undestand me).

2º - For the buttons, you need to make Run services. Here's the codes:
Play: C:\Program files\foobar2000\foobar2000.exe /play
Pause: C:\Program files\foobar2000\foobar2000.exe /playpause
Stop: C:\Program files\foobar2000\foobar2000.exe /stop
Next: C:\Program files\foobar2000\foobar2000.exe /next
Previous: C:\Program files\foobar2000\foobar2000.exe /prev

3º - Tell me the path and name of an image cover you make, and I'll give you the code.

4º - That's because you change the code, I'm shure the size of the images of the new code is not 80x80.

5º - The headphone is in the trackinfo_mod. Here's the code:
$imageabs($sub($div(%_width%,2),170),-8,neo1\headphone.png,-5)
I set the height of the trackinfo to the end of the image, the lyrics panel just display lyrics.

Regards.


@Cepiperz
First: Thanks for the help.

Now the play buttons are working!!
Not Working the volum level in the last track info mod.
Thanks for the code for the headphone, i had it but as a button with some code i found in this thread.

About the covers. I resized some covers to 80x80 .png and i put them on documents and settings\xxxxx\aplication data\fobar2000\covers. But they are blanc png, i can´t see any album cover. I had try change the name to folder, album, artist or cover, but doesn´t work.After i had try on e:\program files\foobar2000\covers without results. My albuns are on another drive H:\ and here i have the Artist on each folder with the folder.jpg, if i put here the folder.png doesn´t work also. Maybe i have missed something. So i found some code to change from png to jpg, and it works, although they are 82x82, This Album cover jpg weren´t resized yet.

About hide, i just found where it display that autohide windows. Thanks a lot.

Thanks Again for the help.
Tomati
QUOTE (CepiPerez @ Oct 8 2006, 11:34) *
For everyone who wants my config:



I use:
- Single columns playlist
- Track info Mod
- foo_run for buttons
- foo_cwb_hooks for volume slider
- unofficial foo_playcount for last played - Add this to "Appended Information": %W %D/%M/%y

The buttons are included in the trackinfo_mod, I use Run services for play, stop, etc. Check the trackinfo mod forum for the latest version.

Here's a link for my images: link
Images must be in "C:\Program Files\Foobar 2000\" and in "C:\Documents and settings\YOURUSERNAME\Application data\Foobar2000\".

The covers must be in "C:\Documents and settings\YOURUSERNAME\Application data\Foobar2000\cover" folder in PNG in 80x80.



Use the auto-hide option for the second vertical splitter (the one that contains the lyrics panel)

Here's the code of the top trakinfo:
CODE

$imageabs($sub($div(%_width%,2),400),0,neo1\back1.png,)
$if(%isplaying%,
$puts(progress,$muldiv(%playback_time_seconds%,$sub(%_width%,24),%length_seconds%))
$drawrect(10,82,$sub(%_width%,20),8,brushcolor-null pencolor-120-120-120),)
$ifgreater($get(progress),0,$padding(9,82)$drawrect(3,2,$get(progress),4,brushcolor-90-90-90 pencolor-nulll),)
$if(%_isplaying%,
$font(calibri,14,boldshadow,170-170-170)$alignabs(0,4,%_width%,30,center,)%artist%
$alignabs(0,28,%_width%,20,center,)$font(calibri,8,boldshadow,170-230-250)"%title%"
$alignabs(0,44,%_width%,20,center,)$font(calibri,8,boldshadow,140-140-140)from
$font(calibri,8,boldshadow,210-210-210)"%album%"
$alignabs(0,61,%_width%,20,center,)$if($strcmp(%play_counter%,?),
$font(Calibri,8,boldshadow,180-180-180)Playing song for fist time,
$if($strcmp(%play_counter%,1),$font(Calibri,8,boldshadow,180-180-180)Song played %play_counter% time',' on ,Song played %play_counter% times. Last on )
$if($strcmp($left($right(%last_played%,10),1),1),Sunday', ',)
$if($strcmp($left($right(%last_played%,10),1),2),Monday', ',)
$if($strcmp($left($right(%last_played%,10),1),3),Tuesday', ',)
$if($strcmp($left($right(%last_played%,10),1),4),Wednesday', ',)
$if($strcmp($left($right(%last_played%,10),1),5),Thursday', ',)
$if($strcmp($left($right(%last_played%,10),1),6),Friday', ',)
$if($strcmp($left($right(%last_played%,10),1),7),Saturday', ',)
$right(%last_played%,8) at $right($left(%last_played%,16),5))
,
$font(calibri,18,boldshadow,170-170-170)$alignabs(0,10,%_width%,30,center,)Foobar2000
$alignabs(0,46,%_width%,20,center,)$font(calibri,9,boldshadow,170-230-250)Music Player
$alignabs(0,68,%_width%,20,center,)$font(calibri,8,boldshadow,210-210-210)v0.9.3
)


Here's the code of my playlist:
Row Height: 23 - Order by %artist%
Item Display:
CODE

$imageabs(10,$if($strcmp(%tracknumber%,01),0,$add(23,$mul(-23,%tracknumber%))),neo1\albumborder.png,)
$imageabs(11,$if($strcmp(%tracknumber%,01),1,$add(24,$mul(-23,%tracknumber%))),$replace($replace(cover\%artist% - %album%.png,',',),?,),)
$font(calibri,8,boldshadow glowalpha-50,)
$if($strcmp(%tracknumber%,01),$alignabs(100,-3,120,110,,)%date%,)
$if($strcmp(%tracknumber%,01),$imageabs(100,15,neo1\line2.png,))
$font(calibri,8,boldshadow glowalpha-50,100-100-100)
$if($strcmp(%tracknumber%,02),$alignabs(100,-3,140,110,,)%album%,)
$if(%_selected%,$drawrect(246,0,0,0,brushcolor-220-220-220 pencolor-null))
$if(%_isplaying%,$drawrect(246,0,0,0,brushcolor-40-40-40 pencolor-null))
$font(calibri,8,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,7,bold,170-170-170)
$if($strcmp(%play_counter%,?),No plays,%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%,
$drawrect(246,0,0,0,brushcolor-40-40-40 pencolor-null)
$alignabs(250,-2,900,200,,)$font(Wingdings 3,17,bold glow-100-100-100,250-250-250)m
$font(calibri,8,boldshadow glow-50-90-100,170-230-250)
$alignabs(272,-1,$sub(%_width%,318),12,,)%title%
$alignabs($sub(%_width%,127),-1,120,20,right,)%length%
$alignabs(272,10,120,110,,)$font(calibri,7,boldshadow glow-70-70-70,180-180-180)
$if($strcmp(%play_counter%,?),No plays,%play_counter% Plays) - $if($meta(LYRICS),Lyrics available,No Lyrics)
$alignabs($sub(%_width%,126),13,120,20,right,)$font(wingdings,6,boldshadow glow-70-70-70,180-180-180)$repeat(,%rating%)
)

Group Display:
CODE

$font(calibri,9,boldshadow glowalpha-50,)
$alignabs(10,-2,580,110,,)%artist%
$imageabs(9,15,neo1\line3.png,)


Code of the bottom Trackinfo:
CODE

$imageabs($sub($div(%_width%,2),454),5,neo1\back2.png,)
$if(%isplaying%,
$puts(volume,$add($mul($substr($num(%cwb_volume%,4),2,4),-1),100))
$alignabs(10,20,60,200,,)
$font(Calibri,7,glow-50-70-90,170-230-250)
Volume: $get(volume) '%'
$imageabs($sub(%_width%,58),12,'neo1\vol\'$div($add($get(volume),5),10)'.png',)
$alignabs($sub(%_width%,70),45,60,200,right,)
$get(spacer)%_time_elapsed%$if(%_time_total%,' / '%_time_total%,)
$if(%_time_remaining%,$get(spacer),)
$alignabs(10,45,200,200,,)
$if($strstr(%_path_raw%,'tone://'),$if(%_time_total%,%_length%' Seconds of '$replace(%title%,'Tone: ',)' Tone',%title%),)
$if($strstr(%_path_raw%,'silence://'),%_length%' Seconds of Silence',)
$if($strstr(%_path_raw%,'cdda://'),'CDDA',)
$if2(%mp3%,$if2(%__codec%,))
$if($strstr(%_path_raw%,'cdda://'),$get(spacer)'1411kbps',$if(%__bitrate%,$get(spacer)%__bitrate%' kbps ',))
$if(%__extrainfo%,$get(spacer)%__extrainfo% ,)
$if(%__samplerate%,$get(spacer)$cut(%__samplerate%,2)' kHz' ,)
$if(%__channels%,$get(spacer)$ifgreater(%__channels%,1,'Stereo','Mono'),)
,)
$button($sub($div(%_width%,2),64),32,0,0,0,0,neo1\pause1b.png,neo1\pause2b.png,Playpause,)
$button($sub($div(%_width%,2),40),31,0,0,0,0,neo1\prev1.png,neo1\prev2.png,Previous,)
$button($add($div(%_width%,2),17),31,0,0,0,0,neo1\next1.png,neo1\next2.png,Next,)
$button($add($div(%_width%,2),44),32,0,0,0,0,neo1\stop1.png,neo1\stop2.png,Stop,)
$button($sub($div(%_width%,2),15),26,0,0,0,0,neo1\play1.png,neo1\play2.png,Play,)


Enjoy!





Hello,

I'm trying your setup too and I have a trouble with the cover of the AC/DC band as windows don't accept the "/" in the name, I can't display their cover, do you have a clue for this.

For the album that don't have 4 songs at least the picture is cut, is there a way to solve this ?

Also, I can't find the way to activate the playcount and the rating tag , could you give more details ?

Any way thanks for your work it's really good looking.

Thanks
Goueg
There are very nice configs here.

Here's my first try, i should decide whether I want a "newspaper" or a "modern" style but I didn't yet...





edit: work in progress of course wink.gif
Nickoladze
lizzard
QUOTE (Tomati @ Oct 9 2006, 18:35) *
QUOTE (CepiPerez @ Oct 8 2006, 11:34) *

Hello,

I'm trying your setup too and I have a trouble with the cover of the AC/DC band as windows don't accept the "/" in the name, I can't display their cover, do you have a clue for this.

For the album that don't have 4 songs at least the picture is cut, is there a way to solve this ?

Any way thanks for your work it's really good looking.

Thanks


I have the same problem eith the covers. One album, one song and the cover is half of the size...
uRT
I'm sorry but I don't like the SCP (Single Column Playlist) at all so I stick to my Column Playlist. Vary simple and functionall foobar2000.

OttoDestruct
tool++, or anyone else, what font did you use for the little file icon thing in the item display in this:

http://img137.imageshack.us/my.php?image=20061004mx9.png
Sphix
Where I insert the codes for Item/Group Display?!

Sorry, I'm a noob tongue.gif
acedriver
QUOTE (Sphix @ Oct 10 2006, 10:47) *
Where I insert the codes for Item/Group Display?!

Sorry, I'm a noob tongue.gif

right click the playlist
Sphix
QUOTE (acedriver @ Oct 9 2006, 20:52) *
QUOTE (Sphix @ Oct 10 2006, 10:47) *

Where I insert the codes for Item/Group Display?!

Sorry, I'm a noob tongue.gif

right click the playlist


Right click the playlist brings up the file options like 'remove, tagging, edit, play' huh.gif
spex04
QUOTE (Sphix @ Oct 10 2006, 04:17) *
QUOTE (acedriver @ Oct 9 2006, 20:52) *

QUOTE (Sphix @ Oct 10 2006, 10:47) *

Where I insert the codes for Item/Group Display?!

Sorry, I'm a noob tongue.gif

right click the playlist


Right click the playlist brings up the file options like 'remove, tagging, edit, play' huh.gif


And then click on 'Settings...'
NappyHead
QUOTE (gr8 @ Oct 2 2006, 04:35) *
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



Can anyone tell me where I can get the background and overlay for this case?

Thanks

NH
CepiPerez
QUOTE
@Cepiperz
First: Thanks for the help.

Now the play buttons are working!!
Not Working the volum level in the last track info mod.
Thanks for the code for the headphone, i had it but as a button with some code i found in this thread.

About the covers. I resized some covers to 80x80 .png and i put them on documents and settings\xxxxx\aplication data\fobar2000\covers. But they are blanc png, i can´t see any album cover. I had try change the name to folder, album, artist or cover, but doesn´t work.After i had try on e:\program files\foobar2000\covers without results. My albuns are on another drive H:\ and here i have the Artist on each folder with the folder.jpg, if i put here the folder.png doesn´t work also. Maybe i have missed something. So i found some code to change from png to jpg, and it works, although they are 82x82, This Album cover jpg weren´t resized yet.

About hide, i just found where it display that autohide windows. Thanks a lot.

Thanks Again for the help.


For the covers, look for this line in the code:

$imageabs(11,$if($strcmp(%tracknumber%,01),1,$add(24,$mul(-23,%tracknumber%))),$replace($replace(cover\%artist% - %album%.png,',',),?,),)

And replace for one of those:

1º CODE:
$imageabs2(80,80,0,$add($mul(%_height%,$sub(%tracknumber%,2)),$muldiv(%_height%,5,6)),,,11,-3,$replace($replace(C:\Documents and settings\XXXXX\Application data\foobar2000\covers\%artist% - %album%.jpg,',',),?,),)

The name of the images must be, for example, "QUEEN - GREATEST HITS.jpg" for use this code, and the images must be in C:\Documents and settings\XXXXX\Application data\foobar2000\covers\

2º CODE:
$imageabs2(80,80,0,$add($mul(%_height%,$sub(%tracknumber%,2)),$muldiv(%_height%,5,6)),,,11,-3,$replace($replace($replace(%path%,%filename_ext%,folder.jpg),',',),?,),)

For covers in JPG format (any size) in your H: drive. Example: H:\Music\Queen\Greatest Hits\folder.jpg

Try this
Sphix
Thanks

I used CepiPerez codes and what I've got:


How do I fix it?
CepiPerez
QUOTE (Tomati @ Oct 9 2006, 20:35) *
Hello,

I'm trying your setup too and I have a trouble with the cover of the AC/DC band as windows don't accept the "/" in the name, I can't display their cover, do you have a clue for this.

For the album that don't have 4 songs at least the picture is cut, is there a way to solve this ?

Also, I can't find the way to activate the playcount and the rating tag , could you give more details ?

Any way thanks for your work it's really good looking.

Thanks


You can add a $replace function for replace the "/" in the album. Try this:

$imageabs(11,$if($strcmp(%tracknumber%,01),1,$add(24,$mul(-23,%tracknumber%))),$replace($replace($replace(cover\%artist% - %album%.png,',',),?,),'/', ),)

NOTE:
LOOK THIS ",'/', ),)". There's a space.
That's means that your AC/DC cover must be called, for example: AC DC - Back in black.png.
If the cover is ACDC - Back in black, don't use the space.

Is that clear?

PS: Excuse me for my english. I speak spanish.


QUOTE (Sphix @ Oct 10 2006, 01:00) *
Thanks

I used CepiPerez codes and what I've got:


How do I fix it?


The code of Group Display is ok, you only need to copy the images in C:\Documents and settings\XXXX\Application data\Foobar2000\neo1\ for see the lines.

But the code of the Item Display is wrong. I think you accidentally remove a parenthesis.
Try to copy/paste the code again.

Regards
Sphix
Ok, now I have this:

The song title doesn't appear :/

Sorry for disturbing you
CepiPerez
QUOTE (NappyHead @ Oct 10 2006, 00:26) *
QUOTE (gr8 @ Oct 2 2006, 04:35) *

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



Can anyone tell me where I can get the background and overlay for this case?

Thanks

NH


$imageabs2(152,152,0,$add($mul(%_height%,$sub(%tracknumber%,2)),$muldiv(%_height%,5,6)),,,39,-6,$replace($replace($replace(%path%,%filename_ext%,folder.jpg),',',),?,),)

Here's the error. This number determines the top of the image.Set the value up to, for example 12. That number will add 18 pixels to the top (-6 + 18= 12)

Hope you understand me.

Regards.



QUOTE (Sphix @ Oct 10 2006, 01:18) *
Ok, now I have this:

The song title doesn't appear :/

Sorry for disturbing you



Try looking for this line in the code:

$alignabs(272,-1,$sub(%_width%,318),12,,)%title%

And replace it for this one:

$alignabs(272,-1,$sub(%_width%,318),18,,)%title%

That value determines the height of the title. If the Font is too big, it won't show it.


NOTE: The line is in two parts of the code. Replace both!
Sphix
Many thanks ;D
Working fine now
CepiPerez
QUOTE (lizzard @ Oct 9 2006, 20:20) *
@Cepiperz
First: Thanks for the help.

Now the play buttons are working!!
Not Working the volum level in the last track info mod.
Thanks for the code for the headphone, i had it but as a button with some code i found in this thread.

About the covers. I resized some covers to 80x80 .png and i put them on documents and settings\xxxxx\aplication data\fobar2000\covers. But they are blanc png, i can´t see any album cover. I had try change the name to folder, album, artist or cover, but doesn´t work.After i had try on e:\program files\foobar2000\covers without results. My albuns are on another drive H:\ and here i have the Artist on each folder with the folder.jpg, if i put here the folder.png doesn´t work also. Maybe i have missed something. So i found some code to change from png to jpg, and it works, although they are 82x82, This Album cover jpg weren´t resized yet.

About hide, i just found where it display that autohide windows. Thanks a lot.

Thanks Again for the help.



I forgot to tell you...
The volume images folder Must be in C:\Program files\Foobar2000\neo1\
And if it doesn't work, that's because you need the latest version of cwb_hooks.

Regards
ubi
QUOTE (NappyHead @ Oct 10 2006, 06:26) *
QUOTE (gr8 @ Oct 2 2006, 04:35) *

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



Can anyone tell me where I can get the background and overlay for this case?

Thanks

NH


in this thread (post #189) you should find a smaller version that I used to make my cd cases. direct link
smile.gif
lizzard
QUOTE (CepiPerez @ Oct 9 2006, 23:52) *
QUOTE (lizzard @ Oct 9 2006, 20:20) *

@Cepiperz
First: Thanks for the help.

Now the play buttons are working!!
Not Working the volum level in the last track info mod.
Thanks for the code for the headphone, i had it but as a button with some code i found in this thread.

About the covers. I resized some covers to 80x80 .png and i put them on documents and settings\xxxxx\aplication data\fobar2000\covers. But they are blanc png, i can´t see any album cover. I had try change the name to folder, album, artist or cover, but doesn´t work.After i had try on e:\program files\foobar2000\covers without results. My albuns are on another drive H:\ and here i have the Artist on each folder with the folder.jpg, if i put here the folder.png doesn´t work also. Maybe i have missed something. So i found some code to change from png to jpg, and it works, although they are 82x82, This Album cover jpg weren´t resized yet.

About hide, i just found where it display that autohide windows. Thanks a lot.

Thanks Again for the help.



I forgot to tell you...
The volume images folder Must be in C:\Program files\Foobar2000\neo1\
And if it doesn't work, that's because you need the latest version of cwb_hooks.

Regards


@CepiPerez

Thnaks for all.Thanks
I will try later because i musto go to work, and later i will tell you the results.

About the cwb_hooks i have the latest version, and it is on the directory e:\program files\ foobar2000\components.
The image of volume is on the e:\program files\foobar2000\components\neo1\. The image is there but the level don´t work.


CepiPerez you speak spanish and i portuguese. Here a bad english too.
Thanks
tool++
QUOTE (OttoDestruct @ Oct 10 2006, 03:21) *
tool++, or anyone else, what font did you use for the little file icon thing in the item display in this:

http://img137.imageshack.us/my.php?image=20061004mx9.png


kroeger 05_55
Tomati
QUOTE (CepiPerez @ Oct 9 2006, 20:13) *
You can add a $replace function for replace the "/" in the album. Try this:

$imageabs(11,$if($strcmp(%tracknumber%,01),1,$add(24,$mul(-23,%tracknumber%))),$replace($replace($replace(cover\%artist% - %album%.png,',',),?,),'/', ),)

NOTE:
LOOK THIS ",'/', ),)". There's a space.
That's means that your AC/DC cover must be called, for example: AC DC - Back in black.png.
If the cover is ACDC - Back in black, don't use the space.

Is that clear?

PS: Excuse me for my english. I speak spanish.


Hello,

You are the man, I followed your instructions and all is fine now I even be able to add the ':' string . Good job man.


If I can ask you some more details about the playcount display and the rating tag:

I put the foo_cwb_hooks 1.013 (last one I found) in my component directory but the display count don't seems to work as it always report me first time play / No Play.

You are talking about this :"unofficial foo_playcount for last played - Add this to "Appended Information": %W %D/%M/%y" but where should I add these string ?

For the rating tag : which code do I use and where should I put it?

Also for the lyrics panel is it normal that there is no active line text showed, only the text is scrolling.


ps: your english is perfect (at least for me as it's not my mother language too, I'm from belgium and french speaker)

Kind regards,
lizzard
QUOTE (Tomati @ Oct 10 2006, 07:25) *
QUOTE (CepiPerez @ Oct 9 2006, 20:13) *

You can add a $replace function for replace the "/" in the album. Try this:

$imageabs(11,$if($strcmp(%tracknumber%,01),1,$add(24,$mul(-23,%tracknumber%))),$replace($replace($replace(cover\%artist% - %album%.png,',',),?,),'/', ),)

NOTE:
LOOK THIS ",'/', ),)". There's a space.
That's means that your AC/DC cover must be called, for example: AC DC - Back in black.png.
If the cover is ACDC - Back in black, don't use the space.

Is that clear?

PS: Excuse me for my english. I speak spanish.


Hello,

You are the man, I followed your instructions and all is fine now I even be able to add the ':' string . Good job man.


If I can ask you some more details about the playcount display and the rating tag:

I put the foo_cwb_hooks 1.013 (last one I found) in my component directory but the display count don't seems to work as it always report me first time play / No Play.

You are talking about this :"unofficial foo_playcount for last played - Add this to "Appended Information": %W %D/%M/%y" but where should I add these string ?

For the rating tag : which code do I use and where should I put it?

Also for the lyrics panel is it normal that there is no active line text showed, only the text is scrolling.


ps: your english is perfect (at least for me as it's not my mother language too, I'm from belgium and french speaker)

Kind regards,


Hi
The play, pause , stop and so on is a command to be enserted on run services. you must get the foo_run.
henn1ng
QUOTE (tool++ @ Oct 10 2006, 01:31) *
QUOTE (OttoDestruct @ Oct 10 2006, 03:21) *

tool++, or anyone else, what font did you use for the little file icon thing in the item display in this:

http://img137.imageshack.us/my.php?image=20061004mx9.png


kroeger 05_55


would you mind sharing the group code you used in that version ? i.e. how to get that background image in there ?
and also: can you please tell me how to fix the following issue: whenever im skipping thru songs the new song will always show up all the way at the bottom or the top of the playlist. can you or anyone else tell me how make make it placed in the middle?

thx in advance.
Slourte
A work in progress...

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.