Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: foo_ui_panels (Read 1310999 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

foo_ui_panels

Reply #1750
[quote name='goook' date='Jun 22 2007, 15:59' post='500173']
[/quote]
Use $settray() in the "// PerTrack" section
[/quote]

This is working for me, except when Foobar2000 is minimized to tray.  The name of the song (I use something like "%artist% - %title%") does not change when Foobar2000 is running like this (and I often run it this way...I tell it to start playing an album then minimize it, but occasionally I like to use the tray icon to see which song is playing).  The name in the tray will be refreshed as soon as I un-minimize Foobar2000, however.

Am I doing something wrong or is this a bug?

foo_ui_panels

Reply #1751
[quote name='Scrith' date='Jun 24 2007, 20:38' post='500529']
[quote name='goook' date='Jun 22 2007, 15:59' post='500173']
[/quote]
Use $settray() in the "// PerTrack" section
[/quote]

This is working for me, except when Foobar2000 is minimized to tray.  The name of the song (I use something like "%artist% - %title%") does not change when Foobar2000 is running like this (and I often run it this way...I tell it to start playing an album then minimize it, but occasionally I like to use the tray icon to see which song is playing).  The name in the tray will be refreshed as soon as I un-minimize Foobar2000, however.

Am I doing something wrong or is this a bug?
[/quote]

It is a bug, take a look: Click!
Song List: keikoniumboards.ke.funpic.org/files/songlist.html

foo_ui_panels

Reply #1752
anyone got any ideas why this doesnt work
Main Configuration:

// PerSecond
$puts(yOffset,0)
$panel(Playing,Track Display,0,$get(yOffset),%_width%,18,)

trackdisplay configuration
//PerSecond
$align(left,)
$font(Calibri,9,,221-222-223)
[%_time_elapsed%]

$align(right,)
$font(Calibri,9,,221-222-223)
[%length%]


The time elapsed doesnt update at all . Please help me with this

foo_ui_panels

Reply #1753
anyone got any ideas why this doesnt work
Main Configuration:

// PerSecond
$puts(yOffset,0)
$panel(Playing,Track Display,0,$get(yOffset),%_width%,18,)

trackdisplay configuration
//PerSecond
$align(left,)
$font(Calibri,9,,221-222-223)
[%_time_elapsed%]

$align(right,)
$font(Calibri,9,,221-222-223)
[%length%]


The time elapsed doesnt update at all . Please help me with this

Try using %playback_time% instead.

foo_ui_panels

Reply #1754
%playback_time% doesnt work either.. however instead of putting the code in the Track Display, if i put it in the main config it does.. any ideas?

foo_ui_panels

Reply #1755
it must be // PerSecond

watch the space

foo_ui_panels

Reply #1756
Ooh thanks a lot. that really solved the problem.. so stupid of me

foo_ui_panels

Reply #1757
I think it would be cool to have a program which could highlight those problematic things. I think those mistakes are happening very often.
Such a thing would be quite useful.

foo_ui_panels

Reply #1758
Hi, I posted a feaure request a few days ago, but I didn't hear anything about it.
Do you thing this could be done ?

Feature Request :

Hi, would there be a possibility to implement a custom ROTATE in the $imageabs2 function ?
Like rotating a specific amount of degrees ?

Thanks a lot


 

foo_ui_panels

Reply #1760
Has the option to define what variable you want things grouped by been removed? I used to group by the folder the files were in and it seems you can only choose some predefined options now.

foo_ui_panels

Reply #1761
there is a new sorting/grouping system,
Criteria are defined in the preferences -> Display -> PanelsUI -> Sort/Group
and
the ordering and selecting of those criteria are defined in playlist context menu ->sort/Group by ->Edit


(read more here)
elevatorladylevitateme

foo_ui_panels

Reply #1762
I was wondering, is it possible to pvar:set multiple pvar's with one button?

I've got a sidebar in my config, and i would like to be able to toggle the enabled state of the sidebar, at the same time as switching the contents of the sidebar.

below is a screenshot of the layout, the buttons are the text "T L <" below the dark sidebar of the config

[a href="http://i42.photobucket.com/albums/e302/moglenstar/mogfuconfig.png" target="_blank"]

foo_ui_panels

Reply #1763
I was wondering, is it possible to pvar:set multiple pvar's with one button?

I've got a sidebar in my config, and i would like to be able to toggle the enabled state of the sidebar, at the same time as switching the contents of the sidebar.

below is a screenshot of the layout, the buttons are the text "T L <" below the dark sidebar of the config

[a href="http://i42.photobucket.com/albums/e302/moglenstar/mogfuconfig.png" target="_blank"]

I think it should work by putting two buttons on top of each other, something like this...

Code: [Select]
$button2(5,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)T','$font(,7,,120-120-120)T','PVAR:SET:Default.Sidebar:2',TOOLTIP:"Track Information")
$button2(5,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)T','$font(,7,,120-120-120)T','PVAR:SET:Sidebar.Enabled:1',TOOLTIP:"Track Information")
$button2(20,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)L','$font(,7,,120-120-120)L','PVAR:SET:Default.Sidebar:1',TOOLTIP:"Music Library")
$button2(20,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)L','$font(,7,,120-120-120)L','PVAR:SET:Sidebar.Enabled:1',TOOLTIP:"Music Library")

foo_ui_panels

Reply #1764
I think it should work by putting two buttons on top of each other, something like this...

Code: [Select]
$button2(5,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)T','$font(,7,,120-120-120)T','PVAR:SET:Default.Sidebar:2',TOOLTIP:"Track Information")
$button2(5,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)T','$font(,7,,120-120-120)T','PVAR:SET:Sidebar.Enabled:1',TOOLTIP:"Track Information")
$button2(20,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)L','$font(,7,,120-120-120)L','PVAR:SET:Default.Sidebar:1',TOOLTIP:"Music Library")
$button2(20,$sub(%_height%,18),0,0,15,15,'$font(,7,,80-80-80)L','$font(,7,,120-120-120)L','PVAR:SET:Sidebar.Enabled:1',TOOLTIP:"Music Library")



Thanks, that works wonderfully, although what an impractical method of implementation!

foo_ui_panels

Reply #1765
there is a new sorting/grouping system,
Criteria are defined in the preferences -> Display -> PanelsUI -> Sort/Group
and
the ordering and selecting of those criteria are defined in playlist context menu ->sort/Group by ->Edit


(read more here)

Right, but I don't have the folders option in my list:


The option in the drop down does nothing.

foo_ui_panels

Reply #1766
I think I have a really quick problem with panels. For some reason, the windows title is saying PanelsUI and not changing when I play songs. I checked my title formating under preferences, and the example comes up correctly, but it won't display. Is there a quick for this?

foo_ui_panels

Reply #1767
I think I have a really quick problem with panels. For some reason, the windows title is saying PanelsUI and not changing when I play songs. I checked my title formating under preferences, and the example comes up correctly, but it won't display. Is there a quick for this?




// Background
$settitle(%album%) 

or whatever you want to display in the title bar. 

foo_ui_panels

Reply #1768

I think I have a really quick problem with panels. For some reason, the windows title is saying PanelsUI and not changing when I play songs. I checked my title formating under preferences, and the example comes up correctly, but it won't display. Is there a quick for this?




// Background
$settitle(%album%) 

or whatever you want to display in the title bar. 

Is it possible for the title to change every time I pick a new track? Because it starts out as a ?

foo_ui_panels

Reply #1769


I think I have a really quick problem with panels. For some reason, the windows title is saying PanelsUI and not changing when I play songs. I checked my title formating under preferences, and the example comes up correctly, but it won't display. Is there a quick for this?




// Background
$settitle(%album%) 

or whatever you want to display in the title bar. 

Is it possible for the title to change every time I pick a new track? Because it starts out as a ?


Code: [Select]
$settitle($if(%isplaying%,[%album%],foobar2000))


you can use whatever you want in place of "[%album%]", for instance you could have "[%artist%][ - %album%][ - %title%]"

and you can put whatever you want in place of "foobar2000".. that is the text that will show if nothing is playing.

foo_ui_panels

Reply #1770
I wanted to add some stuff to the wiki, but its locked... how would I go abouts getting permission to edit it?
Song List: keikoniumboards.ke.funpic.org/files/songlist.html

foo_ui_panels

Reply #1771
YET AGAIN I've tried to use this bloody plugin and I still get, on startup:
"Failed to load DLL: foo_ui_panels.dll
Reason: This component is missing a required dependency, or was made for different version of foobar2000."

So looking here, under install requirements, all I need is the latest version of Foobar2000 and GDI+ installed (I'm on Windows 2000).  Well, I have both of these things, and it DOESN'T WORK.

Can someone PLEASE help me here?

foo_ui_panels

Reply #1772
What version of foobar2000 do you have?

Get the latest if you don't already got it.
Windows 10 Pro x64 // foobar2000 1.3.10