INTERACT FORUM
More => Old Versions => JRiver Media Center 21 for Windows => Topic started by: Otello on February 03, 2016, 02:39:35 pm
-
Well, I don't know how and why other people use the alternate display; on my side I use it for classical music to show additional tags, like Composer and Conductor.
So, what about an automatic switch, configurable by Genres?
BTW, I'd be curious to know different reasons for using the alternate display ;)
-
i use the alternate text to display secondary information (remaster info, catalog numbers, etc.) that i don't want cluttering my main view.
i certainly see why you want to have it auto-change, it's not something i care much about but i would use it if it was there! It would have to configure based on any field, not just genre though
-
The Customize Display dialog is extremely configurable because it understands all of JRiver MC's Expression Language (http://wiki.jriver.com/index.php/Expression_Language). This means that it understands conditionals including if() , ifelse() , etc.
So you can build your own display logic that switches based on Genre(s) using the existing functionality. I use this to show the Disk # field for songs that have a Disk #. For ones that don't, nothing is shown.
if(isempty([disc #]), , / D[disc #])
This logic is extensible to keying on any field you want and changing the entire display, or just portions of it. You just wrap those portions of the display in if() constructs and it should all work.
Brian.
-
Thanks Blgentry!
I never even bothered to try expressions up there.
-
I use this to show the Disk # field for songs that have a Disk #. For ones that don't, nothing is shown.
For this, the delimit function is better suited. http://wiki.jriver.com/index.php/Formatting_Functions#Delimit
Delimit([Disc #], , / D)
-
The Customize Display dialog is extremely configurable because it understands all of JRiver MC's Expression Language (http://wiki.jriver.com/index.php/Expression_Language). This means that it understands conditionals including if() , ifelse() , etc.
Great!
I retire my request. ;D