Help - Search - Members - Calendar
Full Version: foo_ui_panels
Hydrogenaudio Forums > Hosted Forums > foobar2000 > 3rd Party Plugins - (fb2k)
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57
Scrith
[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?
Keikonium
[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!
mo0nl0rd
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
goook
QUOTE(mo0nl0rd @ Jun 25 2007, 00:32) *

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.
mo0nl0rd
%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?
John n' y
it must be // PerSecond

watch the space
mo0nl0rd
Ooh thanks a lot. that really solved the problem.. so stupid of me
Spirit_of_the_ocean
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.
PedroElGringo
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 ?

QUOTE(PedroElGringo @ Jun 19 2007, 04:46) *

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

foosion
QUOTE(Spirit_of_the_ocean @ Jun 25 2007, 15:19) *
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.

Another approach would be to eliminate the source of the problem.
bangbang023
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.
shakey_snake
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)
moglenstar
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

IPB Image

the code i'm trying to do is like this:

CODE

$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|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|Sidebar.Enabled:1',TOOLTIP:"Music Library")



so that when you hit the button to change the 'Default.Sidebar', it will also change 'Sidebar.Enabled' to '1', so that if the sidebar is hidden you can get to 'Track Information', or 'Media Library' in one click, instead of two..

any help would be welcome, thanks smile.gif
goook
QUOTE(moglenstar @ Jun 27 2007, 08:31) *

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

IPB Image

the code i'm trying to do is like this:

CODE

$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|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|Sidebar.Enabled:1',TOOLTIP:"Music Library")



so that when you hit the button to change the 'Default.Sidebar', it will also change 'Sidebar.Enabled' to '1', so that if the sidebar is hidden you can get to 'Track Information', or 'Media Library' in one click, instead of two..

any help would be welcome, thanks smile.gif

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

CODE
$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")


moglenstar
QUOTE(goook @ Jun 27 2007, 20:08) *

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

CODE
$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! laugh.gif
bangbang023
QUOTE(shakey_snake @ Jun 27 2007, 09:12) *

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:
IPB Image

The option in the drop down does nothing.
questionable
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?
Maranatha
QUOTE(questionable @ Jun 28 2007, 19:29) *

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. smile.gif
questionable
QUOTE(Maranatha @ Jun 28 2007, 20:15) *

QUOTE(questionable @ Jun 28 2007, 19:29) *

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

Is it possible for the title to change every time I pick a new track? Because it starts out as a ?
moglenstar
QUOTE(questionable @ Jun 29 2007, 03:20) *

QUOTE(Maranatha @ Jun 28 2007, 20:15) *

QUOTE(questionable @ Jun 28 2007, 19:29) *

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

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


CODE
$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.
Keikonium
I wanted to add some stuff to the wiki, but its locked... how would I go abouts getting permission to edit it?
chis
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?
Andreasvb
What version of foobar2000 do you have?

Get the latest if you don't already got it.
chis
Andreas, thanks for the quick reply, but:

QUOTE(chis @ Jun 29 2007, 03:57) *

under install requirements, all I need is the latest version of Foobar2000 ....

Well, I have both of these things


Using 0.9.4.3 from http://www.foobar2000.com
Andreasvb
Maybe you can see what it needs with this program, http://www.dependencywalker.com/
chis
Okay, it seems Autopatcher don't include GDI+, even in their extras package. So it WASN'T installed. Yes, Panels UI appears now. Doh! rolleyes.gif
sunshine_man
Can't figure out how can i get headings on playlist in scp. PLs help
i wanna sort them by folder.
Andreasvb
chis: Glad you solved it.

sunshine_man: You need to use Sort/Group. You can add your own in Preferences > Display > Panels UI > Sort/Group.

Then you right click on SCPL and choose Sort / Group by > Edit. Set it up as you like it.

And then choose the one you want.
questionable
QUOTE(moglenstar @ Jun 28 2007, 21:34) *

QUOTE(questionable @ Jun 29 2007, 03:20) *

QUOTE(Maranatha @ Jun 28 2007, 20:15) *

QUOTE(questionable @ Jun 28 2007, 19:29) *

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

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


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

It falls into the same condition that it needs the window to be minimized to tray and opened to change windows title. Is there an option to refresh it when a new song is choosen?

EDIT: got it to work. Thanks a whole bunch!
sunshine_man
to Andreasvb thanks mate smile.gif
2Pacalypse
is there a request page? natural habit i always try and double click on the library filter would be great if we could define a action to take when double clicked
mundschuss
does anyone know what's the problem??
CODE
$panel(Lyric,Lyric Show,$add($get(switcherWidth),2),$get(yOffset),$sub(%_width%,$add($get(switcherWidth),2)),$get(viewerHeight),)


With
CODE
$panel(Explorer,Explorer Tree,$add($get(switcherWidth),2),$get(yOffset),$sub(%_width%,$add($get(switcherWidth),2)),$get(viewerHeight),)


it works fine, but with the Lyrics Panel it doenst work! What's worng?!!!!

Plz help me!

Thanks


SeeYa


problem solved: the lyrics panel was activated twice =)
nbv4
is there supposed to be a font select window linked from the settings window? I'd be nice if there were a way to get a list of installed fonts to be put into my config. I think I remember an older version having one there...

IPB Image
The Judge
I haven't explored the Library Filter fully but does anyone know if it is possible to script queries in it like you can in a Playlist Tree? The one query I love in PL tree is one that shows all the tracks by the now playing artist. I can't figure out how to script this in the Filter as there is no $playing() function. Any ideas or should I just stick to PL Tree?
shakey_snake
QUOTE(bangbang023 @ Jun 27 2007, 16:16) *

QUOTE(shakey_snake @ Jun 27 2007, 09:12) *

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:
IPB Image

The option in the drop down does nothing.
Well, It should show all the default layouts.

Try removing the Panels UI component, not saving your settings and reinstalling the newest version.
If you've upgraded from a previous version that didn't have the folder criteria, then the criteria won't be there if you don't clear your saved settings first.
(your configuration is saved in an external file, so it won't be harmed.)

(I love your FX builds, BTW wink.gif )
bangbang023
Ok, so now the option is there, but it also sorts the albums. I already have them grouped in my playlist and sorted into the order I want, but unlike the old versions that kept my playlist order and just grouped them, it's also sorting alphabetically inspite of the fact that I checked "ignore sort"
centos
Is there any site or anything else with old versions of panelsui? I need one with layout selector codebox option and can't find older versions than the new one.
kabuki
QUOTE(centos @ Jul 1 2007, 20:42) *

Is there any site or anything else with old versions of panelsui? I need one with layout selector codebox option and can't find older versions than the new one.


look at your PM box
shakey_snake
rolleyes.gif
Terrestrial has repeatedly asked that we don't distribute old versions of panels UI.





QUOTE(bangbang023 @ Jul 1 2007, 13:54) *

Ok, so now the option is there, but it also sorts the albums. I already have them grouped in my playlist and sorted into the order I want, but unlike the old versions that kept my playlist order and just grouped them, it's also sorting alphabetically inspite of the fact that I checked "ignore sort"
Wow, that's kind of annoying. That makes me wonder if that check box is completely broken.

For 99% of users, tying sorting and grouping together, I think, makes a lot of sense.
If the playlist isn't going to be sorted by any particular programmable pattern, I think you'll probably be best off using the "None" preset.
eboomer
QUOTE(Keikonium @ Jun 28 2007, 21:59) *

I wanted to add some stuff to the wiki, but its locked... how would I go abouts getting permission to edit it?

The info is on the wiki site, you just have to browse around a bit...
http://wiki.hydrogenaudio.org/index.php?title=Main_Page

QUOTE(sunshine_man @ Jun 29 2007, 07:19) *

Can't figure out how can i get headings on playlist in scp. PLs help
i wanna sort them by folder.

Not too sure exactly what you're asking. Have you read the Wiki?

QUOTE(2Pacalypse @ Jun 29 2007, 09:59) *

is there a request page? natural habit i always try and double click on the library filter would be great if we could define a action to take when double clicked

There's a wiki page for Featrue requests & Bugs (It's linked at the main wiki page too). This double clicking feature is already on there, in the "Short term" catagory, so it should be comming up within the next few releases smile.gif

By the way, I think we should give the feature requests/bug reports page more visibility - I think a link to iit should be added to the first page of this discussion thread, and to the info box of the main wiki page. I tried, but for some reason couldn't find a way to add the link to the info box of the wiki page. Could somebody help me with this - I'm a bit of a wiki noob rolleyes.gif
bangbang023
QUOTE(shakey_snake @ Jul 1 2007, 17:35) *

For 99% of users, tying sorting and grouping together, I think, makes a lot of sense.
If the playlist isn't going to be sorted by any particular programmable pattern, I think you'll probably be best off using the "None" preset.

Even using that preset, it instantly sorts my list into alphabetical order as soon as I check "group". It automatically selects "sort" also.
eboomer
QUOTE(bangbang023 @ Jun 27 2007, 08:48) *

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.

Am I missing something? You can add your own sorting and grouping criteria and modifty all of the existing ones just about any way you can think of - Go to:
Preferences -> Display -> Panels UI -> Sort/Group - Observe the Modify, Delete, and Add buttons on the right.
terrestrial
I've uploaded a new version using a rewritten text/images/button code here

This is for testing purposes only, so don't use this on your main installation. The new text code allows for word wrapping and better alignment options, and I would appreciate it if people could test it out and report any glitches.

Stuff like glow, shadow, blur haven't been implemented yet.

here is some sample code:

CODE

// always start with a font
$font(tahoma,8,bold,0-0-0)
$drawrect(0,0,0,0,brushcolor-255-255-255)

// set the bounding box for the following text to 10,10,110,110
// by default, align the text to the left, and in the middle, vertically.
$alignabs(10,10,150,100,left,top)
$drawrect(10,10,150,100,brushcolor-null)
// lines which are too long will be truncated and ellipses added
// use $align(right), $align(left), or $align(center) to align text within a line.
// the default alignment on a line will be what is specified in the $alignabs
// (in this case, left)
A long line of text| $alignr(right)small line$char(10)
$alignr(right)small line $alignr(left)A long line of text$char(10)$char(10)
$wordwrap()another line of text, but with word wrapping.

// same as above, but with different $alignabs alignment
$alignabs(170,10,150,100,right,middle)
$drawrect(170,10,150,100,brushcolor-null)
A long line of text| $alignr(left)small line$char(10)
$alignr(right)small line $alignr(left)A long line of text$char(10)$char(10)
$wordwrap()another line of text, but with word wrapping.

// you can also align text vertically within a line
$alignabs(10,120,150,100,center,middle)
$drawrect(10,120,150,100,brushcolor-null)
// align text along the baseline
$font(,8,bold,0-0-0)abc$font(,16,bold,0-0-0)abc$font(,8,bold,0-0-0)abc$char(10)
// align text at the top
$alignr(top)$font(,8,bold,0-0-0)abc$font(,16,bold,0-0-0)abc$font(,8,bold,0-0-0)abc$char(10)
// align text in the middle
$alignr(middle)$font(,8,bold,0-0-0)abc$font(,16,bold,0-0-0)abc$font(,8,bold,0-0-0)abc$char(10)

$alignabs(170,120,150,100,left,top)
$drawrect(170,120,150,100,brushcolor-null)
1 $_tab(40)loremipsum$char(10)
100 $_tab(40)loremipsum$char(10)
1000000 $_tab(40)loremipsum$char(10)
15 $_tab(40)loremipsum$char(10)

$alignabs(10,230,310,100,left,top)
$drawrect(10,230,310,100,brushcolor-null)
testing$char(10)
$addcharspace(5)testing wiiilllwww$char(10)$addcharspace(0)
$fixedwidth(15)testing wiiilllwww$char(10)
$fixedwidth(15)WiiiiiiW
kabuki
QUOTE(shakey_snake @ Jul 2 2007, 00:35) *

rolleyes.gif
Terrestrial has repeatedly asked that we don't distribute old versions of panels UI.

Where do you see a public distribution of old version...?
Afaik terrestrial 've asked not distribute them publicly in this thread. If you notice it... it's a pm.
But surrely, i'm wrong, helping some mate, by pm.
Cheers wink.gif
metal_termite
You added five new functions. Does this sum them up?

Alignment properties
------------------------------
$alignr(position) - horizontally aligns texts relatively, where position can be left, right, center.
$wordwrap() - word wraps an additional line of text
$_tab(x) - indents text to x pixels

Font properties
------------------------------
$addcharspace(x) - sets the character spacing to x pixels, where x is an integer value.
$fixedwidth(x) - sets the character spacing of a fixed with font to x pixels, where x is an integer value.


I don't see any glitches so far, except that $imageabs is broken (reports [UNKNOWN FUNCTION]), but you probably know that already.
terrestrial
QUOTE(bangbang023 @ Jul 1 2007, 19:57) *

Even using that preset, it instantly sorts my list into alphabetical order as soon as I check "group". It automatically selects "sort" also.


try adding a new sort/group criteria (in the main preferences) with an empty sort string, uncheck "group by sort", and put your grouping code into the group by tab. then you should be able to select your new criteria and which layout goes with it.

I've also added a section to the wiki about sorting/grouping and selecting layouts: here, as there seems to be some confusion regarding this. If it is still unclear or the wording is not clear let me know.


QUOTE(metal_termite @ Jul 1 2007, 23:11) *

You added five new functions. Does this sum them up?

I don't see any glitches so far, except that $imageabs is broken (reports [UNKNOWN FUNCTION]), but you probably know that already.


Actually I've cleaned up a lot of the alignment stuff to two functions (but a lot of the older stuff is still there so as not to break older layouts).

There is: $alignabs(x,y,w,h,left|right,top|bottom), and $alignr(left|right|center|top|bottom|middle) (you can also do $alignr(left,top) or even $alignr(top,left)) for alignment.

$wordwrap() allows the current line to word wrap, otherwise the line is clipped and ellipses addded. $_tab() does what you said.

$addcharspace(x) adds a constant spacing to each character (so if normally a "w" takes 5 pixels and you $addcharspace(2), then it will take 7 pixels, if "i" takes 2 pixels, it will take 4, and so forth)

$fixedwith(x) sets a constant spacing for each character (so $fixedwidth(10) will make a "w" take 10 pixels, and the same for "i").

I've replaced and made simpler the image function too, and I'll post the name / parameters in the next version.
BooooooooB
Would it be possible to have the mouse-wheel scroll the panel that the cursor is currently over? At the moment it always scrolls the last panel that was clicked.

Also, I'm finding that the only way to give the foobar window focus on the Windows taskbar is to click on the taskbar entry, clicking any part of the window, or even maximising it, just leaves it on the last window to have focus. Just a small annoyance sometimes.

Keep up the amazing work anyhow smile.gif
Russell777
Bug Report:
With $windowstyle(hidetitlebar) option in // Background section,each time i restart foobar window's height
is growing by 25 pixels,making notitlebar option useless.
dRsrb
Hi!

Is there any possibilty to calculate the average rating of an album or other numeric Tags?

It could look Like this:
$puts(avgrating,$eval($count(%rating%)/%itemcount%))
$get(avgrating)

?
odyssey
QUOTE(2Pacalypse @ Jun 29 2007, 16:59) *

is there a request page? natural habit i always try and double click on the library filter would be great if we could define a action to take when double clicked

This is already in the short-term feature request wiki biggrin.gif Hope to see it soon.

QUOTE(dRsrb @ Jul 2 2007, 15:23) *

Is there any possibilty to calculate the average rating of an album or other numeric Tags?

No! (Sadly) you cannot get tags for more than a selected or playing track. The way other people are creating albumrating is by manual estimating and creating a tag for all the songs in the album.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.