How Do I create this view ?
I searched "logo" in the Episode view I found this :
Code:
- <control type="image" id="7016">
<posx>20</posx>
<posy>35</posy>
<width>300</width>
<height>116</height>
<texture background="true">$INFO[ListItem.path]logo.png</texture>
<fadetime>100</fadetime>
<aspectratio scalediffuse="false">stretch</aspectratio>
<include>Animation_HiddenByInfo</include>
<include>Animation_Viewtype_Episode_LeftSide</include>
<visible>Control.IsVisible(51) + [Container.Content(episodes) | Window.IsActive(videoplaylist)]</visible>
</control>
- <control type="image" id="9016">
<posx>20</posx>
<posy>35</posy>
<width>300</width>
<height>116</height>
<texture background="true">$INFO[ListItem.path]../logo.png</texture>
<fadetime>100</fadetime>
<aspectratio scalediffuse="false">stretch</aspectratio>
<include>Animation_HiddenByInfo</include>
<include>Animation_Viewtype_Episode_LeftSide</include>
<visible>Control.IsVisible(51) + [Container.Content(episodes) | Window.IsActive(videoplaylist)]</visible>
</control>
I simply change "logo.png" by "character.png" and the position (posx and posy) and that'a all !
Code:
- <control type="image" id="7016">
<posx>50</posx>
<posy>510</posy>
<width>200</width>
<height>200</height>
<texture background="true">$INFO[ListItem.path]character.png</texture>
<fadetime>100</fadetime>
<aspectratio scalediffuse="false">stretch</aspectratio>
<include>Animation_HiddenByInfo</include>
<include>Animation_Viewtype_Episode_LeftSide</include>
<visible>Control.IsVisible(51) + [Container.Content(episodes) | Window.IsActive(videoplaylist)]</visible>
</control>
- <control type="image" id="9016">
<posx>50</posx>
<posy>510</posy>
<width>200</width>
<height>200</height>
<texture background="true">$INFO[ListItem.path]../character.png</texture>
<fadetime>100</fadetime>
<aspectratio scalediffuse="false">stretch</aspectratio>
<include>Animation_HiddenByInfo</include>
<include>Animation_Viewtype_Episode_LeftSide</include>
<visible>Control.IsVisible(51) + [Container.Content(episodes) | Window.IsActive(videoplaylist)]</visible>
</control>