Kodi Community Forum

Full Version: Condition visible Based on Track-Year
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi folks,

is it possible to show a specific Cd-Art ONLY if the Track is older than 1988?
i would like to display a fallback for tracks, which don't have a CD-Art AND are older than 1988.
I'm thinking of an old LP Image

By now i have ONE fallback for ALL tracks without CD-Art.
from the top of my head and untested, but something like this should do it:

Code:
<visible>!IntegerGreaterThan(ListItem.Year,1987)</visible>
yep. works.
i've used
<visible>IntegerGreaterThan(MusicPlayer.Year,1990)</visible>

thanks.