Foobar2000 Customization Topic


Recommended Posts

The trick works B. Thanks.

And yes. You are right on the 2nd question.

Change in item display:

$if(%isplaying%,

	$select($eval($get(counter) + 1),
		$puts(length,%length%)
		,
		$ifgreater(10,%play_count%,
			$puts(length,%length%   $num(%play_count%,2))
			,
			$puts(length,%length%   %play_count%)
		)
	)

	$drawrect(0,0,$eval(%_width% - 0),0,brushcolor-46-46-46 pencolor-$ifequal($getpvar(blue),1,0-200-255,255-50-50))

	$if($strcmp($eval(%playback_time_seconds% * {%_width% - 7} / %length_seconds%),0),
		,
		$drawrect(0,0,$eval(%playback_time_seconds% * {%_width% - 0} / %length_seconds%),0,brushcolor-0-0-0 pencolor-$ifequal($getpvar(blue),1,0-200-255,255-50-50))
	)

to:

$if(%isplaying%,
$drawrect(0,0,$sub(%_width%,0),0,brushcolor-46-46-46 pencolor-0-200-255)

Link to comment
Share on other sites

Thanks D. It works :D

Last problem. The track/vol bars aren't full. How to make them like yours?

You welcome mate.

I don't know if you have latest version of my foo. Go to my settings (it's first button in the bottom right corner) and check WSH panels: Seekbar and Volume bar (it's unstable component so I turned it off in default settings).

settingsvu9.jpg

Link to comment
Share on other sites

This is just a recommendation & I don't know if you're gonna consider it or not. But how bout having the control on top. Like this.

68668003co1.jpg

Again, it's just something I would love!

Link to comment
Share on other sites

Can someone explain to me how to get it to show the numerical list for all the song I have in the playlist. Please e-mail me at FFXLuc@Gmail.com I really would like this figured out and I'm not good at these things. I want it next to the Tracklist colum

Link to comment
Share on other sites

i can't seem to find a way to set custom cover path in dawxxx666's setup. there should somewere MyCoverPath in the code but i can't find it. Could someone please help. Thank you.

Link to comment
Share on other sites

i can't seem to find a way to set custom cover path in dawxxx666's setup. there should somewere MyCoverPath in the code but i can't find it. Could someone please help. Thank you.

Edit layout-> globals (button in bottom left corner)

Link to comment
Share on other sites

Can anyone help with the foobar titlebar? I'm using the Luna Element config, and can't get the titlebar to display the song name it just says 'PanelsUI'.

Link to comment
Share on other sites

Can anyone help with the foobar titlebar? I'm using the Luna Element config, and can't get the titlebar to display the song name it just says 'PanelsUI'.

ctrl+p > Title Formatting > Main windows title > put [%title%] or whatever.

Link to comment
Share on other sites

Is there a way to get the search box to appear always on top,and pop up outside of the actual foobar window,similar to how winamp does this? I want to set a global shortcut key to the search box, so when i press shift+z, the small box pops up over whatever i am doing,such as on the internet,and i can type the song i want and hit enter? That is one feature I love and really want to see it in Foobar

Link to comment
Share on other sites

Your config keeps getting better & better dawxxx666.

Questions:

A) How to get rid of the double "exit/min/max" taskbar. Preferably the very top one.

73167494ri0.jpg

If you can help, it'll be very appreciated.

I have the same problem here, but when I open

Preferences->Panels UI

I only get

Hide Taskbar Entry

Tray Icon

Minimize to Tray

no "hide titlebar" for me... any ideas?

Link to comment
Share on other sites

no "hide titlebar" for me... any ideas?

That option is no longer available in the newest builds of panelsui. It has too be included in the Config-Script.

Just put

$windowstyle(hidetitlebar)

into the globals of the config and the Titlebar disappears.

MiDiAN

EDIT: Forgot to mention: In order for this to work with any other config that line has to be in the //Background Section of the config

Edited by MiDiAN
Link to comment
Share on other sites

Does anyone know how to do what i was referring to a few posts ago? Im using dawxxx666's config,which i absolutely love!Altho would there be a way to get the maximise button to actually make the programme full screen,without having to manually resize?

For everyone else,theres a new version of his config out, 1.02c

Link to comment
Share on other sites

Im using dawxxx666's config,which i absolutely love!Altho would there be a way to get the maximise button to actually make the programme full screen,without having to manually resize?

For everyone else,theres a new version of his config out, 1.02c

Thx

I use

$ifgreater(%_width%,720,
$button2($sub(%_width%,71),3,0,0,25,16,
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max1$ifequal($getpvar(buttons),1,,_).png,)',
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max$ifequal($getpvar(blue),1,2,3).png,)',
WINDOWSIZE:'700':'550':LEFT:TOP,TOOLTIP:"Change window size")
,
$button2($sub(%_width%,71),3,0,0,25,16,
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max1$ifequal($getpvar(buttons),1,,_).png,)',
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max$ifequal($getpvar(blue),1,2,3).png,)',
WINDOWSIZE:'[b][color="#FF0000"]900[/color][/b]':'[b][color="#FF0000"]650[/color][/b]':LEFT:TOP,TOOLTIP:"Change window size")
)

Try to find it in code and set your own values

Link to comment
Share on other sites

Thx

I use

$ifgreater(%_width%,720,
$button2($sub(%_width%,71),3,0,0,25,16,
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max1$ifequal($getpvar(buttons),1,,_).png,)',
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max$ifequal($getpvar(blue),1,2,3).png,)',
WINDOWSIZE:'700':'550':LEFT:TOP,TOOLTIP:"Change window size")
,
$button2($sub(%_width%,71),3,0,0,25,16,
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max1$ifequal($getpvar(buttons),1,,_).png,)',
'$imageabs2(,,,,0,,0,0,/images\pure3\bar\max$ifequal($getpvar(blue),1,2,3).png,)',
WINDOWSIZE:'[b][color="#FF0000"]900[/color][/b]':'[b][color="#FF0000"]650[/color][/b]':LEFT:TOP,TOOLTIP:"Change window size")
)

Try to find it in code and set your own values

Thanks worked great.

Think i've found a bug, or something that doesn't look right anyway,i just found it going to see if i can fix it myself in the config but i doubt it lol. Anyway I listen to alot of dance music, and download many sets etc which are several hours long. When i'm playing one which is over an hour long, the information below the album cover,with info such as time played, khz etc doesnt look right, there is no space between the khz and playtime anymore.

Link to comment
Share on other sites

Thanks worked great.

Think i've found a bug, or something that doesn't look right anyway,i just found it going to see if i can fix it myself in the config but i doubt it lol. Anyway I listen to alot of dance music, and download many sets etc which are several hours long. When i'm playing one which is over an hour long, the information below the album cover,with info such as time played, khz etc doesnt look right, there is no space between the khz and playtime anymore.

I change it, but I don't have any song which is over an hour long :D Download my foo again and check if it's working

Link to comment
Share on other sites

Since I updated to the latest foo_uie_trackinfo, apul's trackinfo panel stopped updating while playing. Only when you play/pause.

$puts(str1,"%title%"[ by %artist%][ / %album%][ '('%genre%[, %date%]')'])
$puts(str2,$upper($replace(%filename_ext%,%filename%.,)) $if(%__bitrate_nominal%,VBR '('%__bitrate%kbps average')' at %bitrate%kbps,[%codec_profile% $if($or($strstr(%codec_profile%,VBR),$strstr(%codec_profile%,ABR)),'('%__bitrate%kbps average')' )]at %bitrate%kbps)',' %samplerate%Hz / $cwb_splitnum($div($muldiv(%filesize%,1000,1024),1000),',')kb)
$puts(str3,$if(%play_count%,Played: %play_count% time$if($stricmp(%play_count%,1),,s),Never Played)$if(%last_played%,$puts(lpdiff,$cwb_datediff(%last_played%,%cwb_systemdate%))',' Last Played: $ifgreater(1,$get(lpdiff),Today,$ifgreater(2,$get(lpdiff),Yesterday,$get(lpdiff) days ago '('$num($substr(%last_played%,9,10),1)-$num($substr(%last_played%,6,7),1)-$substr(%last_played%,1,4)')')),)$if(%first_played%,$puts(fpm,$substr(%first_played%,9,10)) / First Played: $num($get(fpm),1)$ifgreater(2,$get(fpm),st,$ifgreater(3,$get(fpm),nd,$ifgreater(4,$get(fpm),rd,th))) of $select($substr(%first_played%,6,7),January,February,March,April,May,June,July,Auguest,September,October,November,December)',' $substr(%first_played%,1,4)))
$puts(panelbg,245-245-245)
$puts(imagedir,'C:\Program Files\foobar2000\images\itunes\')

// background
$drawrect(,,,,brushcolor-$get(panelbg) pencolor-null)
$imageabs2(,,,,,,0,0,$get(imagedir)trackinfo1.png,)

// audioscrobbler
$if($or($greater($muldiv(%playback_time_seconds%,100,%length_seconds%),49),$greater(%playback_time_seconds%,239)),$imageabs2(,,,,,,$sub(%_width%,88),3,$get(imagedir)as.png,))

$if(%isplaying%,

// progress bar
$drawrect($muldiv(%_width%,15,100),41,$muldiv(%_width%,70,100),9,brushcolor-null pencolor-240-240-240)
$drawrect($add($muldiv(%_width%,15,100),2),43,$ifgreater($muldiv($sub($muldiv(%_width%,70,100),4),%playback_time_seconds%,%length_seconds%),0,$muldiv($sub($muldiv(%_width%,70,100),4),%playback_time_seconds%,%length_seconds%),1),5,brushcolor-240-240-240 pencolor-null)
$alignabs($sub($muldiv(%_width%,15,100),35),38,35,14,center,middle)$font(Segoe UIi,8,bold,240-240-240)$if2(%playback_time%,0:00)
$alignabs($muldiv(%_width%,85,100),38,35,15,center,middle)$font(Segoe UI,8,bold,240-240-240)$if2(%length%,0:00)
$alignabs(20,9,$sub(%_width%,40),15,center,middle)$font(Segoe UI,8,bold,240-240-240)

// interchanging text
$select($add($mod(%playback_time_seconds%,15),1),
$get(str1),$get(str1),$get(str1),$get(str1),$get(str1),
$get(str2),$get(str2),$get(str2),$get(str2),$get(str2),
$get(str3),$get(str3),$get(str3),$get(str3),$get(str3))

// autorating system
$if(%rating%,$puts(rating,%rating%),$puts(rating,$sub(%play_counter%,$div($cwb_datediff(%cwb_systemdatetime%,%first_played%),28))))
$if($greater($get(rating),5),$puts(rating,5))
$if($greater(0,$get(rating)),$puts(rating,0))
$imageabs2(,,,,,,$div($sub(%_width%,58),2),26,$get(imagedir)r$get(rating).png,)

// properties & open dir
$button($sub(%_width%,15),23,0,0,9,9,$get(imagedir)info.png,$get(imagedir)infoh.png,properties,)
$button(6,23,0,0,9,9,$get(imagedir)dir.png,$get(imagedir)dirh.png,Activate now playing,)

,

// not playing..
$alignabs($div($sub(%_width%,50),2),6,50,48,center,middle)
$font(wingdings,25,bold,230-230-230)v

)

Here's the code...

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.