• 1
  • 90
  • 91
  • 92(current)
  • 93
  • 94
  • 117
CCM - Confluence Customizable Mod
(2014-08-24, 14:26)IchBinLuda Wrote: The link is broken. Can you repost?

Sure:

http://www.2shared.com/file/9QeeUK4k/CCM...edtar.html

(2014-08-22, 12:58)Angelinas Wrote: New stabil version of Kodi 14 is near ,I started to change this version of skin CCM.

Changes in Helix...(many of big changes)

http://forum.xbmc.org/showthread.php?tid=194515
I change PVR (liveTV) ,becouse this TV have rewriten by xhaggi http://forum.xbmc.org/showthread.php?tid...754042,and work well.
New in Helix is to use can change view of TV channels
Concept of view is different from video,music,addonn...I must built from begenning all new views (old is visible in ID="50")
Old confluence for Helix ,have only one view...List id "50",CCM will have all Smile
I try to make to CCM view :BigList,Posters,Logo,BigLogo,Lendscape,Wall,3DWall.....

Cool.

Would it be possible to make the skin with the option of having 7 icons instead of 5? That is really the one thing about others I miss in this skin.

Also, I have customized the skin for my own use (look at link above), and I am curious if there is a way to incorporate my guisetings.xml contents into the default of the skin.
Reply
As i understand there is a repo you can use. Apply as developer and you will be able to commit your changes and author will check them and merge.
Reply
Mudislander,

is this http://forum.xbmc.org/showthread.php?tid...pid1126433 possible in CCM? Nod
Reply
Is there any way of getting rid of the triangle that signal something thats been a little watched?

Its on the highlighted file here-
http://i60.tinypic.com/2v1oljp.png


I also wonder if the media flags to display?

For instance at bottom of PM3-HD it has resolution, Video/Audio codec-
http://i61.tinypic.com/9ulv61.png
And Slik-
http://i61.tinypic.com/dwc21y.png

But they do not seem to show up in any Confluence version-
http://i62.tinypic.com/r9obdi.png

Is there any way of getting the same to happen in confluence or perhaps some option or something which i am missing that prevents these from showing up?

I really like using the confluence skin & it would be useful to have this feature, i thank in advance for any assistance.
Reply
Just curious.. is there an "easy" way to get 7 addon shortcuts (insetad of 5) with this skin?
Reply
Is there anyway of changing the color instead of black the main bar. If so walk me thru it.

Is there a way of changing the xbmc logo on the top left corner so somwthing of my own. If so how so...

Im on a mac os.
Reply
(2014-09-02, 03:41)hyp0xia Wrote: Just curious.. is there an "easy" way to get 7 addon shortcuts (insetad of 5) with this skin?
"easy" is the world that I like Smile
find xml
IncludesHomeAddOnSystem.xml in 720s folder
delete line 299 and 300 :
</include>
<include name="HomeAddonSetTwo">

This will add Set one and two in one big add on set.
in XBMC chose addon in System/Skin settings - Addon like in picture(User selection one and two)
rest is cosmetics
Image

PVR is working on helix
http://forum.xbmc.org/showthread.php?tid...pid1786415

(2014-08-29, 09:06)xbmcwayist Wrote: Would it be possible to make the skin with the option of having 7 icons instead of 5? That is really the one thing about others I miss in this skin.

Also, I have customized the skin for my own use (look at link above), and I am curious if there is a way to incorporate my guisetings.xml contents into the default of the skin.
Try to change xml files....experiment with <width> & <height>
I just half of values "height="220" width="180" in height="110" width="90">
in IncludesHomeWidget.xml for RecentVideo see the resultat
Image
XBoxMediaCenter (Kodi Matrix ) 19.3 , AndroidBox -Matrix Skin AeonMQ6
Reply
(2014-09-02, 21:30)Angelinas Wrote: Try to change xml files....experiment with <width> & <height>
I just half of values "height="220" width="180" in height="110" width="90">
in IncludesHomeWidget.xml for RecentVideo see the resultat

Thanks for the suggestion. I will look into this. Although, as I didn't really ask about this, I am not sure why you gave me this info on changing the RecentVideo list.
Reply
7 ICON OPTION FOR THIS SKIN:


Copy the following two files to the skin's '720p' folder, overwriting the ones already there (backup first, if you want to):

'IncludesHomeAddOnSystem.xml':
http://www.2shared.com/document/b3nacN3V...ystem.html

'SkinSettings.xml':
http://www.2shared.com/document/1f9l3IkT...tings.html


Here's what I did:

Using the suggestion by Angelinas in a previous post in regards to how to easily change this skin to 7 addon shortcuts, I actually was able to figure out how to do make this skin have 7 icons. Note: As the creator of this skin did not put in 7, this is not really a fix. Just a tweak to get 7.

Using the 'IncludesHomeAddOnSystem.xml' that is found in the 720p folder, I just changed the following for every AddonSet:

Code:
        <item>
            <label>$INFO[Skin.String(AddonSetFour.5.Label)]</label>
            <onclick>$INFO[Skin.String(AddonSetFour.5.Path)]</onclick>
            <icon>DefaultAddon.png</icon>
            <thumb>$INFO[Skin.String(AddonSetFour.5.icon)]</thumb>
            <visible>!IsEmpty(Skin.String(AddonSetFour.5.Path))</visible>
        </item>

to:


Code:
        <item>
            <label>$INFO[Skin.String(AddonSetFour.5.Label)]</label>
            <onclick>$INFO[Skin.String(AddonSetFour.5.Path)]</onclick>
            <icon>DefaultAddon.png</icon>
            <thumb>$INFO[Skin.String(AddonSetFour.5.icon)]</thumb>
            <visible>!IsEmpty(Skin.String(AddonSetFour.5.Path))</visible>
        </item>
        <item>
            <label>$INFO[Skin.String(AddonSetFour.6.Label)]</label>
            <onclick>$INFO[Skin.String(AddonSetFour.6.Path)]</onclick>
            <icon>DefaultAddon.png</icon>
            <thumb>$INFO[Skin.String(AddonSetFour.6.icon)]</thumb>
            <visible>!IsEmpty(Skin.String(AddonSetFour.6.Path))</visible>
        </item>
        <item>
            <label>$INFO[Skin.String(AddonSetFour.7.Label)]</label>
            <onclick>$INFO[Skin.String(AddonSetFour.7.Path)]</onclick>
            <icon>DefaultAddon.png</icon>
            <thumb>$INFO[Skin.String(AddonSetFour.7.icon)]</thumb>
            <visible>!IsEmpty(Skin.String(AddonSetFour.7.Path))</visible>
        </item>

Also in that xml, I changed the following as well:

Code:
        <movement>2</movement>

to:

Code:
        <movement>3</movement>

....and.... then, in 'SkinSettings.xml', I changed the following for every AddonSet as well:

Code:
                        <control type="button" id="706">
                            <width>750</width>
                            <height>40</height>
                            <font>font13</font>
                            <label>$LOCALIZE[24000] [B]5[/B]</label>
                            <label2>[COLOR=selected]$INFO[Skin.String(AddonSetOne.5.Label)][/COLOR]</label2>
                            <textcolor>grey2</textcolor>
                            <focusedcolor>white</focusedcolor>
                            <texturefocus>MenuItemFO.png</texturefocus>
                            <texturenofocus>MenuItemNF.png</texturenofocus>
                            <onclick>SetProperty(UsrSelectBtn,AddonSetOne.5,home)</onclick>
                            <onclick>ActivateWindow(2119)</onclick>
                        </control>

to:

Code:
                        <control type="button" id="706">
                            <width>750</width>
                            <height>40</height>
                            <font>font13</font>
                            <label>$LOCALIZE[24000] [B]5[/B]</label>
                            <label2>[COLOR=selected]$INFO[Skin.String(AddonSetOne.5.Label)][/COLOR]</label2>
                            <textcolor>grey2</textcolor>
                            <focusedcolor>white</focusedcolor>
                            <texturefocus>MenuItemFO.png</texturefocus>
                            <texturenofocus>MenuItemNF.png</texturenofocus>
                            <onclick>SetProperty(UsrSelectBtn,AddonSetOne.5,home)</onclick>
                            <onclick>ActivateWindow(2119)</onclick>
                        </control>
                        <control type="button" id="999">
                            <width>750</width>
                            <height>40</height>
                            <font>font13</font>
                            <label>$LOCALIZE[24000] [B]6[/B]</label>
                            <label2>[COLOR=selected]$INFO[Skin.String(AddonSetOne.6.Label)][/COLOR]</label2>
                            <textcolor>grey2</textcolor>
                            <focusedcolor>white</focusedcolor>
                            <texturefocus>MenuItemFO.png</texturefocus>
                            <texturenofocus>MenuItemNF.png</texturenofocus>
                            <onclick>SetProperty(UsrSelectBtn,AddonSetOne.6,home)</onclick>
                            <onclick>ActivateWindow(2119)</onclick>
                        </control>
                        <control type="button" id="998">
                            <width>750</width>
                            <height>40</height>
                            <font>font13</font>
                            <label>$LOCALIZE[24000] [B]7[/B]</label>
                            <label2>[COLOR=selected]$INFO[Skin.String(AddonSetOne.7.Label)][/COLOR]</label2>
                            <textcolor>grey2</textcolor>
                            <focusedcolor>white</focusedcolor>
                            <texturefocus>MenuItemFO.png</texturefocus>
                            <texturenofocus>MenuItemNF.png</texturenofocus>
                            <onclick>SetProperty(UsrSelectBtn,AddonSetOne.7,home)</onclick>
                            <onclick>ActivateWindow(2119)</onclick>
                        </control>

For each '<control type="button" id="XXX">' I added, to ensure the number did not conflict with any other already in the file, I just started from '999' and worked backwards. It seems to work.
Reply
(2014-09-03, 10:26)xbmcwayist Wrote: 7 ICON OPTION FOR THIS SKIN:


Copy the following two files to the skin's '720p' folder, overwriting the ones already there (backup first, if you want to):

.....

That's pretty awesome xbmcwayist. Thanks so much for taking the time to post up your changes. I'll be using this right away and I'm sure many others.

Cheers man
Reply
Is this skin already compatible with kodi helix alpha 4?

i want to use it on my cubox -i pro
Reply
^^^^ it's working for me
Reply
In a pure passive way (just browsing, watching, listening) CCM still works on latest Kodi builds, but, due to changes in the code, some things don't work anymore. The visual keyboard appears blank, so you can't add/edit the library. Also, you can't change media scrapers once they had been set on another skin. That's the problems I've found, there may be more but that's already a showstopper for me.
Reply
(2014-09-07, 00:35)hyp0xia Wrote: That's pretty awesome xbmcwayist. Thanks so much for taking the time to post up your changes. I'll be using this right away and I'm sure many others.

Cheers man

Sure, no problem. Having a 7-icon option was just one of those things I figured would be great for this skin. Glad someone else can make use of my tweaks too.
Reply
(2014-09-07, 12:17)Pienoet Wrote: Is this skin already compatible with kodi helix alpha 4?

i want to use it on my cubox -i pro
It works,however I think it's missing the on screen keyboard
Reply
  • 1
  • 90
  • 91
  • 92(current)
  • 93
  • 94
  • 117

Logout Mark Read Team Forum Stats Members Help
CCM - Confluence Customizable Mod11