[MOD] dfmos xTV Visualization Mod
#1
Wink 
Little Visualization mod

I use this skin on Pc running at 1080P, sweet!
Just the visualization wasn't to my liking so I changed it a little, took some of the overlay from my old x-cite skin.

Just download the file, put the .png files into the XTV media folder.
And then add the 2 .xml files into the PAL folder thats it.

http://www.megaupload.com/?d=GIT0ZRCV

Chief dude still love ur skin, peace out bro.

Screenshots
Image
Image
Image
Image
Image
Download X-cite_V0.3 - 13th June 2007
Download from Rapidshare
Or
Download from Megaupload
Reply
#2
Nice mod.
Reply
#3
Great Mod. Loving it!
I added some stuff to display the current playing state, and also removed the seekbar.

If you guys also want this, do the following:

PAL\DialogSeekBar.xml:
Change the 3rd line to:
Code:
<visible>!Window.IsActive(2006) + [Player.Seeking | Player.DisplayAfterSeek | Window.IsActive(VideoOSD) | Window.IsActive(MusicOSD) | Player.Paused | Player.Forwarding | Player.Rewinding]</visible>

PAL\MusicVisualisation:

Below line 4:
Code:
<visible>!Window.IsVisible(2004)</visible>

add
Code:
<controls>
               <!-- time and date -->
               <control type="label">
                <description>Time and Date</description>
                <posx>700</posx>
                <posy>20</posy>
                <width>322</width>
                <height>20</height>
                <label>$INFO[system.Date] | $INFO[system.Time]</label>
                <align>right</align>
                <font>font12</font>
               </control>
              

<!-- playstate labels -->
                <control type="label">
                        <description>playing</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31046</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>![Player.Paused | Player.Rewinding | Player.Forwarding]</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>paused</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31045</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Paused</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>rewind 2x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31053</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Rewinding2x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>forward 2x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31059</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Forwarding2x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>rewind 4x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31054</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Rewinding4x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>forward 4x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31060</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Forwarding4x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>rewind 8x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31055</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Rewinding8x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>forward 8x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31061</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Forwarding8x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>rewind 16x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31056</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Rewinding16x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>forward 16x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31062</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Forwarding16x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>rewind 32x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31057</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Rewinding32x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>
                <control type="label">
                        <description>forward 32x</description>
                        <posx>358</posx>
                        <posy>428</posy>
                        <font>font10</font>
                        <label>31063</label>
                        <align>right</align>
                        <width>322</width>
                        <animation effect="fade" time="400">VisibleChange</animation>
                        <textcolor>button-text</textcolor>
                        <visible>Player.Forwarding32x</visible>
                        <visible>[Window.IsActive(2005) | Window.IsActive(2006)]</visible>
                </control>

This plays out nicely Smile Will add screenshot, if wanted.

Do a BACKUP before. And just in case, here is my full MusicVisualisation.xml
Reply
#4
Can I ask what version of Plex and what version of the xTV skin you guys are using? I would love this mod but I'm missing some basic menu functionality from my skins (ie can't get into settings, just displays a black screen).
Reply
#5
maybe because they aren't using plex?
Reply
#6
ahh gotcha - damn I wish it work with Plex!
Reply

Logout Mark Read Team Forum Stats Members Help
[MOD] dfmos xTV Visualization Mod0