aggrophobik Posted November 15, 2004 Share Posted November 15, 2004 Copy&pastefont: @Arial Unicode MS bold 7pt bgcolor: 55,107,180 DCAE8DMode: %_trackinfo_mode%$char(10)$if(%_trackinfo_notrack%,No track, $char(1)C0CEBA4Song Info$char(10) D7B997Title: ffffff%title%$char(10) D7B997Artist: F3EAE0%artist%$char(10) D7B997Album: F3EAE0%album%$char(10) D7B997Date: F3EAE0%date%)$char(10) D7B997Genre: F3EAE0%genre%$char(10) $char(1)C0CEBA4Tech Info$char(10) D7B997Codec: F3EAE0%__codec% $char(10) D7B997Bitrate: F3EAE0%__bitrate% Kbit/s$char(10) D7B997Samplerate: F3EAE0%__samplerate% Hz$char(10) D7B997Channels: F3EAE0$if(%__channels%,$ifgreater(%__channels%,2,%__channels%ch,$ifgreater(%__channels%,1,' 'Stereo,''Mono)),)$char(10) D7B997Time: F3EAE0%_time_elapsed% / %_time_total%$char(10) $puts(theme,1) // progressbar config $puts(progress_char,█) $puts(progress_length,20) $if($strcmp($get(theme),1), $puts(progress_color1,$rgb(164,235,12)) $puts(progress_color2,$rgb(54,106,179)) ) // PREPARE COLOR-STRINGS // ========================================= $puts(progress_color1a,$blend($get(progress_color1),000000,1,4.5)) $puts(progress_color2a,$blend($get(progress_color2),000000,1,5.7)) // progressbar $puts(progressbar, $if(%_length_seconds%, $puts(progress,$muldiv(%_time_elapsed_seconds%,$get(progress_length),%_length_seconds%)) $transition($repeat($get(progress_char),$get(progress)),$get(progress_color1a),$get(progress_color1)) $transition($repeat($get(progress_char),$sub($get(progress_length),$get(progress))),$get(progress_color2a),$get(progress_color2)) $pad_right($muldiv(%_time_elapsed_seconds%,100,%_length_seconds%),3)'%' ,streaming... ) ) $get(progressbar) 584914416[/snapback] Where would I paste this to get the desired effects? Thanks in advance. Link to comment Share on other sites More sharing options...
Adriana Posted November 15, 2004 Share Posted November 15, 2004 You have to download the new track info component and paste that into it's panel settings. Link to comment Share on other sites More sharing options...
aggrophobik Posted November 15, 2004 Share Posted November 15, 2004 I don't see the Track Info component on Foobar's page. Is that where I'd get it? Link to comment Share on other sites More sharing options...
Strictly4me Posted November 15, 2004 Share Posted November 15, 2004 with the new album art panel :) Hi Where can i find this "album art panel"-plugin? ((((( Strictly4me ))))) Link to comment Share on other sites More sharing options...
Adriana Posted November 15, 2004 Share Posted November 15, 2004 Blay - It was posted on the last page. https://www.neowin.net/forum/index.php?show...#entry584913739 Strictly4me - The album art plugin is availiable at the HydrogenAudio forums. http://www.hydrogenaudio.org/forums/index....showtopic=29383 Link to comment Share on other sites More sharing options...
Strictly4me Posted November 15, 2004 Share Posted November 15, 2004 Ohhh, thanks! ;) ((((( Strictly4me ))))) Link to comment Share on other sites More sharing options...
KeSmiC Posted November 15, 2004 Share Posted November 15, 2004 Hi, i had 2 questions 1. where do i copy this text: // CONFIGURATION // ========================================= // Which color-theme to use? // 0=custom (set your colors below) // 1=gems (default) $puts(theme,1) // custom color-theme (ignored if above value is not 0) $puts(progress_color1,$rgb(164,235,12)) $puts(progress_color2,$rgb(54,106,179)) // progressbar config $puts(progress_char,▬) $puts(progress_length,15) $puts(seperator,' | ') // ========================================= // end of configuration // ========================================= // CHECK IF A COLOR-THEME WAS SET // ========================================= // gems $if($strcmp($get(theme),1), $puts(progress_color1,$rgb(164,235,12)) $puts(progress_color2,$rgb(54,106,179)) ) // PREPARE COLOR-STRINGS // ========================================= $puts(progress_color1a,$blend($get(progress_color1),000000,1,3.5)) $puts(progress_color2a,$blend($get(progress_color2),000000,1,3.5)) // BUILD STATUSBAR // ========================================= // filetype $puts(filetype, $if($or($stricmp($ext(%_path%),cue),$stricmp($ext(%_path%),apl)), $cut($upper($ext(%__referenced_file%)),4), $if($stricmp($left(%_path%,4),cdda),$cut($upper(%_path%),4),$cut($upper($ext(%_path%)),4)) ) ) // set quality-info (bitrate, etc.) $puts(quality, $if2([%__bitrate_dynamic%kbps],[%__bitrate%kbps])) $if($strcmp(%__codec%,musepack),$if(%__mpc_profile%,$puts(quality,%__mpc_profile% $get(quality)))) $if($strcmp(%__codec%,MP3),$if(%__extrainfo%,$puts(quality,$get(quality)' '%__extrainfo%),$puts(quality,$get(quality)' CBR')),$puts(quality,$get(quality)[' '%__extrainfo%]) ) // progressbar $puts(progressbar, $if(%_length_seconds%, $if(%_ispaused%,| |, ►)' ' $puts(progress,$muldiv(%_time_elapsed_seconds%,$get(progress_length),%_length_seconds%)) $transition($repeat($get(progress_char),$get(progress)),$get(progress_color1a),$get(progress_color1)) $transition($repeat($get(progress_char),$sub($get(progress_length),$get(progress))),$get(progress_color2a),$get(progress_color2)) $pad_right($muldiv(%_time_elapsed_seconds%,100,%_length_seconds%),3)'%' ,streaming... ) ) $puts(time, $if(%_time_elapsed%,%_time_elapsed%,-:--)' /' %_length% ) // display statusbar // ========================================= ' ' $puts(PIPE_COLOR,) $puts(FONT_COLOR,) $get(filetype) $get(seperator) $get(quality) $if(%__samplerate%Hz%,' '$get(PIPE_COLOR)|$get(FONT_COLOR)' '%__samplerate%Hz) $if(%__channels%,$ifgreater(%__channels%,2,%__channels%ch,$ifgreater(%__channels%,1,' '$get(PIPE_COLOR)|$get(FONT_COLOR)' 'Stereo,' '$get(PIPE_COLOR)|$get(FONT_COLOR)' 'Mono)),) $if(%__extrainfo%, ' '$get(PIPE_COLOR)|$get(FONT_COLOR)' '%__extrainfo%) $get(seperator) $get(progressbar) $get(seperator) $get(time) ' ' 2. The extension .ski, how can I open?? Thank U :) Link to comment Share on other sites More sharing options...
jim-phelps Posted November 15, 2004 Share Posted November 15, 2004 Link to comment Share on other sites More sharing options...
deep_sky Posted November 15, 2004 Share Posted November 15, 2004 584926755[/snapback] Where did you get the winstripe icons for your icons here? that looks smooth and neat :) Link to comment Share on other sites More sharing options...
deep_sky Posted November 16, 2004 Share Posted November 16, 2004 Argh double post, sorry. Link to comment Share on other sites More sharing options...
deep_sky Posted November 16, 2004 Share Posted November 16, 2004 alright got the winstripe icons taken care of, now i want to know how all you guys managed to get all the toolbars without the titlebar displayed to make things look all ugly. i want to get rid of "panel stack", "volume", etc. and have it all on the same level and not divided up. Link to comment Share on other sites More sharing options...
mitchmalibu Posted November 16, 2004 Share Posted November 16, 2004 alright got the winstripe icons taken care of, now i want to know how all you guys managed to get all the toolbars without the titlebar displayed to make things look all ugly. i want to get rid of "panel stack", "volume", etc. and have it all on the same level and not divided up. 584929438[/snapback] right click > "show caption bar" on each panel and have it all on the same level and not divided up. didn't get what u meant :x Link to comment Share on other sites More sharing options...
Hidea Posted November 16, 2004 Share Posted November 16, 2004 mind sharing the icons?! Link to comment Share on other sites More sharing options...
deep_sky Posted November 16, 2004 Share Posted November 16, 2004 (edited) EDIT: I got the latest beta columns_ui and now it works like I want it to. Hidea- Sure, shoot me an email or IM me and I'll send it to you. Edited November 16, 2004 by deep_sky Link to comment Share on other sites More sharing options...
Adriana Posted November 16, 2004 Share Posted November 16, 2004 My new Foobar... Link to comment Share on other sites More sharing options...
moloko Posted November 16, 2004 Share Posted November 16, 2004 foobar really has come a long way with colums got introduced. With winamp no longer being updated I think this will be the player to have. Link to comment Share on other sites More sharing options...
Adriana Posted November 16, 2004 Share Posted November 16, 2004 I think you're right. I mean you can do a lot with it now with Columns UI and other various plugins. Sorry for the double post, but it wouldn't let me edit. :huh: Link to comment Share on other sites More sharing options...
Dom Posted November 16, 2004 Author Share Posted November 16, 2004 Very nice and minimal adriana, if thats isnt a system font, would you attach it please? Link to comment Share on other sites More sharing options...
Adriana Posted November 17, 2004 Share Posted November 17, 2004 The font is called Swis721 Cn BT. If you need help finding it I'll PM you a link. Link to comment Share on other sites More sharing options...
Dallas Posted November 17, 2004 Share Posted November 17, 2004 (edited) ugh, i know this has probably been asked 1.34 x10^5 times, but how do you do the colums, im to lazy to look thto 57 pages. thanks. plus its my birthday :) nm found it.. Edited November 17, 2004 by Dallas Link to comment Share on other sites More sharing options...
deep_sky Posted November 17, 2004 Share Posted November 17, 2004 another question- how do I get that playlist find area as shown in eliazu's screenshot? Link to comment Share on other sites More sharing options...
KnicksTape Posted November 17, 2004 Share Posted November 17, 2004 I'm a newbie, i need to know....after I download all of those plugins how do i get my foobar to look like the ones posted on this forum, because alot of these look really good and i would like mine to like like them. Thanx for your help Link to comment Share on other sites More sharing options...
Adriana Posted November 17, 2004 Share Posted November 17, 2004 I belive that plugin is called playlist find... http://www.hydrogenaudio.org/forums/index....showtopic=26475 Link to comment Share on other sites More sharing options...
invisibro Posted November 17, 2004 Share Posted November 17, 2004 I'm a newbie, i need to know....after I download all of those plugins how do i get my foobar to look like the ones posted on this forum, because alot of these look really good and i would like mine to like like them. Thanx for your help 584935469[/snapback] I really like the application cause it's light on the resources, but I'm with qrich_matrix, is there a newbie's guide to skinning this application out there? Could someone post a link, or care to elaborate? Thanks. :D Link to comment Share on other sites More sharing options...
myxomatosis Posted November 17, 2004 Share Posted November 17, 2004 click to enlarge(750Ko) azrael :wub: Link to comment Share on other sites More sharing options...
Recommended Posts