QUOTE(bbmartini @ Jan 11 2007, 21:20)

if anyone's still interested...

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...


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.