[Mod] Influence

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
yiarkyiark Offline
Senior Member
Posts: 130
Joined: Nov 2008
Reputation: 2
Location: Paris
Post: #1
I glad to present you a mod of confluence named Influence.
More transparency, extra menu fully customizable.

Influence v0.1a6.zip

Have fun !

[Image: 1268913863-screenshot001.png]
[Image: 1268997630-screenshot000.png]
[Image: 1268997814-screenshot002.png]
[Image: 1268998048-screenshot004.png]
[Image: 1269002218-screenshot006.png]
[Image: 1269353804-screenshot000.png]
(This post was last modified: 2010-04-09 12:56 by yiarkyiark.)
find quote
severe Offline
Member
Posts: 52
Joined: Jan 2009
Reputation: 0
Post: #2
No offense, but what's the point here? New functionality? Anything?

The above looks like an early alpha of Confluence.



BTW, the website in that link is not in my language.
find quote
xbs08 Offline
Posting Freak
Posts: 1,298
Joined: May 2008
Reputation: 0
Location: Portugal
Post: #3
Nice work yiarkyiark!

Those customizable menus are a great addition. Tks.

@ severe
"More transparency, extra menu fully customizable"
Looks like english is not your language either Tongue
find quote
severe Offline
Member
Posts: 52
Joined: Jan 2009
Reputation: 0
Post: #4
xbs08 Wrote:@ severe
"More transparency, extra menu fully customizable"
Looks like english is not your language either Tongue




Ha! My engrish is very well, tank you. ;-)

meh... I don't see what's so special though.


Back to work on my time machine. See you doods later.
Or before!!
find quote
Jezz_X Online
Team-XBMC Skinner
Posts: 5,264
Joined: Jun 2006
Reputation: 55
Location: Earth
Post: #5
The odd thing is my ad blocker blocks all the images on that site I had to turn it off just to see them.
But yeah pretty much more transparent is the main feature

Skins I have done....
[Image: skinsq.png]
And others in the past...

Want to know what I'm working on currently? Check me out on Google+
find quote
slyk2203 Offline
Member
Posts: 54
Joined: Sep 2007
Reputation: 0
Smile  this is it.... :-) Post: #6
yiarkyiark Wrote:I glad to present you a mod of confluence named Influence.
More transparency, extra menu fully customizable.

More info here

Have fun !

[Image: 1268913863-screenshot001.png]
[Image: 1268997630-screenshot000.png]
[Image: 1268997814-screenshot002.png]
[Image: 1268998048-screenshot004.png]
[Image: 1269002218-screenshot006.png]
[Image: 1269353804-screenshot000.png]

Hi yiarkyiark
realy good job... exactly what I was looking for months... finaly we got confluence that is wallpaper friendly....

for all that does not like the left collum /bar so wide, I maked it a bit smaler... only move the home file into the 720p folder
PHP Code:
http://www.megaupload.com/?d=IBD35FRJ 

I would like to remove two buttons left "shutdown" and "play" I would like to leave the favorites only.
any ideas?
find quote
yiarkyiark Offline
Senior Member
Posts: 130
Joined: Nov 2008
Reputation: 2
Location: Paris
Post: #7
In Home.xml remove
Code:
<control type="button" id="20">
                                        <description>Power push button</description>
                                        <posx>90</posx>
                                        <posy>0</posy>
                                        <width>43</width>
                                        <height>43</height>
                                        <label>-</label>
                                        <font>-</font>
                                        <aligny>-</aligny>
                                        <onclick>ActivateWindow(ShutdownMenu)</onclick>
                                        <texturefocus>home-power-FO.png</texturefocus>
                                        <texturenofocus>home-power.png</texturenofocus>
                                        <onleft>21</onleft>
                                        <onright>9000</onright>
                                        <onup>9000</onup>
                                        <ondown>9000</ondown>
                                </control>

and

Code:
<control type="button" id="22">
                                        <description>Play Disc Media push button</description>
                                        <posx>0</posx>
                                        <posy>0</posy>
                                        <width>43</width>
                                        <height>43</height>
                                        <label>-</label>
                                        <font>-</font>
                                        <aligny>-</aligny>
                                        <onclick>XBMC.PlayDVD()</onclick>
                                        <texturefocus>home-playmedia-FO.png</texturefocus>
                                        <texturenofocus>home-playmedia.png</texturenofocus>
                                        <onleft>9000</onleft>
                                        <onright>21</onright>
                                        <onup>9000</onup>
                                        <ondown>9000</ondown>
                                        <visible>System.HasMediaDVD</visible>
                                </control>
                                <control type="button" id="22">
                                        <description>Play Disc Media push button</description>
                                        <posx>0</posx>
                                        <posy>0</posy>
                                        <width>43</width>
                                        <height>43</height>
                                        <label>-</label>
                                        <font>-</font>
                                        <aligny>-</aligny>
                                        <onclick>ActivateWindow(1113)</onclick>
                                        <texturefocus>home-playmedia-FO.png</texturefocus>
                                        <texturenofocus>home-playmedia.png</texturenofocus>
                                        <onleft>9000</onleft>
                                        <onright>21</onright>
                                        <onup>9000</onup>
                                        <ondown>9000</ondown>
                                        <visible>!System.HasMediaDVD</visible>
                                </control>

Have fun !
find quote
slyk2203 Offline
Member
Posts: 54
Joined: Sep 2007
Reputation: 0
Thumbs Up    Post: #8
yiarkyiark Wrote:In Home.xml remove
Code:
<control type="button" id="20">
                                        <description>Power push button</description>
                                        <posx>90</posx>
                                        <posy>0</posy>
                                        <width>43</width>
                                        <height>43</height>
                                        <label>-</label>
                                        <font>-</font>
                                        <aligny>-</aligny>
                                        <onclick>ActivateWindow(ShutdownMenu)</onclick>
                                        <texturefocus>home-power-FO.png</texturefocus>
                                        <texturenofocus>home-power.png</texturenofocus>
                                        <onleft>21</onleft>
                                        <onright>9000</onright>
                                        <onup>9000</onup>
                                        <ondown>9000</ondown>
                                </control>

and

Code:
<control type="button" id="22">
                                        <description>Play Disc Media push button</description>
                                        <posx>0</posx>
                                        <posy>0</posy>
                                        <width>43</width>
                                        <height>43</height>
                                        <label>-</label>
                                        <font>-</font>
                                        <aligny>-</aligny>
                                        <onclick>XBMC.PlayDVD()</onclick>
                                        <texturefocus>home-playmedia-FO.png</texturefocus>
                                        <texturenofocus>home-playmedia.png</texturenofocus>
                                        <onleft>9000</onleft>
                                        <onright>21</onright>
                                        <onup>9000</onup>
                                        <ondown>9000</ondown>
                                        <visible>System.HasMediaDVD</visible>
                                </control>
                                <control type="button" id="22">
                                        <description>Play Disc Media push button</description>
                                        <posx>0</posx>
                                        <posy>0</posy>
                                        <width>43</width>
                                        <height>43</height>
                                        <label>-</label>
                                        <font>-</font>
                                        <aligny>-</aligny>
                                        <onclick>ActivateWindow(1113)</onclick>
                                        <texturefocus>home-playmedia-FO.png</texturefocus>
                                        <texturenofocus>home-playmedia.png</texturenofocus>
                                        <onleft>9000</onleft>
                                        <onright>21</onright>
                                        <onup>9000</onup>
                                        <ondown>9000</ondown>
                                        <visible>!System.HasMediaDVD</visible>
                                </control>

Have fun !

thanks again... you make my day.... :-)
find quote
yiarkyiark Offline
Senior Member
Posts: 130
Joined: Nov 2008
Reputation: 2
Location: Paris
Post: #9
You can find the svn of influence here
Soon a new version with new view for video library
(thks igotdvds)
find quote
slyk2203 Offline
Member
Posts: 54
Joined: Sep 2007
Reputation: 0
Thumbs Up    Post: #10
that´s very cool and in my opinion the best MOD ever.... :-)
find quote
Post Reply