Low Panel Mod - 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: Mimic-LR (https://forum.kodi.tv/forumdisplay.php?fid=218) +---- Thread: Low Panel Mod (/showthread.php?tid=273993) |
Low Panel Mod - Edworld - 2016-05-14 Braz, I want to do a small mod to this view, can you tell me what row I need to paste this in? <!--START ROTTEN TOMATOES RATINGS --> <control type="image"> <description>Rotten logo</description> <left>1575</left> <right>SidePad</right> <top>130</top> <orientation>vertical</orientation> <width>265</width> <height>150</height> <texture>http://s23.postimg.org/nw37rbb97/Rotten_Tomatoes_480x300.png</texture> </control> <control type="image"> <description>Rotten logo 59% or less</description> <left>1590</left> <right>SidePad</right> <top>245</top> <orientation>vertical</orientation> <width>45</width> <height>45</height> <texture>http://d3biamo577v4eu.cloudfront.net/static/images/trademark/rotten.png</texture> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesMeter), 0) + !IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesMeter), 59) + Container.Content(movies)</visible> </control> <control type="image"> <description>Tomato logo Between 60-74% only</description> <left>1590</left> <right>SidePad</right> <top>245</top> <orientation>vertical</orientation> <width>45</width> <height>45</height> <texture>http://d3biamo577v4eu.cloudfront.net/static/images/trademark/fresh.png</texture> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesMeter), 59) + !IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesMeter), 74)</visible> </control> <control type="image"> <description>Certified Fresh logo 75%+ only</description> <left>1590</left> <right>SidePad</right> <top>245</top> <orientation>vertical</orientation> <width>55</width> <height>55</height> <texture>http://d3biamo577v4eu.cloudfront.net/static/images/icons/cf-lg.png</texture> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesMeter), 74)</visible> </control> <control type="label"> <left>1650</left> <right>SidePad</right> <top>235</top> <orientation>vertical</orientation> <centertop>50%</centertop> <textcolor>white</textcolor> <font>RottenTomatoes</font> <label>$INFO[Window(Home).Property(SkinHelper.RottenTomatoesMeter)]%</label> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesMeter), 0) + Container.Content(movies)</visible> </control> <control type="image"> <description>Popcorn Logo</description> <left>1725</left> <right>SidePad</right> <top>245</top> <orientation>vertical</orientation> <width>45</width> <height>45</height> <texture>http://d3biamo577v4eu.cloudfront.net/static/images/trademark/popcorn.png</texture> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesAudienceMet​er), 59)</visible> </control> <control type="image"> <description>Popcorn - Rotten Logo</description> <left>1725</left> <right>SidePad</right> <top>245</top> <orientation>vertical</orientation> <width>45 </width> <height>45</height> <texture>http://d3biamo577v4eu.cloudfront.net/static/images/trademark/spilt.png</texture> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesAudienceMet​er), 0) + !IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesAudienceMeter​), 59) + Container.Content(movies)</visible> </control> <control type="label"> <left>1780</left> <right>SidePad</right> <top>235</top> <orientation>vertical</orientation> <aligny>center</aligny> <centertop>50%</centertop> <textcolor>white</textcolor> <font>RottenTomatoes</font> <label fallback="19055">$INFO[Window(Home).Property(SkinHelper.RottenTomatoesAudienceMeter)]%</label> <visible>IntegerGreaterThan(Window(Home).Property(SkinHelper.RottenTomatoesAudienceMet​er), 0) + Container.Content(movies)</visible> </control> <!--END ROTTEN TOMATOES RATINGS --> Thanks RE: Low Panel Mod - braz - 2016-05-15 I would put it somewhere after line 91, along with the other labels. |