For the Madnox skin when using Portrait Icon Info layout, when you link a Movie to a TV Show (new one on me but ok)... when you browse the TV show and both the Movie you linked and the seasons of the TV show are present, what is happening is the media flags are overlapping each other. I found the code that is doing it, I modified it to what I thought would be a conditional selection based on what object in the panel is selected i.e. the movie, or any of the remaining TV show series... which should by the logic I cobbled together, switch between either one of the two media flag sets depending on which thing is "in focus" or selected... i.e. the movie or the show.
The original code looks like this:
I rewrote it to look like this based on numerous examples through various threads on the site and reasonable deduction:
Neither of the media flags show up under either condition. If I remove my rewrite and use the original functions, either one or the other commented out works individually.. i.e. the movie works for movie and tv for tv...
So I don't think what I'm asking the skin to do is unreasonable... is there something I am missing?
Thank you.
Chris
The original code looks like this:
Code:
<!-- Media flags -->
<control type="group">
<visible>Control.IsVisible(530)</visible>
<include content="AnimationSlideBottomWindow">
<param name="slide">220</param>
</include>
<include condition="Window.IsVisible(MyVideoNav.xml)">MediaFlagsTVShows</include>
<include condition="Window.IsVisible(MyVideoNav.xml)">MediaFlagsVideos4</include>
</control>
I rewrote it to look like this based on numerous examples through various threads on the site and reasonable deduction:
Code:
<control type="group">
<visible>Control.IsVisible(530)</visible>
<include content="AnimationSlideBottomWindow">
<param name="slide">220</param>
</include>
<include condition="Window.IsVisible(MyVideoNav.xml) + Container.Content(tvshows)">MediaFlagsTVShows</include>
<include condition="Window.IsVisible(MyVideoNav.xml) + Container.Content(movies)">MediaFlagsVideos4</include>
<visible>Window.IsVisible(MyVideoNav.xml) + [Container.Content(tvshows) | Container.Content(movies)]</visible>
</control>
Neither of the media flags show up under either condition. If I remove my rewrite and use the original functions, either one or the other commented out works individually.. i.e. the movie works for movie and tv for tv...
So I don't think what I'm asking the skin to do is unreasonable... is there something I am missing?
Thank you.
Chris