Skinning for beginners - Foundation skin, skinning tools, and tips
vogelap
Junior Member Joined: Dec 2008 Reputation: 0 Location: Cincinnati, Ohio USA |
2012-01-17 18:09
Post: #71
That worked. Thank you, and thank you for the fine Foundation skin!
|
| find quote |
Hitcher
Skilled Skinner Joined: Aug 2007 Reputation: 67 Location: Eastleigh, UK |
2012-01-17 18:11
Post: #72
It'll need updating some when for Eden mind.
![]() |
| find quote |
JustJv
Junior Member Posts: 5 Joined: Feb 2012 Reputation: 0 |
2012-02-07 22:54
Post: #73
I used this as a 'base' for my skin but when creating a 4:3 resolution 'folder' the fonts somehow don't show up anymore.. Any ideas ?
I also made a thread about it here: http://forum.xbmc.org/showthread.php?tid=122237 Thanks alot, Jv. |
| find quote |
doestergaard
Member Posts: 83 Joined: Mar 2011 Reputation: 1 Location: Denmark |
2012-02-29 18:23
Post: #74
Hi Hitcher, is Foundation Eden compatible? I'm currently coding my own skin with this as base/learning. Is it something that I can do by myself or do I need to wait on a Eden release of Foundation?
Cheers!
(This post was last modified: 2012-02-29 18:26 by doestergaard.)
|
| find quote |
Hitcher
Skilled Skinner Joined: Aug 2007 Reputation: 67 Location: Eastleigh, UK |
2012-03-01 17:35
Post: #75
doestergaard Wrote:Hi Hitcher, is Foundation Eden compatible? I'm currently coding my own skin with this as base/learning. Is it something that I can do by myself or do I need to wait on a Eden release of Foundation? Updating for Eden as I type.
![]() |
| find quote |
Hitcher
Skilled Skinner Joined: Aug 2007 Reputation: 67 Location: Eastleigh, UK |
2012-03-01 21:43
Post: #76
Eden Update
Changelog - 2.0.0 Changed: Debug grid and Window/Dialog label handling (see Custom_Debug_Overlay.xml) Changed: Activate Video window controls Changed: DialogContextMenu.xml Changed: DialogButtonMenu.xml Added: DialogPeripheralManager.xml Added: DialogPeripheralSettings.xml Added: DialogPeripheralManager.jpg Added: DialogPeripheralSettings.jpg Removed: MyVideo.xml Removed: MyVideo.jpg ![]() |
| find quote |
Hitcher
Skilled Skinner Joined: Aug 2007 Reputation: 67 Location: Eastleigh, UK |
2012-03-14 12:54
Post: #77
![]() |
| find quote |
dm85
Junior Member Posts: 3 Joined: Mar 2012 Reputation: 0 |
2012-03-16 15:15
Post: #78
Hi There,
I'm trying to use your example of adding a BG image from two pages back and I'm not having much success. Is there something I need to turn off in another part of the XML? Please see code - <!-- Foundation --> - <window id="0"> <defaultcontrol always="true">300</defaultcontrol> <allowoverlay>yes</allowoverlay> - <controls> <include>GlobalBackground</include> - <control type="wraplist" id="300"> <description>Home Wraplist</description> <posx>0</posx> <posy>108</posy> <width>1920</width> <height>846</height> <onup>300</onup> <ondown>300</ondown> <onleft>300</onleft> <onright>300</onright> <focusposition>5</focusposition> <scrolltime>200</scrolltime> - <itemlayout width="540" height="75"> - <control type="label"> <posx>960</posx> <height>75</height> <width>375</width> <font>Medium</font> <info>ListItem.Label</info> <align>center</align> </control> </itemlayout> - <focusedlayout width="810" height="96"> - <control type="label"> <posx>960</posx> <width>810</width> <height>96</height> <info>ListItem.Label</info> <font>Home</font> <textcolor>Blue</textcolor> <align>center</align> </control> - <control type="image"> <posx>0</posx> <posy>0</posy> <width>1920</width> <height>1080</height> <texture background="true">$INFO[Container(300).ListItem.Icon]</texture> <fadetime>600</fadetime> </control> </focusedlayout> - <content> - <item id="1"> <description>Programs</description> <label>31002</label> <icon>backgrounds/programs-1080.jpg</icon> <onclick>ActivateWindow(Programs,Addons)</onclick> </item> - <item id="2"> <description>Videos</description> <label>31003</label> <onclick>ActivateWindow(Video,Files)</onclick> </item> - <item id="3"> <description>Music</description> <label>31004</label> <onclick>ActivateWindow(Music)</onclick> </item> - <item id="4"> <description>Pictures</description> <label>31005</label> <onclick>ActivateWindow(Pictures)</onclick> </item> - <item id="5"> <description>Movies</description> <label>31006</label> <onclick>ActivateWindow(Video,movietitles)</onclick> <visible>Library.HasContent(Movies)</visible> </item> - <item id="6"> <description>TV Shows</description> <label>31007</label> <onclick>ActivateWindow(Video,tvshowtitles)</onclick> <visible>Library.HasContent(TVShows)</visible> </item> - <item id="7"> <description>Favourites</description> <label>31008</label> <onclick>ActivateWindow(Favourites)</onclick> </item> - <item id="8"> <description>Profiles</description> <label>31009</label> <onclick>ActivateWindow(Profiles)</onclick> </item> - <item id="9"> <description>Weather</description> <label>31010</label> <onclick>ActivateWindow(weather)</onclick> </item> - <item id="10"> <description>File manager</description> <label>31011</label> <onclick>ActivateWindow(filemanager)</onclick> </item> - <item id="11"> <description>Settings</description> <label>31012</label> <onclick>ActivateWindow(settings)</onclick> </item> - <item id="12"> <description>Shutdown</description> <label>31013</label> <onclick>ActivateWindow(shutdownmenu)</onclick> </item> - <item id="13"> <description>Play Disc</description> <label>31014</label> <onclick>PlayDVD</onclick> <visible>System.HasMediadvd</visible> </item> </content> </control> - <control type="rss"> <description>RSS Feed</description> <posx>0</posx> <posy>1035</posy> <width>1920</width> <height>21</height> <font>Small</font> <urlset>1</urlset> <titlecolor>Red</titlecolor> <headlinecolor>White</headlinecolor> <textcolor>White</textcolor> </control> </controls> </window> |
| find quote |
Hitcher
Skilled Skinner Joined: Aug 2007 Reputation: 67 Location: Eastleigh, UK |
2012-03-16 16:25
Post: #79
There aren't images in your items.
![]() |
| find quote |
dm85
Junior Member Posts: 3 Joined: Mar 2012 Reputation: 0 |
2012-03-16 17:05
Post: #80
Is this not instructing it to use said image?
- <item id="1"> <description>Programs</description> <label>31002</label> <icon>backgrounds/programs-1080.jpg</icon> <onclick>ActivateWindow(Programs,Addons)</onclick> Thanks |
| find quote |

![[Image: sig_zps3af3b48e.jpg]](http://i620.photobucket.com/albums/tt289/Arcanthur/Celestium/sig_zps3af3b48e.jpg)
![[Image: dialogperipheralmanager.jpg]](http://img818.imageshack.us/img818/3717/dialogperipheralmanager.jpg)
![[Image: dialogperipheralsetting.jpg]](http://img853.imageshack.us/img853/6176/dialogperipheralsetting.jpg)
![[Image: screenshot000zo.jpg]](http://img444.imageshack.us/img444/4493/screenshot000zo.jpg)
Search
Help