XBMC Community Forum
[MOD] Horizontal Confluence Modded - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Confluence (/forumdisplay.php?fid=125)
+---- Thread: [MOD] Horizontal Confluence Modded (/showthread.php?tid=103001)



- GuyJustHere - 2012-02-01 20:37

Any way to add more items to the "recent Tv shows" or "recent movies" lists? (So it displays more than just 2 shows and 3 movies)?


- mad-max - 2012-02-01 23:47

This was requested before...you might take a look in the thread a few pages before...
There were 4 for every category, I think...

mm


- Voevoda - 2012-02-02 01:07

Amazinggggggggggg that's my fav mod,iv tried a lot of skins but this is the best way far.
There are only few things i dont like but i think its easy to overcome...when im on the xbmc main page,under "FILM" there are too many voices,how can i delete "file" and "actors"? im talking about the sub-menu of FILM,and also about "TV SERIES" there are recently added,title,genres,years,actors. How can i delete "years" and "actors"?? Pls can u help me? It would be amazing without them,i never use them,hope there is an easy way to delete those voices thx a lot however,AMAZING MOD.


- rugbymad - 2012-02-02 10:32

rugbymad Wrote:Update:
I have now managed to switch between both profile, but to do this it has meant having 2 buttons on the home. 1 for "finn" the other for "dad".
obviously when I am on master user profile"dad" I do not want to see the dad button, and when I am on Finn , I do not want to see finn button. how do I hide those respective button on home page?

Also i have no need for the play disk button ever, how do i get rid/hide that?

also i keep having this script common.plugin.cache failure

UPDATE 2'

DELETED THE PLAY DISK PART OF SCRIPT, THIS SEEMS TO HAVE WORKED. sTILL NEED TO WORK OUT HOW TO HIDE A PROFILE BUTTON.

Danke!

Does anybody have any suggestions? I'ts not a deal breaker for me, just makes it look less busy.

danke!


- mad-max - 2012-02-02 12:02

@voevoda:
This is quite simple...when I'm back at a computer I'll show how to do it ..

@rugbymad:
I have a dirty solution for this in mind...will post it later on...

Cheers,
Max


- rugbymad - 2012-02-02 12:46

Cheers Max!


- mad-max - 2012-02-02 13:05

@Voevoda:

You'll find the submenus in 720p/IncludesHomeMenuItems.xml...

For Movies:

delete at line 64:
Code:
        <control type="button" id="90105">
            <include>ButtonHomeSubCommonValues</include>
            <label>744</label>
            <onclick>ActivateWindow(Videos,Files,return)</onclick>
        </control>
and at line 79:
Code:
        <control type="button" id="90166">
            <include>ButtonHomeSubCommonValues</include>
            <label>344</label>
            <onclick>ActivateWindow(Videos,MovieActors,return)</onclick>
        </control>

For TV-shows:

delete at line 111:
Code:
        <control type="button" id="90175">
            <include>ButtonHomeSubCommonValues</include>
            <label>652</label>
            <onclick>ActivateWindow(Videos,TVShowYears,return)</onclick>
        </control>
        <control type="button" id="90176">
            <include>ButtonHomeSubCommonValues</include>
            <label>344</label>
            <onclick>ActivateWindow(Videos,TVShowActors,return)</onclick>
        </control>

Then you're done...

@rugbymad:
You might enter a new toggle-button in the skin settings(custom_ModSettings1114.xml) at line 816:
Code:
                    <control type="radiobutton" id="402">
                        <width>750</width>
                        <height>40</height>
                        <font>font13</font>
                        <label>Kids-Profile</label>
                        <textcolor>grey2</textcolor>
                        <focusedcolor>white</focusedcolor>
                        <texturefocus>MenuItemFO.png</texturefocus>
                        <texturenofocus>MenuItemNF.png</texturenofocus>
                        <onclick>Skin.ToggleSetting(kidsprofile)</onclick>
                        <selected>Skin.HasSetting(kidsprofile)</selected>
                    </control>
In your son's profile activate this setting in your's not...
Then hack the visible condition in your button in home.xml

The button for your profile should then have a
Code:
<visible>Skin.HasSetting(kidsprofile)</visible>
and the one from your son should have
Code:
<visible>!Skin.HasSetting(kidsprofile)</visible>

Then it should be ok...

Hope this helps you guys...

cheers,
Max


- Voevoda - 2012-02-02 13:26

It looks simple thx a lot for your help mad-max, but im not really expert about xbmc,can u tell me where i can find the voice "720p/IncludesHomeMenuItems.xml" ?? I should use the ssh protocol using pc? Or i can access it using the confluence options in the apple tv? Thx 4 your help


- mad-max - 2012-02-02 13:33

Voevoda Wrote:It looks simple thx a lot for your help mad-max, but im not really expert about xbmc,can u tell me where i can find the voice "720p/IncludesHomeMenuItems.xml" ?? I should use the ssh protocol using pc? Or i can access it using the confluence options in the apple tv? Thx 4 your help

The path is:
/private/var/mobile/Library/Preferences/XBMC/addons/skin.moddedconfluence/720p

I suppose to SFTP the xml over to your PC, edit it there with notepad++ and copy it back...

mad-max


- Voevoda - 2012-02-02 13:37

mad-max Wrote:The path is:
/private/var/mobile/Library/Preferences/XBMC/addons/skin.moddedconfluence/720p

I suppose to SFTP the xml over to your PC, edit it there with notepad++ and copy it back...

mad-max
I found it now i try to delete the voices thx again : )