Kodi Community Forum
New Movie (and TV!) view: Multiplex - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: New Movie (and TV!) view: Multiplex (/showthread.php?tid=49559)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33


- jalesm - 2009-05-21

Teukka79 Wrote:why episode text shows like that on thumb?

Image

I have the same problem, I think it has to do with this.

Edit: Finally figured it out:

In Viewtype_Multiplex.xml at Line 965, add the bolded parts

Code:
<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$INFO[ListItem.Label]</label>
    <animation effect="zoom" center="115,100" start="80" end="100" time="400" easing="out" tween="cubic" reversible="false">Focus</animation>
    <visible>Container.Content(seasons)</visible>    
    [b]<visible>Control.HasFocus(52)</visible>[/b]
</control>
[b]<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$INFO[ListItem.Label]</label>
    <animation effect="zoom" center="115,100" start="80" end="80" time="0" condition="true">Conditional</animation>        
    <visible>Container.Content(seasons)</visible>    
    <visible>!Control.HasFocus(52)</visible>    
</control>[/b]
<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$LOCALIZE[31433] $INFO[ListItem.Episode]</label>
    <animation effect="zoom" center="115,100" start="80" end="100" time="400" easing="out" tween="cubic" reversible="false">Focus</animation>
    <visible>Container.Content(episodes)</visible>    
    [b]<visible>Control.HasFocus(52)</visible>[/b]    
</control>        
[b]<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$LOCALIZE[31433] $INFO[ListItem.Episode]</label>
    <animation effect="zoom" center="115,100" start="80" end="80" time="0" condition="true">Conditional</animation>
    <visible>Container.Content(episodes)</visible>    
    <visible>!Control.HasFocus(52)</visible>
</control>[/b]



- Teukka79 - 2009-05-21

jalesm Wrote:I have the same problem, I think it has to do with this.

Edit: Finally figured it out:

In Viewtype_Multiplex.xml at Line 965, add the bolded parts

Code:
<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$INFO[ListItem.Label]</label>
    <animation effect="zoom" center="115,100" start="80" end="100" time="400" easing="out" tween="cubic" reversible="false">Focus</animation>
    <visible>Container.Content(seasons)</visible>    
    [b]<visible>Control.HasFocus(52)</visible>[/b]
</control>
[b]<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$INFO[ListItem.Label]</label>
    <animation effect="zoom" center="115,100" start="80" end="80" time="0" condition="true">Conditional</animation>        
    <visible>Container.Content(seasons)</visible>    
    <visible>!Control.HasFocus(52)</visible>    
</control>[/b]
<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$LOCALIZE[31433] $INFO[ListItem.Episode]</label>
    <animation effect="zoom" center="115,100" start="80" end="100" time="400" easing="out" tween="cubic" reversible="false">Focus</animation>
    <visible>Container.Content(episodes)</visible>    
    [b]<visible>Control.HasFocus(52)</visible>[/b]    
</control>        
[b]<control type="label">
    <posx>115</posx>
    <posy>129</posy>
    <width>229</width>
    <height>30</height>
    <align>center</align>
    <aligny>center</aligny>
    <font>Font_MultiplexSeasonLabel</font>
    <label>$LOCALIZE[31433] $INFO[ListItem.Episode]</label>
    <animation effect="zoom" center="115,100" start="80" end="80" time="0" condition="true">Conditional</animation>
    <visible>Container.Content(episodes)</visible>    
    <visible>!Control.HasFocus(52)</visible>
</control>[/b]

tried to add those lines but it didn't fix it. Huh


- Detmud - 2009-06-06

is there any chance to get this running with the new "glossy" Covers ?

Would be really great


- abba77 - 2009-09-03

awesome stuff here.

is there any way for "slim list" and "full list" in the season listing screen to use the same images that "low list" does? i.e. not using poster.jpg or folder.jpg, but whats downloaded by scrapper. right now it seems to be using folder.jpg from main show folder.

should i be grabbing them from the userdata/thumbnail folder and using them as Season01.tbn etc?


(using latest git hitcher's aeon mod)