Skin ClearArt Support (1 Viewer)

HTPCSourcer

Retired Team Member
  • Premium Supporter
  • May 16, 2008
    11,418
    2,335
    Home Country
    Germany Germany
    Hi Guzzi,

    @ajs and @powermarcel10 have provided alternative Titan-based skins, which suppport ClearArt display such as logo, banner and rotating disk for MovingPictures. However, the current syntax in their skin files is of the kind

    XML:
    <texture>..\..\..\Thumbs\CDArt\Movies\#(string.trim(#MovingPictures.SelectedMovie.imdb_id)).png</texture>
    <keepaspectratio>no</keepaspectratio>
    <visible>string.equals(#skin.enable.CD Art,True) + string.contains(#Play.Current.Thumb,MovingPictures) + player.hasvideo</visible>

    Currently I get no ClearArt displayed with MyFilms.

    Wizard123 pointed out that a plugin needs to actively provide such functions. Does MyFilms contain this functionality? If yes, how can one address it in the skin?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,625
    10,552
    Kyiv
    Home Country
    Ukraine Ukraine
    urrently I get no ClearArt displayed with MyFilms.
    I use:
    XML:
      <!-- ClearArt -->
           <control>
               <description>ClearArt</description>
               <type>image</type>
               <id>159357</id>
               <posX>1550</posX>
               <posY>150</posY>
               <width>250</width>
               <height>140</height>
            <texture>..\..\..\Thumbs\ClearArt\Movies\#(string.trim(#myfilms.db.imdb_id.value)).png</texture>
            <visible>Control.isvisible(50)+!Control.IsVisible(40)+!Control.IsVisible(37)+!Control.IsVisible(38)</visible>
           </control>
    
        <!-- ClearLogo -->
           <control>
               <description>ClearLogo</description>
               <type>image</type>
               <id>0</id>
               <posX>1550</posX>
               <posY>150</posY>
               <width>250</width>
               <height>140</height>
            <texture>..\..\..\Thumbs\ClearLogo\Movies\#(string.trim(#myfilms.db.imdb_id.value)).png</texture>
            <visible>!Control.HasThumb(159357)+Control.isvisible(50)+!Control.IsVisible(40)+!Control.IsVisible(37)+!Control.IsVisible(38)</visible>
           </control>
    
        <!-- CDArt -->
        <control>
            <description>Disc Image</description>
            <type>image</type>
            <id>0</id>
            <posX>1550</posX>
            <posY>330</posY>
            <width>300</width>
            <height>300</height>
            <texture>..\..\..\Thumbs\CDArt\Movies\#(string.trim(#myfilms.db.imdb_id.value)).png</texture>
            <keepaspectratio>yes</keepaspectratio>
            <visible>!Control.HasFocus(10001)+ !Control.HasFocus(10002) + !Control.HasFocus(10003) + !Control.HasFocus(10099)</visible>
              <animation effect="fade" time="250" start= "100" end= "50" condition="true">conditional</animation>
            <animation effect="fade" time="400">Visible</animation>
            <animation effect="fade" time="0">WindowClose</animation>
        </control>
     

    Users who are viewing this thread

    Top Bottom