Reply to thread

Let me see if I can lay out the problem with some more technical details.  Here's a code snipet from the tvguide.xml that I imported using xmltv:


<programme start="20151017210000 -0400" stop="20151017220000 -0400" channel="I3.1.44991.schedulesdirect.org">

        <title lang="en">Code Black</title>

        <sub-title lang="en">Pre-Existing Conditions</sub-title>

        <desc lang="en">During a 36-hour shift, the doctors are faced with a distraught woman whose sons were in a devastating car accident; Mario makes Angus perform an unnecessary operation.</desc>


Note the <sub-title> tag and that this xml was generated using mc2xml and schedules direct json.


Here's a snippet of what I modified (bolded here for emphasis) in my skin's ProgramInfoSlim.inc in C:\Program Files (x86)\Team MediaPortal\MP2-Client\Plugins\SlimTv.Client\Skin\Titanium\screens


    <Label Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3" x:Name="Description" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"

           Wrap="True" Scroll="Auto"

           Content="{Binding Path=CurrentProgram.episodeName}"

           Color="{ThemeResource TextColor}"/>


And here's how it looks (below).  Clearly, the skin modification is being read in as the description is gone, but CurrentProgram.EpisodeName returns no information, even though it's there in the schedule's direct XML in the sub-title tag. I tried it with capital and lower case .episodeName.


[ATTACH=full]170445[/ATTACH]


Does that better describe what I'm trying to do?


Thanks!

Pat


Top Bottom