SVN Revision 270 (1 Viewer)

Psycho Reptile

Retired Team Member
  • Premium Supporter
  • April 19, 2006
    1,316
    787
    Cambridge, England
    Home Country
    United Kingdom United Kingdom
    Added: Dummy labels so skinners can react to Listlevel (visible if in the queried listlevel) (Group/Series/Season/Episode) - for spuck
    ControlID's to use:
    - 1237 Series
    - 1238 Season
    - 1239 Episode
    - 1240 Group

    Hi Inker, I wonder if you could explain this for the rest of us skinners around here ;)
     

    Inker

    Retired Team Member
  • Premium Supporter
  • December 6, 2004
    2,055
    318
    Sure, it's just like the dummy lables for Fanart, but for what is currently being displayed. You can check with the IsVisible script in the skin if for instance the plugin is displaying seasons, and then hide/show controls or whatever.

    Actually I'm still not sure what exactly spuck wants this for, but hes been bugging me forever for it. Maybe he can jump in and explain why it's needed?

    Earth to spuck......???
     

    spuck

    Community Skin Designer
    April 6, 2007
    397
    59
    Home Country
    Sweden Sweden
    Hehe, mostly I wanted this for the season page. Now you have episode info and the episode thumb (empty space) there but with the new dummy labels you can have series info there instead. It's just some minor thing but it's kind of annoying at times. :D
     

    Inker

    Retired Team Member
  • Premium Supporter
  • December 6, 2004
    2,055
    318
    spuck, did you get around implementing it yet? What skin is this for again?
     

    spuck

    Community Skin Designer
    April 6, 2007
    397
    59
    Home Country
    Sweden Sweden
    did you add the dummy labels? you need these:
    then just use it like all the other ones.
    Code:
        <control>
          <type>label</type>
          <description>Dummy Label for Series View</description>
          <id>1237</id>
          <posX>-50</posX>
          <posY>-50</posY>
          <width>0</width>
          <textcolor>d4d2d2</textcolor>
          <font>font14</font>
          <label>
          </label>
          <visible>false</visible>
          <!-- to make a control visible only when the facade is in list mode do this: <visible>Control.IsVisible(1237)</visible> -->
          <!-- to make a control invisible when the facade is in list mode do this: <visible>!Control.IsVisible(1237)</visible> -->
        </control>
        <control>
          <type>label</type>
          <description>Dummy Label for Season View</description>
          <id>1238</id>
          <posX>-50</posX>
          <posY>-50</posY>
          <width>0</width>
          <textcolor>d4d2d2</textcolor>
          <font>font14</font>
          <label>
          </label>
          <visible>false</visible>
          <!-- to make a control visible only when the facade is in list mode do this: <visible>Control.IsVisible(1238)</visible> -->
          <!-- to make a control invisible when the facade is in list mode do this: <visible>!Control.IsVisible(1238)</visible> -->
        </control>
        <control>
          <type>label</type>
          <description>Dummy Label for Episode View</description>
          <id>1239</id>
          <posX>-50</posX>
          <posY>-50</posY>
          <width>0</width>
          <textcolor>d4d2d2</textcolor>
          <font>font14</font>
          <label>
          </label>
          <visible>false</visible>
          <!-- to make a control visible only when the facade is in list mode do this: <visible>Control.IsVisible(1239)</visible> -->
          <!-- to make a control invisible when the facade is in list mode do this: <visible>!Control.IsVisible(1239)</visible> -->
        </control>
        <control>
          <type>label</type>
          <description>Dummy Label for Grouped View</description>
          <id>1240</id>
          <posX>-50</posX>
          <posY>-50</posY>
          <width>0</width>
          <textcolor>d4d2d2</textcolor>
          <font>font14</font>
          <label>
          </label>
          <visible>false</visible>
          <!-- to make a control visible only when the facade is in list mode do this: <visible>Control.IsVisible(1240)</visible> -->
          <!-- to make a control invisible when the facade is in list mode do this: <visible>!Control.IsVisible(1240)</visible> -->
        </control>

    Inker: I'm using a modded monochrome, I'm still working on the layout and look. Got 27 series in the series page. :D
    btw.. the series visible stuff isn't visible the first time you enter the plugin.. I've seen this before with some other stuff, right?
     

    Inker

    Retired Team Member
  • Premium Supporter
  • December 6, 2004
    2,055
    318
    Inker: I'm using a modded monochrome, I'm still working on the layout and look. Got 27 series in the series page. :D
    btw.. the series visible stuff isn't visible the first time you enter the plugin.. I've seen this before with some other stuff, right?

    Yeah, I'll check it out, but last time I didn't really understand why it happens if I remember right and it just went away on it's own for some reason......
     

    Users who are viewing this thread

    Top Bottom