![]() |
|
Skinning for beginners - Foundation skin, skinning tools, and tips - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Skin Development (/forumdisplay.php?fid=12) +--- Thread: Skinning for beginners - Foundation skin, skinning tools, and tips (/showthread.php?tid=94438) |
- vogelap - 2012-01-17 18:09 That worked. Thank you, and thank you for the fine Foundation skin! - Hitcher - 2012-01-17 18:11 It'll need updating some when for Eden mind. - JustJv - 2012-02-07 22:54 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. - doestergaard - 2012-02-29 18:23 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! - Hitcher - 2012-03-01 17:35 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.
- Hitcher - 2012-03-01 21:43 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 RE: [RELEASE] Foundation (Eden version) - Basic skin for beginners - Hitcher - 2012-03-14 12:54 Added more debug info - ![]() Top right = current focused control Bottom right = container folder path RE: [RELEASE] Foundation (Eden version) - Basic skin for beginners - dm85 - 2012-03-16 15:15 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> RE: [RELEASE] Foundation (Eden version) - Basic skin for beginners - Hitcher - 2012-03-16 16:25 There aren't images in your items. RE: [RELEASE] Foundation (Eden version) - Basic skin for beginners - dm85 - 2012-03-16 17:05 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 |