• 1
  • 2
  • 3(current)
  • 4
  • 5
  • 7
Aksala
#31
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
Thanks for the compliment. Wink
Reply
#32
ddlooping Wrote:I could upload it and send you the link via pm. Wink

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. Nod

Would that be ok?

Nod
Reply
#33
espengaasemyr, I'll make the modification to 2.2.0 and then will upload it. Wink
Reply
#34
You only need to change the MatteDiffuse colour to get the effect you want - leave the actual matte images as they are.
Reply
#35
Thanks, Hitcher, I'm experimenting on it. Wink
Reply
#36
ddlooping Wrote:Thanks, Hitcher, I'm experimenting on it. Wink
... and it's working fine. Big Grin

Just need to make it so it works it works in "Landscape" and "Panel wide"... (the modes that show fanart instead of posters)...
Reply
#37
Sweet, if you send me a link I'll get it added as a theme if you want - with full credits of course.
Reply
#38
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".
Working. Nod
Now to find the other views that need it...

I'll send you a link when I'm done with the tweaking, hopefully soon. Wink
Reply
#39
If you pull version 2.2.2 from GoogleCode you'll have them already done.
Reply
#40
Awesome work guys!!
Reply
#41
ooh looking forward to this! always prefer dark skins!
Reply
#42
I've added the duration to the "Includes_Mediaflags.xml". Smile

PHP Code:
            <!-- 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
The condition on its "posx" doesn't work though. No
Reply
#43
No those conditions don't work but you can do it by using includes.

PHP Code:
<!-- 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> 
Reply
#44
Thanks, Hitcher. Smile

I have used...
PHP Code:
            <!-- 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
... but your code is much cooler. Cool

It can be used in all sorts of way as well. Nod
Reply
#45
These days I try to use conditional includes over visibility condition whenever possible as they're only checked once when loaded whereas visible conditions are constantly checked. And the more visibility conditions you have to slower the skin performs.
Reply
  • 1
  • 2
  • 3(current)
  • 4
  • 5
  • 7

Logout Mark Read Team Forum Stats Members Help
Aksala0