2011-01-03, 13:08
Hitcher Wrote:As long as they're of a good enough standard (as this clearly is) then I can add them to Alaska Revisited as themes.Cool.
![Cool Cool](https://forum.kodi.tv/images/smilies/cool.png)
Thanks for the compliment.
![Wink Wink](https://forum.kodi.tv/images/smilies/wink.png)
Hitcher Wrote:As long as they're of a good enough standard (as this clearly is) then I can add them to Alaska Revisited as themes.Cool.
ddlooping Wrote:I could upload it and send you the link via pm.
Keep in mind it's not based on the updated version of Alaska Revisited (2.2.0) and, while not buggy, it could do with some tweaks.
Would that be ok?
ddlooping Wrote:Thanks, Hitcher, I'm experimenting on it.... and it's working fine.
Hitcher Wrote:Sweet, if you send me a link I'll get it added as a theme if you want - with full credits of course.Added "<colordiffuse>MatteDiffuse</colordiffuse>" to "Landscape".
<!-- MOD : DURATION -->
<control type="label">
<posx condition="!Skin.HasSetting(IMDBNumbers) + !IsEmpty(ListItem.StarRating)">590</posx>
<posx condition="Skin.HasSetting(IMDBNumbers) + !IsEmpty(ListItem.Rating)">660</posx>
<posy>665</posy>
<width>200</width>
<height>20</height>
<aligny>center</aligny>
<font>Font_OSDTime</font>
<textcolor>MediaFlagsDiffuse</textcolor>
<scroll>true</scroll>
<selectedcolor>TextSelected</selectedcolor>
<label>$INFO[ListItem.Duration,, mins]</label>
</control>
<!-- MOD : DURATION -->
<control type="label">
<include condition="!Skin.HasSetting(IMDBNumbers) + !IsEmpty(ListItem.StarRating)">posx590</include>
<include condition="Skin.HasSetting(IMDBNumbers) + !IsEmpty(ListItem.Rating)">posx660</include>
<posy>665</posy>
<width>200</width>
<height>20</height>
<aligny>center</aligny>
<font>Font_OSDTime</font>
<textcolor>MediaFlagsDiffuse</textcolor>
<scroll>true</scroll>
<selectedcolor>TextSelected</selectedcolor>
<label>$INFO[ListItem.Duration,, mins]</label>
</control>
<!-- ADD THESE AS A SEPARATE INCLUDES -->
<include name="posx590">
<posx>590</posx>
</include>
<include name="posx660">
<posx>660</posx>
</include>
<!-- MOD : DURATION -->
<control type="label">
<visible>!Skin.HasSetting(IMDBNumbers) + !IsEmpty(ListItem.StarRating)</visible>
<posx>590</posx>
<posy>665</posy>
<width>200</width>
<height>20</height>
<aligny>center</aligny>
<font>Font_OSDTime</font>
<textcolor>MediaFlagsDiffuse</textcolor>
<scroll>true</scroll>
<selectedcolor>TextSelected</selectedcolor>
<label>$INFO[ListItem.Duration,, mins]</label>
</control>
<control type="label">
<visible>Skin.HasSetting(IMDBNumbers) + !IsEmpty(ListItem.Rating)</visible>
<posx>664</posx>
<posy>665</posy>
<width>200</width>
<height>20</height>
<aligny>center</aligny>
<font>Font_OSDTime</font>
<textcolor>MediaFlagsDiffuse</textcolor>
<scroll>true</scroll>
<selectedcolor>TextSelected</selectedcolor>
<label>$INFO[ListItem.Duration,, mins]</label>
</control>