- May 26, 2009
- 227
- 39
- Home Country
-
Germany
I worked on mvCentral a little. Added clearart and optimized the videoOSD a bit. It is nearly finished but I still have one question:
I want to show "Artist - Album Title". The "-" shall only be displayed if the video has album data. Otherwise it would show. e.g. "Nightwish - ".
According to http://code.google.com/p/mvcentral/wiki/mvCentralSkinningGuide I want to use
but the hyphen is always shown even if there is no album. I also tried with
but the result is the same.
Is my syntax wrong or am I missing something different?
I want to show "Artist - Album Title". The "-" shall only be displayed if the video has album data. Otherwise it would show. e.g. "Nightwish - ".
According to http://code.google.com/p/mvcentral/wiki/mvCentralSkinningGuide I want to use
So I tried with#Play.Current.mvAlbum Set to the Album name the track is from or blank in no assoicated album
Code:
<label>#Play.Current.mvArtist #(iif(string.equals(#Play.Current.mvAlbum,''), '', '-')) #Play.Current.mvAlbum</label>
Code:
string.equals(#Play.Current.mvAlbum,)
Is my syntax wrong or am I missing something different?