nerdynick
June 7th, 2009, 11:58 AM
I have a panel that should be showing a list of items but for some reason it just doesn't show up when the window is drawn. Here is the code for the panel. Can anyone see what I'm doing wrong with it.
<control type="panel" id="100">
<description>The list of Videos</description>
<posx>10</posx>
<posy>10</posy>
<width>1240</width>
<height>588</height>
<itemLayout height="170" width="200">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>200</width>
<height>170</height>
<texture>osd_control_zoom_background.png</texture>
</control>
<control type="image">
<posx>50</posx>
<posy>10</posy>
<width>100</width>
<height>75</height>
<info>ListItem.Icon</info>
</control>
<control type="label">
<posx>10</posx>
<posy>90</posy>
<width>180</width>
<height>30</height>
<font>font21</font>
<label>$INFO[ListItem.Label]</label>
<align>left</align>
</control>
</itemLayout>
<focusedLayout height="170" width="200">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>200</width>
<height>170</height>
<texture>osd_control_zoom_background.png</texture>
</control>
<control type="image">
<posx>50</posx>
<posy>10</posy>
<width>100</width>
<height>75</height>
<texture>$INFO[ListItem.Icon]</texture>
</control>
<control type="label">
<posx>10</posx>
<posy>90</posy>
<width>180</width>
<height>30</height>
<font>font21</font>
<label>$INFO[ListItem.Label]</label>
<align>left</align>
</control>
</focusedLayout>
<content>
<item id="121">
<label>Some Text</label>
<label2>Some More Text</label2>
<icon>URL to a remote Image</icon>
<thumb>Another URL to a remote Image</thumb>
</item>
<!-- More Items -->
</content>
</control>
<control type="panel" id="100">
<description>The list of Videos</description>
<posx>10</posx>
<posy>10</posy>
<width>1240</width>
<height>588</height>
<itemLayout height="170" width="200">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>200</width>
<height>170</height>
<texture>osd_control_zoom_background.png</texture>
</control>
<control type="image">
<posx>50</posx>
<posy>10</posy>
<width>100</width>
<height>75</height>
<info>ListItem.Icon</info>
</control>
<control type="label">
<posx>10</posx>
<posy>90</posy>
<width>180</width>
<height>30</height>
<font>font21</font>
<label>$INFO[ListItem.Label]</label>
<align>left</align>
</control>
</itemLayout>
<focusedLayout height="170" width="200">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>200</width>
<height>170</height>
<texture>osd_control_zoom_background.png</texture>
</control>
<control type="image">
<posx>50</posx>
<posy>10</posy>
<width>100</width>
<height>75</height>
<texture>$INFO[ListItem.Icon]</texture>
</control>
<control type="label">
<posx>10</posx>
<posy>90</posy>
<width>180</width>
<height>30</height>
<font>font21</font>
<label>$INFO[ListItem.Label]</label>
<align>left</align>
</control>
</focusedLayout>
<content>
<item id="121">
<label>Some Text</label>
<label2>Some More Text</label2>
<icon>URL to a remote Image</icon>
<thumb>Another URL to a remote Image</thumb>
</item>
<!-- More Items -->
</content>
</control>