fallback=".." problem
#1
I'm using the following code to show the 'Not Available' message when there's no latest items to show and it works fine fine for Movies but not episodes because of the ' - ' separator between the shows title and episode names.
Code:
<label fallback="Not Available">$INFO[Window.Property(LatestEpisode.1.ShowTitle)] - $INFO[Window.Property(LatestEpisode.1.EpisodeNo)]</label>
Shouldn't fallback be based only on the info and not any characters you wish to show?
Reply
#2
you could try this:

Code:
<label fallback="Not Available">$INFO[Window.Property(LatestEpisode.1.ShowTitle)]$INFO[Window.Property(LatestEpisode.1.EpisodeNo), - ]</label>
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
That worked perfectly, many thanks. Big Grin
Reply

Logout Mark Read Team Forum Stats Members Help
fallback=".." problem0