Some New Features
#3
Next is the preview support, just do the following:

Open Common Video Library Views.xml
Locate line 10634

Then replace:
Code:
<control type="label">
                <posx>535</posx>
                <posy>20</posy>
                <width>180</width>
                <height>65</height>
                <font>Heading-M</font>
                <textcolor>white</textcolor>
                <shadowcolor>black</shadowcolor>
                <align>center</align>
                <aligny>center</aligny>
                <label>$INFO[ListItem.label]</label>
                <scroll>true</scroll>
                <visible>IsEmpty(Control.GetLabel(77020))</visible>
                <visible>container.content(tvshows) + Control.IsVisible(537)</visible>
                <visible>Skin.HasSetting(TV Poster)</visible>
                <animation effect="fade" time="200">WindowClose</animation>
            </control>

With:
Code:
<control type="button" id="1337">
                <posx>535</posx>
                <posy>20</posy>
                <width>180</width>
                <height>50</height>
                <font>Heading-M</font>
                <textcolor>white</textcolor>
                <shadowcolor>black</shadowcolor>
                <align>center</align>
                <aligny>center</aligny>
                <label>$INFO[ListItem.label]</label>
                <scroll>true</scroll>
                <visible>IsEmpty(Control.GetLabel(77020))</visible>
                <visible>container.content(tvshows) + Control.IsVisible(537)</visible>
                <visible>Skin.HasSetting(TV Poster)</visible>
                <animation effect="fade" time="200">WindowClose</animation>
                <colordiffuse>ddffffff</colordiffuse>
                <onclick>PlayMedia($INFO[ListItem.Path]/pv.mkv)</onclick>
                <onleft>2</onleft>
                <onright>2</onright>
                <onup>2</onup>
                <ondown>537</ondown>
            </control>

Then search for id="537"

Replace:
Code:
<onup>2</onup>

With:
<onup>1337</onup>

Remember that for this to work your file must be called pv.mkv also note that the size of the label has been changed from the default height of 65 in order to look nice with the studio label. If you want it the default just change 50 in height back to 65.
Reply


Messages In This Thread
Some New Features - by ZERO &lt;ibis&gt; - 2011-04-28, 00:26
[No subject] - by ZERO &lt;ibis&gt; - 2011-04-28, 00:27
[No subject] - by ZERO &lt;ibis&gt; - 2011-04-28, 00:29
[No subject] - by ZERO &lt;ibis&gt; - 2011-04-28, 00:55
[No subject] - by Sharpe - 2011-04-28, 01:48
[No subject] - by ZERO &lt;ibis&gt; - 2011-04-28, 02:26
[No subject] - by ZERO &lt;ibis&gt; - 2011-04-28, 03:13
[No subject] - by Sharpe - 2011-04-28, 03:46
[No subject] - by ZERO &lt;ibis&gt; - 2011-04-28, 04:45
[No subject] - by kiboy6 - 2011-05-02, 11:40
[No subject] - by ZERO &lt;ibis&gt; - 2011-05-05, 09:24
[No subject] - by Sharpe - 2011-05-06, 00:14
[No subject] - by ZERO &lt;ibis&gt; - 2011-10-30, 06:56
Logout Mark Read Team Forum Stats Members Help
Some New Features0