Question on multiple skins
#1
Exclamation 
so here is what I am wanting to do. You all tell me if it's fessble or not.

I am wanting to combine 4 skins into one.

This is what i would need to use for the movie page (Black Glass Nova skin):
Image

And this one would be used for the game page (Aura skin):
Image

This one would be used for the live tv guide page (Estuary skin):
Image

and finally this would be the main menu ( GRID skin) :
Image

All other pages (add-ons, pictures, movies, videos, etc...).can be hidden or deleted. Just need to keep the settings page.

So, can this be done?
Reply
#2
Anything can be done, but just as a mashup don't think so.  I suggest starting with the skin you use the most and add views to get the look and feel you want in specific windows.  Most skins now are designed around 1920x1080 nominal display so control placement shouldn't be a big problem, but you have to go through includes, variables, defaults, fonts, etc and resolve those prior to reusing any skin code.

scott s.
.
Reply
#3
movie page View_51_Poster.xml
game this could be done View_54_InfoWall.xml Estuary skin   https://forum.kodi.tv/showthread.php?tid=313428
 tv guide page start with Estuary skin
main menu  Estuary skin 
xml:
<control id="9000" type="fixedlist"> <left>0</left> <top>240</top> <width>462</width> <bottom>-10</bottom> <movement>6</movement> <focusposition>0</focusposition> <onfocus>ClearProperty(listposition,home)</onfocus> <onright>SetFocus($INFO[Container(9000).ListItem.Property(menu_id)])</onright> <onup>700</onup> <ondown>700</ondown> <scrolltime tween="cubic" easing="out">500</scrolltime> <focusedlayout height="95"> <control type="group"> <animation end="0" start="100" time="0" effect="fade">UnFocus</animation> <control type="image"> <left>0</left> <top>0</top> <width>462</width> <height>95</height> <texture colordiffuse="button_focus">lists/focus.png</texture> <animation end="0" start="100" time="0" effect="fade" condition="[!Control.HasFocus(9000) + !ControlGroup(700).HasFocus] | System.HasActiveModalDialog">Conditional</animation> </control> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture colordiffuse="button_focus">$INFO[ListItem.Art(thumb)]</texture> <animation end="100" start="0" time="300" effect="fade" reversible="false">Focus</animation> </control> <control type="image"> <left>0</left> <top>0</top> <width>500</width> <height>110</height> <texture colordiffuse="51FFFFFF">colors/black.png</texture> <animation end="0" start="100" time="0" effect="fade" condition="[!Control.HasFocus(9000) + !ControlGroup(700).HasFocus] | System.HasActiveModalDialog">Conditional</animation> </control> </control> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture>$INFO[ListItem.Art(thumb)]</texture> </control> <control type="label"> <left>104</left> <top>0</top> <height>95</height> <width>560</width> <aligny>center</aligny> <font>font37</font><label/> <shadowcolor>text_shadow</shadowcolor> </control> </focusedlayout> <itemlayout height="95"> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture colordiffuse="44FFFFFF">$INFO[ListItem.Art(thumb)]</texture> </control> <control type="label"> <left>104</left> <top>0</top> <height>95</height> <width>560</width> <aligny>center</aligny> <font>font37</font><label/> <shadowcolor>text_shadow</shadowcolor> </control> </itemlayout> <content>

Image
 https://forum.kodi.tv/showthread.php?tid=350044
Reply
#4
(2020-04-27, 03:24)the_other_guy Wrote: movie page View_51_Poster.xml
game this could be done View_54_InfoWall.xml Estuary skin   https://forum.kodi.tv/showthread.php?tid=313428
 tv guide page start with Estuary skin
main menu  Estuary skin 
xml:
<control id="9000" type="fixedlist"> <left>0</left> <top>240</top> <width>462</width> <bottom>-10</bottom> <movement>6</movement> <focusposition>0</focusposition> <onfocus>ClearProperty(listposition,home)</onfocus> <onright>SetFocus($INFO[Container(9000).ListItem.Property(menu_id)])</onright> <onup>700</onup> <ondown>700</ondown> <scrolltime tween="cubic" easing="out">500</scrolltime> <focusedlayout height="95"> <control type="group"> <animation end="0" start="100" time="0" effect="fade">UnFocus</animation> <control type="image"> <left>0</left> <top>0</top> <width>462</width> <height>95</height> <texture colordiffuse="button_focus">lists/focus.png</texture> <animation end="0" start="100" time="0" effect="fade" condition="[!Control.HasFocus(9000) + !ControlGroup(700).HasFocus] | System.HasActiveModalDialog">Conditional</animation> </control> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture colordiffuse="button_focus">$INFO[ListItem.Art(thumb)]</texture> <animation end="100" start="0" time="300" effect="fade" reversible="false">Focus</animation> </control> <control type="image"> <left>0</left> <top>0</top> <width>500</width> <height>110</height> <texture colordiffuse="51FFFFFF">colors/black.png</texture> <animation end="0" start="100" time="0" effect="fade" condition="[!Control.HasFocus(9000) + !ControlGroup(700).HasFocus] | System.HasActiveModalDialog">Conditional</animation> </control> </control> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture>$INFO[ListItem.Art(thumb)]</texture> </control> <control type="label"> <left>104</left> <top>0</top> <height>95</height> <width>560</width> <aligny>center</aligny> <font>font37</font><label/> <shadowcolor>text_shadow</shadowcolor> </control> </focusedlayout> <itemlayout height="95"> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture colordiffuse="44FFFFFF">$INFO[ListItem.Art(thumb)]</texture> </control> <control type="label"> <left>104</left> <top>0</top> <height>95</height> <width>560</width> <aligny>center</aligny> <font>font37</font><label/> <shadowcolor>text_shadow</shadowcolor> </control> </itemlayout> <content>

Image
 https://forum.kodi.tv/showthread.php?tid=350044

The main page is GRID.
Reply
#5
(2020-04-27, 18:30)stealthrt Wrote:
(2020-04-27, 03:24)the_other_guy Wrote: movie page View_51_Poster.xml
game this could be done View_54_InfoWall.xml Estuary skin   https://forum.kodi.tv/showthread.php?tid=313428
 tv guide page start with Estuary skin
main menu  Estuary skin 
xml:
<control id="9000" type="fixedlist"> <left>0</left> <top>240</top> <width>462</width> <bottom>-10</bottom> <movement>6</movement> <focusposition>0</focusposition> <onfocus>ClearProperty(listposition,home)</onfocus> <onright>SetFocus($INFO[Container(9000).ListItem.Property(menu_id)])</onright> <onup>700</onup> <ondown>700</ondown> <scrolltime tween="cubic" easing="out">500</scrolltime> <focusedlayout height="95"> <control type="group"> <animation end="0" start="100" time="0" effect="fade">UnFocus</animation> <control type="image"> <left>0</left> <top>0</top> <width>462</width> <height>95</height> <texture colordiffuse="button_focus">lists/focus.png</texture> <animation end="0" start="100" time="0" effect="fade" condition="[!Control.HasFocus(9000) + !ControlGroup(700).HasFocus] | System.HasActiveModalDialog">Conditional</animation> </control> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture colordiffuse="button_focus">$INFO[ListItem.Art(thumb)]</texture> <animation end="100" start="0" time="300" effect="fade" reversible="false">Focus</animation> </control> <control type="image"> <left>0</left> <top>0</top> <width>500</width> <height>110</height> <texture colordiffuse="51FFFFFF">colors/black.png</texture> <animation end="0" start="100" time="0" effect="fade" condition="[!Control.HasFocus(9000) + !ControlGroup(700).HasFocus] | System.HasActiveModalDialog">Conditional</animation> </control> </control> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture>$INFO[ListItem.Art(thumb)]</texture> </control> <control type="label"> <left>104</left> <top>0</top> <height>95</height> <width>560</width> <aligny>center</aligny> <font>font37</font><label/> <shadowcolor>text_shadow</shadowcolor> </control> </focusedlayout> <itemlayout height="95"> <control type="image"> <left>-3</left> <top>1</top> <width>500</width> <height>110</height> <texture colordiffuse="44FFFFFF">$INFO[ListItem.Art(thumb)]</texture> </control> <control type="label"> <left>104</left> <top>0</top> <height>95</height> <width>560</width> <aligny>center</aligny> <font>font37</font><label/> <shadowcolor>text_shadow</shadowcolor> </control> </itemlayout> <content>
Image
 https://forum.kodi.tv/showthread.php?tid=350044

The main page is GRID.  

so you asked how to do it ?

this image is a estuary menu with how to make it look like  GRID
Reply
#6
I was just correcting your mistake so others would not get confused.
Image
Reply

Logout Mark Read Team Forum Stats Members Help
Question on multiple skins0