Enigma776 Posted October 3, 2006 Share Posted October 3, 2006 i got 2 problems really, the first is this why is it splitting my album like that, checked tags there all fine. Can not pin it down. Second problem i got is what colour is this to you lot FF8000 (should be a vibrant Orange yes?) so why is foobar coming back with a light blue lol is there a way to extend the rows so that the album art is not chopped off on small albums? Link to comment Share on other sites More sharing options...
Guest Posted October 3, 2006 Share Posted October 3, 2006 I'm having some issues with my playlist sorting. When I re-scan my media folders, and try to add newly added albums to my FULL playlist, these new albums aren't being sorted into the playlist correctly. For example, Kasbian is being placed at the bottom of the playlist, after every other artist. All of my other files in the library are sorted by artist, then album name. Link to comment Share on other sites More sharing options...
bangbang023 Veteran Posted October 3, 2006 Veteran Share Posted October 3, 2006 Orly? ?? [/sarcasm] I'm looking to change *only* the slider's images, any ideas? You can't. It's skinned by windows, so the post you had to act so lame to was actually the only right answer. Link to comment Share on other sites More sharing options...
ciel Posted October 4, 2006 Share Posted October 4, 2006 Hi, Here my actual foobar : Thanks to all that helped out :) Bye PS - U can see the desk where is it : http://www.deviantart.com/deviation/40759875/ hi, just wondering if u're planning to release that vs? look awesome :) so do ur foobar! Link to comment Share on other sites More sharing options...
spex04 Posted October 4, 2006 Share Posted October 4, 2006 Second problem i got is what colour is this to you lot FF8000 (should be a vibrant Orange yes?) so why is foobar coming back with a light blue lol foobar uses BGR for hex colours, instead of RGB (don't know why...?), so try 0080FF, and it should give you the colour you want. So for future reference, hex colour ABCDEF would be EFCDAB in foobar.. :wacko: Link to comment Share on other sites More sharing options...
marc2003 Posted October 4, 2006 Share Posted October 4, 2006 i got 2 problems really, the first is this why is it splitting my album like that, checked tags there all fine. Can not pin it down. Second problem i got is what colour is this to you lot FF8000 (should be a vibrant Orange yes?) so why is foobar coming back with a light blue lol is there a way to extend the rows so that the album art is not chopped off on small albums? i guess the problem is with my code. i've hard coded it for myself - the image size is 150, and because the row height is 25, it needs a minimum of 6 tracks to draw the image - and my shortest album just happens to be 6 tracks...... :rofl: sorry, but i haven't taken into consideration anyone else's record collection..... :blush: maybe use a combination of reducing your image size, increasing your row height or use an if statement to determine the image size dynamically depending on %totaltracks% ? Link to comment Share on other sites More sharing options...
bisayo Posted October 4, 2006 Share Posted October 4, 2006 hi, i reformatted my computer and when it came time to install foobar, i noticed there was a new version so i upgraded to 0.9.4. i am using em3's le config but i can't seem to get the rating stars to show up in the track info. is this because of the new foobar? the custom info component seems to still work as it loads with foobar. here is a pic of my foobar. any ideas on how to fix it? Link to comment Share on other sites More sharing options...
marc2003 Posted October 4, 2006 Share Posted October 4, 2006 maybe use a combination of reducing your image size, increasing your row height or use an if statement to determine the image size dynamically depending on %totaltracks% ? can't edit my post...... nevermind. i've bodged together something quickly that sort of works. i'm sure there is a more efficient way of doing this...... keeping the row height of 25..... $ifequal(%totaltracks%,3,$puts(imagesize,75),) $ifequal(%totaltracks%,4,$puts(imagesize,100),) $ifequal(%totaltracks%,5,$puts(imagesize,125),) $ifgreater(%totaltracks%,5,$puts(imagesize,150),) $imageabs2($get(imagesize),$get(imagesize),,$mul(%_height%,$add(%tracknumber%,-1)),,,5,,'nocover.png',) $imageabs2($get(imagesize),$get(imagesize),,$mul(%_height%,$add(%tracknumber%,-1)),,,5,,$replace(%path%,%filename_ext%,)folder.jpg,) you get the idea..... :p btw you'll need to restart foobar after inputting the code... Link to comment Share on other sites More sharing options...
ambulance Posted October 4, 2006 Share Posted October 4, 2006 can you post up your images and/or code for this? Link to comment Share on other sites More sharing options...
TheUndead Posted October 4, 2006 Share Posted October 4, 2006 hi, i reformatted my computer and when it came time to install foobar, i noticed there was a new version so i upgraded to 0.9.4. i am using em3's le config but i can't seem to get the rating stars to show up in the track info. is this because of the new foobar? the custom info component seems to still work as it loads with foobar. here is a pic of my foobar. any ideas on how to fix it? [_img]http://tinypic.com/49ikpih.jpg[/img] I think you have to download the latest track info mod component, available here: http://users.bowie-cass.com/singa/foo_uie_trackinfo_mod.zip Oh, and can you tell me what is your visual style please? :) Link to comment Share on other sites More sharing options...
sdb815 Posted October 4, 2006 Share Posted October 4, 2006 Oh, and can you tell me what is your visual style please? :) Here you go. :) Link to comment Share on other sites More sharing options...
Enigma776 Posted October 4, 2006 Share Posted October 4, 2006 (edited) $imageabs2(150,150,,$mul(%_height%,$add(%tracknumber%,-1)),,,5,,$replace(%path%,%filename_ext%,)folder.jpg,) is there anyway to get the folder.jpg section to just read any jpg files ie *.jpg? that new image size code now streches all the album art to fit the amount of tracks displayed, it does not rezise as set in the varibles Edited October 4, 2006 by Enigma776 Link to comment Share on other sites More sharing options...
sdb815 Posted October 4, 2006 Share Posted October 4, 2006 My new fooby. :D Link to comment Share on other sites More sharing options...
marc2003 Posted October 4, 2006 Share Posted October 4, 2006 $imageabs2(150,150,,$mul(%_height%,$add(%tracknumber%,-1)),,,5,,$replace(%path%,%filename_ext%,)folder.jpg,) is there anyway to get the folder.jpg section to just read any jpg files ie *.jpg? not as far as i know. i know the album art panel does that, but i don't think single columns playlist has that capability just yet. you can however add multiple lines of code and use variables such as tags...... <snip>$replace(%path%,%filename_ext%,)folder.jpg,) <snip>$replace(%path%,%filename_ext%,)%filename%.jpg,) <snip>$replace(%path%,%filename_ext%,)%title%.jpg,) <snip>$replace(%path%,%filename_ext%,)%artist%.jpg,) i just used irfanview to rename all my album art in one go using the batch rename feature. so all my art is called folder.jpg and i only need one line of code.... :) that new image size code now streches all the album art to fit the amount of tracks displayed, it does not rezise as set in the varibles are all your files tagged with %totaltracks%? Link to comment Share on other sites More sharing options...
TheUndead Posted October 4, 2006 Share Posted October 4, 2006 Here you go. :) Thanks friend :) Link to comment Share on other sites More sharing options...
MindTooth Posted October 4, 2006 Share Posted October 4, 2006 What do you guys use for album art? And is there a way to load playlist files within my album folders? Birger :) Link to comment Share on other sites More sharing options...
Alan Orozco Posted October 4, 2006 Share Posted October 4, 2006 You can't. It's skinned by windows, so the post you had to act so lame to was actually the only right answer. I know it's skinned by Windows, I'm just saying if there's a plugin that enables a slider that uses images, like a skin engine or something. Link to comment Share on other sites More sharing options...
Guest Posted October 4, 2006 Share Posted October 4, 2006 I'm having some issues with my playlist sorting. When I re-scan my media folders, and try to add newly added albums to my FULL playlist, these new albums aren't being sorted into the playlist correctly. For example, Kasbian is being placed at the bottom of the playlist, after every other artist. All of my other files in the library are sorted by artist, then album name. Anyone? :whistle: Link to comment Share on other sites More sharing options...
OmART Posted October 5, 2006 Share Posted October 5, 2006 (edited) I want to share these buttons I made :blush: Delta_Futtons.zip Edited October 5, 2006 by OmART Link to comment Share on other sites More sharing options...
marc2003 Posted October 5, 2006 Share Posted October 5, 2006 Anyone? :whistle: edit>sort by....> %album artist% - %date% - %album% here's mine updated with some more info and a few colour changes..... :rofl: Link to comment Share on other sites More sharing options...
Smenus Posted October 5, 2006 Share Posted October 5, 2006 I want to share these buttons I made :blush: Lovely buttons, but the zip file seems to be corrupt. Anyone else get this? Link to comment Share on other sites More sharing options...
OmART Posted October 5, 2006 Share Posted October 5, 2006 Lovely buttons, but the zip file seems to be corrupt. Anyone else get this? Not me :cry: , it's a zip file, and inside is the *.fcb Link to comment Share on other sites More sharing options...
Dom Posted October 5, 2006 Author Share Posted October 5, 2006 Lovely buttons, but the zip file seems to be corrupt. Anyone else get this? Not really, but ill re-up em =) Delta_Futtons.zip Link to comment Share on other sites More sharing options...
Smenus Posted October 5, 2006 Share Posted October 5, 2006 Not really, but ill re-up em =) Thanks, seeing as it still doesn't work, I figure it's my work network... Link to comment Share on other sites More sharing options...
Rissol Posted October 5, 2006 Share Posted October 5, 2006 hi, just wondering if u're planning to release that vs? look awesome :) so do ur foobar! Hi, Thanks for the comment :) , im a newbie on foobie, so its the best so far :) About the theme, maybe i will released it, im going to ask permission to do it , stay tunned at http://rissol.deviantart.com Cya Link to comment Share on other sites More sharing options...
Recommended Posts