Trying to show IPTC headline in slideshow...
#1
Hey guys,
I spent hours on trying to show the IPTC headline tag during slideshow. It's just not working.
What am I doing wrong?

Edit: I'm running OpenElec on a Raspberry Pi, if that matters.

Thanks for your help!

Slideshow.xml:
Code:
<window>
    <defaultcontrol>2</defaultcontrol>
    <controls>
        <control type="group" id="13">
            <posx>130r</posx>
            <posy>10</posy>
            <visible>!Skin.HasSetting(Show_SlideShow_Paused)</visible>
            <control type="image">
                <posx>0</posx>
                <posy>0</posy>
                <width>120</width>
                <height>35</height>
                <texture>black-back.png</texture>
                <bordertexture border="3">NoCover_1.png</bordertexture>
                <bordersize>5</bordersize>
            </control>
            <control type="label">
                <description>paused label</description>
                <posx>10</posx>
                <posy>0</posy>
                <width>100</width>
                <height>35</height>
                <align>center</align>
                <aligny>center</aligny>
                <font>font10</font>
                <textcolor>white</textcolor>
                <label>31043</label>
            </control>
        </control>
        <!-- media infos -->
        <control type="group">
            <posx>20</posx>
            <posy>180r</posy>
            <visible>Player.ShowInfo + Player.HasMedia</visible>
            <include>VisibleFadeEffect</include>
            <include>SmallMusicInfo</include>
        </control>
    
    <control type="label">
    <description>IPTC headline</description>
    <posx>4</posx>
    <posy>662</posy>
    <height>30</height>
    <width>200</width>
    <info>$INFO[Slideshow.Headline]</info>
    <align>left</align>
    <aligny>bottom</aligny>
    <font>font-25</font>
    <textcolor>white</textcolor>
    <shadowcolor>black</shadowcolor>
    <scroll>false</scroll>
    </control>
    
    </controls>
</window>
Reply

Logout Mark Read Team Forum Stats Members Help
Trying to show IPTC headline in slideshow...0