Help problem with Fan arts and layer (1 Viewer)

squale1402

Portal Member
February 28, 2009
26
0
Hi,

I have big problem with my fan arts and my layer for TV Series plugin :

- Fan arts don't want to appear in mediaportal : i've created "Thumbs" and "Fan arts" folders in users files and i've put all my pictures in. My pictures are name "serie-name_fanart-*.png". All my pictures are in .png and they are about 720 to 1080 pixels width.

Can you help me because i really want to see fan arts ?

-My other problem is with my layer beacuase when i put the cursor of selection on a season or serie the cursor make my title disappear (there's is no more visible text).

Thaks for your help because i'm really lost ...

I put my files on attachements.

View attachment TVSeries.xml
*View attachment TVSeries.FanArt.xml
Battlestar-Galactica_fanart_1.jpg
 

ltfearme

Community Plugin Dev
  • Premium Supporter
  • June 10, 2007
    6,751
    7,196
    Sydney
    Home Country
    Australia Australia
    You should replace

    Code:
    - <control>
      <description>LOOPING TV BACKGROUND ANIMATION</description> 
      <id>6661</id> 
      <type>multiimage</type> 
      <posx>0</posx> 
      <posy>0</posy> 
      <width>1366</width> 
      <height>768</height> 
      <imagepath>tv</imagepath> 
      <timeperimage>60000</timeperimage> 
      <fadetime>800</fadetime> 
      <loop>yes</loop> 
      <randomize>true</randomize> 
      <visible>!Control.IsVisible(1232)</visible> 
      </control>
    - <control>
      <description>Fan Art Image</description> 
      <type>image</type> 
      <id>524</id> 
      <posX>0</posX> 
      <posY>0</posY> 
      <width>1366</width> 
      <height>768</height> 
      <texture>-</texture> 
      </control>

    with

    Code:
       <control>
          <description>Fanart Background #1</description>
          <type>image</type>
          <id>524</id>
          <posX>0</posX>
          <posY>0</posY>
          <width>1280</width>
          <height>720</height>
          <texture>#TVSeries.Fanart</texture>
          <animation effect="fade" start="0" end="100" time="3000">WindowOpen</animation>
          <animation effect="fade" start="0" end="100" time="200">Visible</animation>
          <animation effect="fade" start="100" end="0" time="200" delay="200">Hidden</animation>
        </control>
    
        <control>
          <description>Fanart Background #2</description>
          <type>image</type>
          <id>525</id>
          <posX>0</posX>
          <posY>0</posY>
          <width>1280</width>
          <height>720</height>
          <texture>#TVSeries.Fanart2</texture>
          <animation effect="fade" start="0" end="100" time="200">Visible</animation>
          <animation effect="fade" start="100" end="0" time="200" delay="200">Hidden</animation>
        </control>
     

    Users who are viewing this thread

    Top Bottom