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
shakey_snake
QUOTE(drake @ Jan 15 2007, 23:12) *

QUOTE(Yotsuya @ Jan 13 2007, 16:47) *

There are a few approaches to dealing with this:

- Hide the image when there is not enough room. You can do this with an $ifgreater() statement like this:
CODE
$ifgreater($mul(%_height%,%_itemcount%),100,
// your existing album art code
,)


this relies on the total number of tracks by the artist, not the amount in the album

It relies on the number of items in the group, as grouped by SCPL. %_itemcount% is a SCPL variable, not really a tag.
Valdoran
I just made a now playing screen:

IPB Image

F10 switches between this screen, and bbmartini's playlist config.

I still want to do some kind of pause-indication, but I'm not sure how I should do it.. unsure.gif
Oompa
QUOTE(Valdoran @ Jan 16 2007, 16:29) *

I just made a now playing screen:

IPB Image

F10 switches between this screen, and bbmartini's playlist config.

I still want to do some kind of pause-indication, but I'm not sure how I should do it.. unsure.gif

That's awesome, can I get the code, and how do you set it to switch on keypress?
shakey_snake
QUOTE(Oompa @ Jan 16 2007, 20:10) *

That's awesome, can I get the code, and how do you set it to switch on keypress?

http://www.hydrogenaudio.org/forums/index....showtopic=51912

Looking before asking questions is actually quicker, believe it or not. tongue.gif
buckaroo
QUOTE

2. Add a leading '/' to all relative paths.


Thanks a lot!
Valdoran
QUOTE(Oompa @ Jan 17 2007, 02:10) *

That's awesome, can I get the code, and how do you set it to switch on keypress?

Here you are, but there's still some work to be done (pause-indication, more flexibility (as it is now, everything is positioned absolutely, so the foobar screen needs the exact same size...))

The screen consists of just one foo_uie_trackinfo_mod panel:
CODE

// Global
$font(Calibri,20,bold glow-146-153-179,23-23-30)

// Background

$imageabs(0,0,\images\NP\bg.png,)
$imageabs(60,30,\images\NP\case.png,)

// PerTrack

$imageabs2(164,164,0,0,0,0,85,40,$replace(%path%,%filename_ext%,$replace(%artist% - %album%.jpg,/,-)),)
$imageabs(60,30,\images\NP\overlay.png,)

$if(%_isplaying%,
$alignabs(,230,322,100,center,)
%artist%
$alignabs(,260,322,100,center,)
%title%
,
$alignabs(,260,322,100,center,)
Not playing...
)

// PerSecond
$if(%_isplaying%,
$drawrect(40,340,242,10,brushColor-null penColor-146-153-179)
$drawrect(42,342,$ifgreater($muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),0,$muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),1),6,brushColor-146-153-179 penColor-null)
)
$font(Calibri,8,,146-153-179)
$alignabs(40,350,322,100,,)
[%playback_time%]
$alignabs(240,350,42,100,right,)
[%length%]

$alignabs(70,350,182,100,center,)
[Next song: %cwb_next_title%]


Other settings don't matter.

Images: here. Put them in %foobar%/images/NP/
Components needed: foo_uie_trackinfo_mod and foo_cwb_hooks (for next song information)

And then adjust the size of the foobar screen until the background of my config fits exactly... As I said, it needs work. wink.gif

EDIT: if you find any bugs or errors, please let me know. smile.gif

QUOTE(shakey_snake @ Jan 17 2007, 02:18) *

http://www.hydrogenaudio.org/forums/index....showtopic=51912

Looking before asking questions is actually quicker, believe it or not. tongue.gif

Yep, either of those methods should do the trick; I used the foo_uie_tabs method, btw.
textured
heres the babysteps progress ive made on my foo. im wondering if it would be that hard to get rid of the basic grey background.. it seems that others have done it, but ive no idea what it entails. how can i do that?
IPB Image
Garfield4
QUOTE(textured @ Jan 17 2007, 04:27) *

heres the babysteps progress ive made on my foo. im wondering if it would be that hard to get rid of the basic grey background.. it seems that others have done it, but ive no idea what it entails. how can i do that?


If that's possible outside of theme's id like to know as well tongue.gif

In the mean time here's my main console at the moment - a big thanks to the foobar community - without your posts and tips i'd have got nowhere...

IPB Image
bbmartini
thats a nice touch Valdoran, heres my quick change
IPB Image
Lance Uppercut
How much better can foobar get?
Every day I troll the appearance thread gathering ideas and inspiration.

So much creativity and the best I can do is steal a piece from each person.
Oh well, it least it looks cool!

IPB Image
bbmartini
is there a way to shorten text? i have some long titles and currently im using the cut function, but it goes it by number of characters. is there another way to do it to make a more even appearance?
shakey_snake
switch to a smaller font?
Yotsuya
bbmartini:
$alignabs(4,4,100,10,,)

If you adjust the third and fourth parameters (100,10) you can define the width and height for the text to appear in by pixels. This will effectively cut the text evenly.
jclim00
Just did a complete rework of my trackinfo mode. Damn it's pretty!

IPB Image
Tyashki
QUOTE(bbmartini @ Jan 18 2007, 11:45) *

thats a nice touch Valdoran, heres my quick change
IPB Image


ooh, pretty. Any chance of uploading that data for this edit?
And what VS is that?
Oompa
QUOTE(shakey_snake @ Jan 16 2007, 19:18) *

QUOTE(Oompa @ Jan 16 2007, 20:10) *

That's awesome, can I get the code, and how do you set it to switch on keypress?

http://www.hydrogenaudio.org/forums/index....showtopic=51912

Looking before asking questions is actually quicker, believe it or not. tongue.gif

Alright, got it. I had a differnt version of the plugin. But I can't get it to switch back and forth using 1 key only, any tips there?
Valdoran
QUOTE(Tyashki @ Jan 18 2007, 05:30) *

And what VS is that?

Luna Element 5
Crissaegrim
QUOTE(Hakker @ Jan 15 2007, 15:20) *

QUOTE(Yotsuya @ Jan 15 2007, 11:33) *

I got bored so I redid my trackinfo panel.
IPB ImageIPB Image
IPB Image


that's one awesome setup.
would love to see that one appear in the Configuration Distribution Thread.

Where do you put your album art? I have mine at ARTIST\ALBUM\folder.jpg/png/gif ... How do I edit the albumart snippet for this? Thanks.
Yotsuya
QUOTE(Crissaegrim @ Jan 18 2007, 17:36) *

...

Where do you put your album art? I have mine at ARTIST\ALBUM\folder.jpg/png/gif ... How do I edit the albumart snippet for this? Thanks.


I place my album art in the directory with the music, either named by %CDID%.jpg or %album artist% - %album%.jpg. If you grabbed my code from the configuration distribution thread search the code for a block like this:
CODE
// Album Art
$puts(album.art,$replace(%path%,%filename_ext%,$if2(%cdid%,[%album artist% - ]$replace(%album%,?,,:,)).*))

$if($fileexists($get(album.art)),
$imageabs2(148,148,,,,,14,-6,images\case.png,)

Now change that $puts(album.art,) line to this:
CODE
$puts(album.art,$replace(%path%,%filename_ext%,folder.*))
J2Tricky
hi guys, i was wondering if its possible to, rather than have a color for the playlist background, just make it transparent(something like this), using either the default ui or columns ui. if its not possible with either of those, is there another way to do it?
Yotsuya
as far as I know there is no color designated as transparent for columns ui. I think this is a nice idea however I do not believe it is possible unless columns ui adds such a feature.
Oompa
QUOTE(Tyashki @ Jan 17 2007, 22:30) *


ooh, pretty. Any chance of uploading that data for this edit?
And what VS is that?


I tried to replicate it

IPB Image

Here's the code:

CODE

// Global
$font(Calibri,20,bold glow-146-153-179,23-23-30)

// Background

//$imageabs(0,0,\images\NP\bg.png,)
//$imageabs(60,30,\images\NP\case.png,)

// PerTrack
$imageabs2(313,313,0,0,0,0,5,5,$replace(%path%,%filename_ext%,$replace(folder.jpg,/,-)),nokeepaspect)
$imageabs2(313,313,0,0,0,0,5,322,$replace(%path%,%filename_ext%,$replace(folder.jpg,/,-)),nokeepaspectROTATEFLIP-6)
$imageabs(5,250,\images\NP\reflect.png,)
//$imageabs(60,30,\images\NP\overlay.png,)

$if(%_isplaying%,
$alignabs(,320,322,100,center,)
%artist%
$alignabs(,350,322,100,center,)
%title%
,
$alignabs(,320,322,100,center,)
Foobar2000
)

// PerSecond
$if(%_isplaying%,
$drawrect(40,390,242,10,brushColor-null penColor-146-153-179)
$drawrect(42,392,$ifgreater($muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),0,$muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),1),6,brushColor-146-153-179 penColor-null)
)
$font(Calibri,8,,146-153-179)
$alignabs(40,400,322,100,,)
[%playback_time%]
$alignabs(240,400,42,100,right,)
[%length%]

//$alignabs(70,350,182,100,center,)
//[%album%]

and reflect.png is available here:
http://img411.imageshack.us/img411/5381/reflectar3.png
J2Tricky
hmm, ok in that case would you be able to tell me how would i replicate this or is that picture edited in some way?, sorry for any noobishness im new to the whole appearance customization aspect of foobar.
Purple Monkey
In that image its not the playlist that is transparent but the whole of foobar. You can set the transparency of the window from the UI Preferences.
leokennis
My new "Now Playing" tab; layout by ojdo but somewhat modified:

Normal display (clickable):
IPB Image

Extra info the first/last 30 seconds of a track (clickable):
IPB Image

And when the song is form a doubble CD smile.gif (clickable):
IPB Image

Half the beauty is finding good artist images though...
Crissaegrim
QUOTE(Yotsuya @ Jan 18 2007, 19:35) *


CODE
// Album Art
$puts(album.art,$replace(%path%,%filename_ext%,$if2(%cdid%,[%album artist% - ]$replace(%album%,?,,:,)).*))

$if($fileexists($get(album.art)),
$imageabs2(148,148,,,,,14,-6,images\case.png,)

Now change that $puts(album.art,) line to this:
CODE
$puts(album.art,$replace(%path%,%filename_ext%,folder.*))


Thanks a lot. Works like a charm.
J2Tricky
thanks purple, I do see that now, thanks for pointing that out!
wilflare
hi all
cant seem to be able to download from bandongo and rarhost sendspace due to ISP restrictions

anyone mind uploading
bbmartini's images
moglenstar's icons
and Valdoren's images too

really sorry but would appreciate the help

all the configs look really nice!
Valdoran
QUOTE(wilflare @ Jan 21 2007, 05:46) *

hi all
cant seem to be able to download from bandongo and rarhost sendspace due to ISP restrictions

anyone mind uploading
bbmartini's images
moglenstar's icons
and Valdoren's images too

really sorry but would appreciate the help

all the configs look really nice!

My images
Bbmartini's

The moglenstar link (this one) doesn't seem to work anymore.

By the way, I'll be removing these archives in a few days, so get them fast if you need them.
Aesir
A long time ago, I set up up Foobar ver .8.3 exactly the way I wanted, I haven't been back here or even thought about changing it since. I come in here for the first time in probably over a year, and I'm still trying to pick my jaw up off the floor. Amazing job guys, it looks like I have my work cut out for me to get with this whole ".9" thing. Give my a few weeks and maybe I'll be posting my screenies here too wink.gif .
painkilla
QUOTE(FofR @ Nov 20 2006, 21:34) *

I made a little aesthetic change to my design:

IPB Image


Could you tell me how you made it? addons/config
wilflare
QUOTE(Valdoran @ Jan 21 2007, 16:45) *

QUOTE(wilflare @ Jan 21 2007, 05:46) *

hi all
cant seem to be able to download from bandongo and rarhost sendspace due to ISP restrictions

anyone mind uploading
bbmartini's images
moglenstar's icons
and Valdoren's images too

really sorry but would appreciate the help

all the configs look really nice!

My images
Bbmartini's

The moglenstar link (this one) doesn't seem to work anymore.

By the way, I'll be removing these archives in a few days, so get them fast if you need them.


hi Valdoren! much appreciated!
umm. i notice in ur images, there's a pause image.

really sorry to sound demanding but is it possible to update the code for the now playing menu when u figure the code for the pause please? it's really nice!
much appreciated!
Valdoran
QUOTE(wilflare @ Jan 21 2007, 13:43) *

hi Valdoren! much appreciated!
umm. i notice in ur images, there's a pause image.

really sorry to sound demanding but is it possible to update the code for the now playing menu when u figure the code for the pause please? it's really nice!
much appreciated!

Yeah, sure:

CODE

// Global
$font(Calibri,20,bold glow-146-153-179,23-23-30)

// Background
$imageabs(0,0,\images\NP\bg.png,)
$imageabs(60,30,\images\NP\case.png,)


// PerTrack
$imageabs2(164,164,0,0,0,0,85,40,$replace(%path%,%filename_ext%,cover.jpg),)
//$imageabs(60,30,\images\NP\overlay.png,)

$if(%_isplaying%,
$alignabs(,230,322,100,center,)
%artist%
$font(Calibri,20,bold italic glow-146-153-179,23-23-30)
$alignabs(,260,322,100,center,)
%title%
,
$alignabs(,260,322,100,center,)
Not playing...
)

$if(%ispaused%,
$imageabs(60,30,\images\NP\paused.png,)
)

$font(Calibri,8,,146-153-179)
$alignabs(70,350,182,100,center,)
[Next: %cwb_next_title%]

// PerSecond
$if(%_isplaying%,
$drawrect(40,340,242,10,brushColor-null penColor-146-153-179)
$drawrect(42,342,$ifgreater($muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),0,$muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),1),6,brushColor-146-153-179 penColor-null)
)
$font(Calibri,8,,146-153-179)
$alignabs(40,350,322,100,,)
[%playback_time%]
$alignabs(240,350,42,100,right,)
[%length%]


With the pause-image, it's best if you don't have the fake-shining-thing (overlay.png), because when two semi-transparent things are on top of each other, it looks ugly.
If you still want the overlay, remove the slashes in front of "$imageabs(60,30,\images\NP\overlay.png,)"
Oompa
QUOTE(Valdoran @ Jan 21 2007, 07:12) *

QUOTE(wilflare @ Jan 21 2007, 13:43) *

hi Valdoren! much appreciated!
umm. i notice in ur images, there's a pause image.

really sorry to sound demanding but is it possible to update the code for the now playing menu when u figure the code for the pause please? it's really nice!
much appreciated!

Yeah, sure:

CODE

// Global
$font(Calibri,20,bold glow-146-153-179,23-23-30)

// Background
$imageabs(0,0,\images\NP\bg.png,)
$imageabs(60,30,\images\NP\case.png,)


// PerTrack
$imageabs2(164,164,0,0,0,0,85,40,$replace(%path%,%filename_ext%,cover.jpg),)
//$imageabs(60,30,\images\NP\overlay.png,)

$if(%_isplaying%,
$alignabs(,230,322,100,center,)
%artist%
$font(Calibri,20,bold italic glow-146-153-179,23-23-30)
$alignabs(,260,322,100,center,)
%title%
,
$alignabs(,260,322,100,center,)
Not playing...
)

$if(%ispaused%,
$imageabs(60,30,\images\NP\paused.png,)
)

$font(Calibri,8,,146-153-179)
$alignabs(70,350,182,100,center,)
[Next: %cwb_next_title%]

// PerSecond
$if(%_isplaying%,
$drawrect(40,340,242,10,brushColor-null penColor-146-153-179)
$drawrect(42,342,$ifgreater($muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),0,$muldiv($muldiv(%playback_time_seconds%,100,%length_seconds%),238,100),1),6,brushColor-146-153-179 penColor-null)
)
$font(Calibri,8,,146-153-179)
$alignabs(40,350,322,100,,)
[%playback_time%]
$alignabs(240,350,42,100,right,)
[%length%]


With the pause-image, it's best if you don't have the fake-shining-thing (overlay.png), because when two semi-transparent things are on top of each other, it looks ugly.
If you still want the overlay, remove the slashes in front of "$imageabs(60,30,\images\NP\overlay.png,)"


I just removed the whole next track thing and replaced it with "Paused" if it's paused or not.
ludeboy12
ok so I pretty much got this all setup the way i want it now.

only problem is i cant get the rating to show up for the life of me.

Haven't used foobar in years so any help on this would be great.

IPB Image
wilflare
make sure u change the
$if(%rating%,
$ifequal($num(%rating%,2),00,$imageabs(5,7,/images\rating_stars\rating0.png,),)
$ifequal($num(%rating%,2),01,$imageabs(5,7,/images\rating_stars\rating1.png,),)
$ifequal($num(%rating%,2),02,$imageabs(5,7,/images\rating_stars\rating2.png,),)
$ifequal($num(%rating%,2),03,$imageabs(5,7/,images\rating_stars\rating3.png,),)
$ifequal($num(%rating%,2),04,$imageabs(5,7,/images\rating_stars\rating4.png,),)
$ifequal($num(%rating%,2),05,$imageabs(5,7,/images\rating_stars\rating5.png,),)
,$imageabs(5,7,/images\rating_stars\notrated.png,))

notrated.png to your directory -it's quite commonly missed out

on the other hand, anyone know to use these icons to rate
they appear on mine but have no effect...

PS:thanks valdoran for the code!
ludeboy12
QUOTE(wilflare @ Jan 21 2007, 15:59) *

make sure u change the
$if(%rating%,
$ifequal($num(%rating%,2),00,$imageabs(5,7,/images\rating_stars\rating0.png,),)
$ifequal($num(%rating%,2),01,$imageabs(5,7,/images\rating_stars\rating1.png,),)
$ifequal($num(%rating%,2),02,$imageabs(5,7,/images\rating_stars\rating2.png,),)
$ifequal($num(%rating%,2),03,$imageabs(5,7/,images\rating_stars\rating3.png,),)
$ifequal($num(%rating%,2),04,$imageabs(5,7,/images\rating_stars\rating4.png,),)
$ifequal($num(%rating%,2),05,$imageabs(5,7,/images\rating_stars\rating5.png,),)
,$imageabs(5,7,/images\rating_stars\notrated.png,))

notrated.png to your directory -it's quite commonly missed out

on the other hand, anyone know to use these icons to rate
they appear on mine but have no effect...

PS:thanks valdoran for the code!


awesome thanks. Of course it was still set for hearts which are not available for download right now.
changed it to stars and all works now.

thanks for the help.
beto
I made major changes:

IPB Image

Code is borrowed from bbmartini (single column) and Valdoran (trackinfo) and tweaked to my needs. Cheers guys/gals and thanks for the code. biggrin.gif
kanak
Here's mine.

IPB Image
drake
QUOTE(shakey_snake @ Jan 15 2007, 23:15) *

QUOTE(drake @ Jan 15 2007, 23:12) *

QUOTE(Yotsuya @ Jan 13 2007, 16:47) *

There are a few approaches to dealing with this:

- Hide the image when there is not enough room. You can do this with an $ifgreater() statement like this:
CODE
$ifgreater($mul(%_height%,%_itemcount%),100,
// your existing album art code
,)


this relies on the total number of tracks by the artist, not the amount in the album

It relies on the number of items in the group, as grouped by SCPL. %_itemcount% is a SCPL variable, not really a tag.

so how do i fix that?
panfist
QUOTE(bbmartini @ Jan 11 2007, 21:20) *


if anyone's still interested...
IPB Image



Hey, I'm very new at this foobar thing, and I'm trying to find a nice SCPL configuration to use. This is about the 10th person's SCP that I tried and this is the first one where the images and everything just worked. Thank you very much for posting this and I have to say it's beautiful!

I think I have made some minor improvements in the display. With the code changes I made, the year and track duration line up relative to the right side of the window instead of a certain amount of pixels. I was wondering if there was a way to move the album art to the same type of alignment: relative to the right side of the window. This would help if sometimes you wanted a wider or narrower window, and it would be less likely for the album art to overlap a long track name. Here's what I was imagining with the albumart, showing the improvements I made with the year and track duration...

IPB ImageIPB Image

Here is the code for the right-aligned year and track duration.

Item Display
CODE
$ifequal($mod(%tracknumber%,2),0,
$imageabs(,,\images\LE5\reluna1.png,),
$imageabs(,,\images\LE5\reluna2.png,))

$if(%_selected%,$imageabs(,,\images\LE5\relunagreen.png,),)

$if(%isplaying%,$imageabs(,,\images\LE5\relunablue.png,),)
$if(%isplaying%,$font(Calibri,8,bold,0-0-200),$font(Calibri,8,,0-0-0))



$padding(7,)
$align(left,middle)
[%tracknumber%]

$padding(12,)
$align(right,middle)
$if(%isplaying%,%_time_remaining%,%length%)

$alignabs(28,2,%_width%,20,left,)
[%title%]

$ifgreater($mul(%_height%,%_itemcount%),88,
$imageabs2(100,90,0,$sub($mul(%_height%,%_itemindex%),$add(%_height%,1)),,%_height%,175,,images\ART_cd.png,)
$imageabs2(80,79,0,$sub($mul(%_height%,%_itemindex%),$add(%_height%,5)),,%_height%,190,,$replace(%path%,%filename_ext%,folder.jpg),)
$imageabs2(100,90,0,$sub($mul(%_height%,%_itemindex%),$add(%_height%,1)),,%_height%,175,,images\case.png,)
,)


Group Display
CODE
$padding(12,)

$imageabs(,,\images\LE5\relunaorange2.png,)

$imageabs(4,11,\images\LE5\arrow.png,)

$align(right,middle)
$font(Calibri,12,glow- glowexpand-0 glowalpha-15,40-40-40)
%date%

$alignabs(28,3,%_width%,20,left,top)
$font(Calibri,10,bold glow- glowexpand-0 glowalpha-15,40-40-40)
$if(%album artist%,%album artist%,%artist%)

$font(Calibri,10,glow- glowexpand-0 glowalpha-15,40-40-40)
$alignabs(28,13,%_width%,20,left,bottom)
[%album%]




Can anyone please share how to do this? Thank you!

edit: I'm very sorry if someone has already explained how to do this in detail, but this thread is huge and not that organized. I'm very new to this and I'm not really a programmer so lots of the documentation is very hard for me to understand.
panfist
I'm running into a bug using playlist tabs together with bbmartini's trackinfo_mod and SCPL code.

Here's what everything looks like when it's running normally:
IPB Image

But then if I close the caption on the Playlist tabs panel, it resizes so that you can see one item on the playlist, then locks. If I put the caption back in, then I can resize the panel so it takes up the majority of the foobar windoow, like it should:
IPB Image

Is there any way I can use playlist tabs in this configuration?
Fractal_Mortality
IPB Image


This is the first time showing my 9.0, now with SCPL (mucho thanks eejadx for his brilliant coding on that).

Any suggestions for improvement/clean up etc?
Valdoran
QUOTE(Fractal_Mortality @ Jan 22 2007, 07:30) *

This is the first time showing my 9.0, now with SCPL (mucho thanks eejadx for his brilliant coding on that).

Any suggestions for improvement/clean up etc?

My only comment is that you rated In The Nightside Eclipse waaay too low. tongue.gif
Generalverdacht
QUOTE(Valdoran @ Jan 22 2007, 02:31) *

QUOTE(Fractal_Mortality @ Jan 22 2007, 07:30) *

This is the first time showing my 9.0, now with SCPL (mucho thanks eejadx for his brilliant coding on that).

Any suggestions for improvement/clean up etc?

My only comment is that you rated In The Nightside Eclipse waaay too low. tongue.gif




youre right biggrin.gif
Chris Cornell
hi, first post so far ;-)

IPB Image

need to change the buttons.

thx to moglenstar and all others ;-)
dparadinha
whenever i click on the album list my single column playlist updates the information, so next song is not the playlist that was playing but what i've clicked on album list... how can i disable/change this behaviour?
prawns
IPB Image
neonka
QUOTE(bbmartini @ Jan 12 2007, 03:20) *

IPB Image

I like your buttons more. Could you give them to us, pretty please? blush.gif
Fractal_Mortality
QUOTE(Fractal_Mortality @ Jan 22 2007, 01:30) *

IPB Image


This is the first time showing my 9.0, now with SCPL (mucho thanks eejadx for his brilliant coding on that).

Any suggestions for improvement/clean up etc?


It's set to show stars based on play_counter, so I just haven't listened to it enough, haha. I love that album, and pretty much ALL of emperor's material.
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.