Added:
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/background-ani.gif (contents, props changed)
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Media/gamevideos.png (contents, props changed)
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Media/xbmcupdater.png (contents, props changed)
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1114_LiveHome.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1115_GuideFavorites.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1969_FavoritesConfig.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1970_GuideSkinModOptions2.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL16x9/custom1114_LiveHome.xml
Removed:
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/ComedyCentral/comcenbg.png
Modified:
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/default.py
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/ComedyCentral/default.py
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/G4tv.com xbmcCAST/default.py
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/lib/GameTrailers.py
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1977_CategoryConfig6.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1978_CategoryConfig5.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1979_CategoryConfig4.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1980_CategoryConfig3.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1981_CategoryConfig2.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1982_CategoryConfig1.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1112_GamesHome.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1113_XBMCLivePlace.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1116_GuidePersonal.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1974_VideoMarketplace2.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1996_VideoMarketplace.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL16x9/custom1112_GamesHome.xml
Log:
[MC360 Mod] Added: In-Skin Favorites Config
Added: Skin Mod Options 2 window (ran out of space in Skin Mod Options)
Added: "Disable Kai Info" option - Removes Kai buttons from XBMC Live blade, and replaces it with Buttons to File Manager, Scripts, and Weather
Added: "XBMC Updater in Live Place" option - toggles between having the now default Apple Movie Trailers link in XBMC Live Place, or the T3ch XBMC Updater
Added: Custom button in Games blade (aka Homebrew Button) - Allows you to add button in games blade that links to a script, program, dashboard, or game of your choice, and also allows you to name it (Note: "Video Marketplace in Games" overides this option)
Fixed: Messed up navigation in Category Scripts Mode configuration screen
Modified: Added Custom Background and background animation support to scripts
Modified: Changed text in CNN script to black for better visibility
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/default.py
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/default.py (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/default.py Sat Apr 21 17:45:26 2007
@@ -73,7 +73,7 @@
#------------------------------------------------------------------
-ROOT_DIR = os.getcwd()[:-1]+'\\'
+ROOT_DIR = os.getcwd()[:-1]+'\\'
import feedparser
Dependencies = ["time"]
@@ -183,8 +183,18 @@
class CNNBrowser(xbmcgui.Window):
def __init__(self):
self.setCoordinateResolution(COORD_NTSC_4X3)
+
+
+ # background animation
+ self.imgBackgroundani = xbmcgui.ControlImage(0, 0, 720, 476, "Q:\\Skin\\MC360\\Extras\\background-ani.gif")
+ self.addControl(self.imgBackgroundani)
# background image
- self.addControl(xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue.png'))
+ self.imgBackgroundBlue = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue-alpha.png')
+ self.addControl(self.imgBackgroundBlue)
+ # custom background image
+ self.imgCustomBackground = xbmcgui.ControlImage(0, 0, 720, 576, xbmc.getInfoLabel('Skin.String(Media)'))
+ self.addControl(self.imgCustomBackground)
+ self.imgCustomBackground.setColorDiffuse('D1FFFFFF')
# Whitewash glass top left
self.addControl(xbmcgui.ControlImage(70, 0, 16, 64, 'bkgd-whitewash-glass-top-left.png'))
# Whitewash glass top middle
@@ -217,12 +227,12 @@
self.addControl(xbmcgui.ControlImage(633, 440, 21, 21, 'button-A.png'))
# Header Blade
self.addControl(xbmcgui.ControlImage(18, 0, 80, 476, 'blades-size4-header.png'))
- self.lstVideos = xbmcgui.ControlList(290,63,375,390,imageWidth=30,imageHeight=30)
+ self.lstVideos = xbmcgui.ControlList(290,63,375,390,imageWidth=30, textColor='0xFF000000', imageHeight=30)
self.addControl(self.lstVideos)
self.setFocus(self.lstVideos)
self.makeButtons()
self.addControl(xbmcgui.ControlImage(80, 10, 122, 53,ROOT_DIR + 'default.tbn'))
- self.lblDescription = xbmcgui.ControlTextBox(221,25,455,5000,'font12','FFFFFFFF')
+ self.lblDescription = xbmcgui.ControlTextBox(221,25,455,5000,'font12','0xFFFFFFFF')
self.addControl(self.lblDescription)
self.currentCategory = 0
self.addControl(xbmcgui.ControlLabel(79,129,100,20,'media','font14','0xFF000000',angle=270))
@@ -233,7 +243,7 @@
def makeButtons(self):
self.btnCategories = []
for i in range(len(CATEGORIES)):
- btn = xbmcgui.ControlButton(85, 80+27*i, 140, 27, CATEGORIES[i],textXOffset=17)
+ btn = xbmcgui.ControlButton(85, 80+27*i, 140, 27, CATEGORIES[i], textColor='0xFF000000', textXOffset=17)
self.addControl(btn)
self.btnCategories.append(btn)
@@ -309,8 +319,8 @@
def filterList(self, idx):
LOG("selecting " + str(idx))
- self.btnCategories[self.currentCategory].setLabel(CATEGORIES[self.currentCategory], "font13", "FF000000")
- self.btnCategories[idx].setLabel(CATEGORIES[idx], "font13", "FF000000")
+ self.btnCategories[self.currentCategory].setLabel(CATEGORIES[self.currentCategory], "font13", "0xFF000000")
+ self.btnCategories[idx].setLabel(CATEGORIES[idx], "font13",'0xFF000000')
self.currentCategory = idx
self.filterListOn(CATEGORIES[idx].lower())
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/ComedyCentral/default.py
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/ComedyCentral/default.py (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/ComedyCentral/default.py Sat Apr 21 17:45:26 2007
@@ -35,18 +35,7 @@
ACTION_PAUSE = 12
ACTION_STOP = 13
ACTION_NEXT_ITEM = 14
-ACTION_PREV_ITEM = 15
-
-COORD_1080I = 0
-COORD_720P = 1
-COORD_480P_4X3 = 2
-COORD_480P_16X9 = 3
-COORD_NTSC_4X3 = 4
-COORD_NTSC_16X9 = 5
-COORD_PAL_4X3 = 6
-COORD_PAL_16X9 = 7
-COORD_PAL60_4X3 = 8
-COORD_PAL60_16X9 = 9
+ACTION_PREV_ITEM = 15
######################################################################
@@ -588,12 +577,20 @@
def __init__(self):
if Emulating: xbmcgui.Window.__init__(self)
- self.setCoordinateResolution(COORD_NTSC_4X3)
+
+ # background animation
+ self.imgBackgroundani = xbmcgui.ControlImage(0, 0, 720, 476, "Q:\\skin\\MC360\\Extras\\background-ani.gif")
+ self.addControl(self.imgBackgroundani)
# background image
- self.imgBackground = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue.png')
+ self.imgBackground = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue-alpha.png')
self.addControl(self.imgBackground)
+ # custom background image
+ self.imgCustomBackground = xbmcgui.ControlImage(0, 0, 720, 576, xbmc.getInfoLabel('Skin.String(Media)'))
+ self.addControl(self.imgCustomBackground)
+ self.imgCustomBackground.setColorDiffuse('D1FFFFFF')
+
# Whitewash glass top left
self.imgWhiteTL = xbmcgui.ControlImage(70, 0, 16, 64, 'bkgd-whitewash-glass-top-left.png')
self.addControl(self.imgWhiteTL)
@@ -658,10 +655,15 @@
self.imgabutton = xbmcgui.ControlImage(633, 440, 21, 21, 'button-A.png')
self.addControl(self.imgabutton)
- self.addControl(xbmcgui.ControlLabel(79,129,100,20,'media','font14','0xFF000000',angle=270))
- self.addControl(xbmcgui.ControlLabel(145,443,375,20,'Full Screen Visualization','font12','0xFFFFFFFF'))
- self.addControl(xbmcgui.ControlLabel(580,423,80,20,'Back','font12','0xFFFFFFFF'))
- self.addControl(xbmcgui.ControlLabel(577,443,80,20,'Select','font12','0xFFFFFFFF'))
+ self.medialabel = xbmcgui.ControlLabel(79,129,100,20,'media','font14','0xFF000000',angle=270)
+ self.vislabel = xbmcgui.ControlLabel(145,443,375,20,'Full Screen Visualization','font12','0xFFFFFFFF')
+ self.backlabel = xbmcgui.ControlLabel(580,423,80,20,'Back','font12','0xFFFFFFFF')
+ self.selectlabel = xbmcgui.ControlLabel(577,443,80,20,'Select','font12','0xFFFFFFFF')
+
+ self.addControl(self.medialabel)
+ self.addControl(self.vislabel)
+ self.addControl(self.backlabel)
+ self.addControl(self.selectlabel)
self.title = xbmcgui.ControlLabel(90, 30, 576, 40, "", "font18", "0xFFFFFFFF")
self.addControl(self.title)
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/G4tv.com xbmcCAST/default.py
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/G4tv.com xbmcCAST/default.py (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/G4tv.com xbmcCAST/default.py Sat Apr 21 17:45:26 2007
@@ -87,9 +87,17 @@
W = self.getWidth()
H = self.getHeight()
LOG("Image: " + IMAGE_DIR + 'background.png')
+ # background animation
+ self.imgBackgroundani = xbmcgui.ControlImage(0, 0, 720, 476, "Q:\\Skin\\MC360\\Extras\\background-ani.gif")
+ self.addControl(self.imgBackgroundani)
+
# background image
- self.imgBackground = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue.png')
- self.addControl(self.imgBackground)
+ self.imgBackgroundBlue = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue-alpha.png')
+ self.addControl(self.imgBackgroundBlue)
+ # custom background image
+ self.imgCustomBackground = xbmcgui.ControlImage(0, 0, 720, 576, xbmc.getInfoLabel('Skin.String(Media)'))
+ self.addControl(self.imgCustomBackground)
+ self.imgCustomBackground.setColorDiffuse('D1FFFFFF')
# Whitewash glass top left
self.imgWhiteTL = xbmcgui.ControlImage(70, 0, 16, 64, 'bkgd-whitewash-glass-top-left.png')
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/lib/GameTrailers.py
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/lib/GameTrailers.py (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/lib/GameTrailers.py Sat Apr 21 17:45:26 2007
@@ -108,9 +108,18 @@
if Emulating: xbmcgui.Window.__init__(self)
self.setCoordinateResolution(COORD_PAL_4X3) # scales objects automatically
+ # background animation
+ self.imgBackgroundani = xbmcgui.ControlImage(0, 0, 720, 576, "Q:\\skin\\MC360\\Extras\\background-ani.gif")
+ self.addControl(self.imgBackgroundani)
+
# background image
- self.imgBackground = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue.png')
+ self.imgBackground = xbmcgui.ControlImage(0, 0, 720, 576, 'background-blue-alpha.png')
self.addControl(self.imgBackground)
+
+ # custom background image
+ self.imgCustomBackground = xbmcgui.ControlImage(0, 0, 720, 576, xbmc.getInfoLabel('Skin.String(Media)'))
+ self.addControl(self.imgCustomBackground)
+ self.imgCustomBackground.setColorDiffuse('D1FFFFFF')
# Whitewash glass top left
self.imgWhiteTL = xbmcgui.ControlImage(70, 0, 16, 64, 'bkgd-whitewash-glass-top-left.png')
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/background-ani.gif
==============================================================================
Binary file. No diff available.
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Media/gamevideos.png
==============================================================================
Binary file. No diff available.
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Media/xbmcupdater.png
==============================================================================
Binary file. No diff available.
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1977_CategoryConfig6.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1977_CategoryConfig6.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1977_CategoryConfig6.xml Sat Apr 21 17:45:26 2007
@@ -663,7 +663,7 @@
<pulseonselect>no</pulseonselect>
<selected>Skin.HasSetting(Button-6Enable8)</selected>
<onclick>Skin.ToggleSetting(Button-6Enable8)</onclick>
- <onleft>21</onleft>
+ <onleft>24</onleft>
<onright>23</onright>
<onup>19</onup>
<ondown>25</ondown>
@@ -712,7 +712,7 @@
<pulseonselect>no</pulseonselect>
<onclick>Skin.SetString(Button-6Name8)</onclick>
<onleft>23</onleft>
- <onright>21</onright>
+ <onright>22</onright>
<onup>19</onup>
<ondown>25</ondown>
<font>font14</font>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1978_CategoryConfig5.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1978_CategoryConfig5.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1978_CategoryConfig5.xml Sat Apr 21 17:45:26 2007
@@ -663,7 +663,7 @@
<pulseonselect>no</pulseonselect>
<selected>Skin.HasSetting(Button-5Enable8)</selected>
<onclick>Skin.ToggleSetting(Button-5Enable8)</onclick>
- <onleft>21</onleft>
+ <onleft>24</onleft>
<onright>23</onright>
<onup>19</onup>
<ondown>25</ondown>
@@ -712,7 +712,7 @@
<pulseonselect>no</pulseonselect>
<onclick>Skin.SetString(Button-5Name8)</onclick>
<onleft>23</onleft>
- <onright>21</onright>
+ <onright>22</onright>
<onup>19</onup>
<ondown>25</ondown>
<font>font14</font>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1979_CategoryConfig4.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1979_CategoryConfig4.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1979_CategoryConfig4.xml Sat Apr 21 17:45:26 2007
@@ -663,7 +663,7 @@
<pulseonselect>no</pulseonselect>
<selected>Skin.HasSetting(Button-4Enable8)</selected>
<onclick>Skin.ToggleSetting(Button-4Enable8)</onclick>
- <onleft>21</onleft>
+ <onleft>24</onleft>
<onright>23</onright>
<onup>19</onup>
<ondown>25</ondown>
@@ -712,7 +712,7 @@
<pulseonselect>no</pulseonselect>
<onclick>Skin.SetString(Button-4Name8)</onclick>
<onleft>23</onleft>
- <onright>21</onright>
+ <onright>22</onright>
<onup>19</onup>
<ondown>25</ondown>
<font>font14</font>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1980_CategoryConfig3.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1980_CategoryConfig3.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1980_CategoryConfig3.xml Sat Apr 21 17:45:26 2007
@@ -663,7 +663,7 @@
<pulseonselect>no</pulseonselect>
<selected>Skin.HasSetting(Button-3Enable8)</selected>
<onclick>Skin.ToggleSetting(Button-3Enable8)</onclick>
- <onleft>21</onleft>
+ <onleft>24</onleft>
<onright>23</onright>
<onup>19</onup>
<ondown>25</ondown>
@@ -712,7 +712,7 @@
<pulseonselect>no</pulseonselect>
<onclick>Skin.SetString(Button-3Name8)</onclick>
<onleft>23</onleft>
- <onright>21</onright>
+ <onright>22</onright>
<onup>19</onup>
<ondown>25</ondown>
<font>font14</font>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1981_CategoryConfig2.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1981_CategoryConfig2.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1981_CategoryConfig2.xml Sat Apr 21 17:45:26 2007
@@ -663,7 +663,7 @@
<pulseonselect>no</pulseonselect>
<selected>Skin.HasSetting(Button-2Enable8)</selected>
<onclick>Skin.ToggleSetting(Button-2Enable8)</onclick>
- <onleft>21</onleft>
+ <onleft>24</onleft>
<onright>23</onright>
<onup>19</onup>
<ondown>25</ondown>
@@ -712,7 +712,7 @@
<pulseonselect>no</pulseonselect>
<onclick>Skin.SetString(Button-2Name8)</onclick>
<onleft>23</onleft>
- <onright>21</onright>
+ <onright>22</onright>
<onup>19</onup>
<ondown>25</ondown>
<font>font14</font>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1982_CategoryConfig1.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1982_CategoryConfig1.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1982_CategoryConfig1.xml Sat Apr 21 17:45:26 2007
@@ -663,7 +663,7 @@
<pulseonselect>no</pulseonselect>
<selected>Skin.HasSetting(Button-1Enable8)</selected>
<onclick>Skin.ToggleSetting(Button-1Enable8)</onclick>
- <onleft>21</onleft>
+ <onleft>24</onleft>
<onright>23</onright>
<onup>19</onup>
<ondown>25</ondown>
@@ -712,7 +712,7 @@
<pulseonselect>no</pulseonselect>
<onclick>Skin.SetString(Button-1Name8)</onclick>
<onleft>23</onleft>
- <onright>21</onright>
+ <onright>22</onright>
<onup>19</onup>
<ondown>25</ondown>
<font>font14</font>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1112_GamesHome.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1112_GamesHome.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1112_GamesHome.xml Sat Apr 21 17:45:26 2007
@@ -495,7 +495,7 @@
<width>235</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>!Control.HasFocus(1) + !Control.HasFocus(2) + ![Control.HasFocus(8) | Control.HasFocus(9)]</visible>
+ <visible>!Control.HasFocus(1) + !Control.HasFocus(2) + ![Control.HasFocus(8) | [Control.HasFocus(9) | Control.HasFocus(90)]]</visible>
</control>
<!-- Custom Button for modders -->
<control type="image">
@@ -505,7 +505,7 @@
<width>281</width>
<height>270</height>
<texture>homebutton-5a.png</texture>
- <visible>Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ <visible>[Control.HasFocus(9) | Control.HasFocus(90)] + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
</control>
<control type="image">
<description>Custom Highlight Shadow</description>
@@ -514,9 +514,10 @@
<width>281</width>
<height>270</height>
<texture>homebutton-5-shadow.png</texture>
- <visible>Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ <visible>[Control.HasFocus(9) | Control.HasFocus(90)] + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
<include>button-shadow</include>
</control>
+
<control type="button" id="9">
<description>Marketplace Push Button</description>
<include>Home-Button-Commons</include>
@@ -533,7 +534,7 @@
<onleft>1</onleft>
<onright>2</onright>
<onup>8</onup>
- <ondown>10</ondown>
+ <ondown>90</ondown>
</control>
<control type="button" id="9">
<description>Marketplace Custom Push Button</description>
@@ -549,6 +550,70 @@
<onleft>1</onleft>
<onright>2</onright>
<onup>8</onup>
+ <ondown>90</ondown>
+ </control>
+ <control type="button" id="90">
+ <description>Homebrew XBE Custom Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>145</posx>
+ <posy>360</posy>
+ <label>$INFO[Skin.String(HomebrewName)]</label>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(HomebrewXBE_path)]\default.xbe)</onclick>
+ <texturefocus>videomarketplace_icon.png</texturefocus>
+ <texturenofocus>videomarketplace_icon.png</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <visible>Skin.String(HomebrewName) + !Skin.HasSetting(GamesMarketplace) + Skin.HasSetting(HomebrewXBE)</visible>
+ <onleft>1</onleft>
+ <onright>2</onright>
+ <onup>9</onup>
+ <ondown>10</ondown>
+ </control>
+ <control type="button" id="90">
+ <description>Homebrew Script Custom Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>145</posx>
+ <posy>360</posy>
+ <label>$INFO[Skin.String(HomebrewName)]</label>
+ <onclick>XBMC.RunScript($INFO[Skin.String(HomebrewScript_path)]\default.py)</onclick>
+ <texturefocus>videomarketplace_icon.png</texturefocus>
+ <texturenofocus>videomarketplace_icon.png</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <visible>Skin.String(HomebrewName) + !Skin.HasSetting(GamesMarketplace) + Skin.HasSetting(HomebrewScript)</visible>
+ <onleft>1</onleft>
+ <onright>2</onright>
+ <onup>9</onup>
+ <ondown>10</ondown>
+ </control>
+ <control type="button" id="90">
+ <description>Homebrew XBE Default Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>145</posx>
+ <posy>360</posy>
+ <label>Homebrew</label>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(HomebrewXBE_path)]\default.xbe)</onclick>
+ <texturefocus>videomarketplace_icon.png</texturefocus>
+ <texturenofocus>videomarketplace_icon.png</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <visible>!Skin.String(HomebrewName) + !Skin.HasSetting(GamesMarketplace) + Skin.HasSetting(HomebrewXBE)</visible>
+ <onleft>1</onleft>
+ <onright>2</onright>
+ <onup>9</onup>
+ <ondown>10</ondown>
+ </control>
+ <control type="button" id="90">
+ <description>Homebrew Script Default Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>145</posx>
+ <posy>360</posy>
+ <label>Homebrew</label>
+ <onclick>XBMC.RunScript($INFO[Skin.String(HomebrewScript_path)]\default.py)</onclick>
+ <texturefocus>videomarketplace_icon.png</texturefocus>
+ <texturenofocus>videomarketplace_icon.png</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <visible>!Skin.String(HomebrewName) + !Skin.HasSetting(GamesMarketplace) + Skin.HasSetting(HomebrewScript)</visible>
+ <onleft>1</onleft>
+ <onright>2</onright>
+ <onup>9</onup>
<ondown>10</ondown>
</control>
<control type="multiimage">
@@ -558,10 +623,10 @@
<width>220</width>
<height>38</height>
<include>Shine</include>
- <visible>Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ <visible>[Control.HasFocus(9) | Control.HasFocus(90)] + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
</control>
<control type="label">
- <description>Custom Button Multiline</description>
+ <description>Marketplace Button Multiline</description>
<posx>390</posx>
<posy>205</posy>
<width>210</width>
@@ -573,6 +638,19 @@
<include>shadow-grey</include>
<visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(9) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
</control>
+ <control type="label">
+ <description>Marketplace Button Multiline</description>
+ <posx>390</posx>
+ <posy>205</posy>
+ <width>210</width>
+ <height>200</height>
+ <wrapmultiline>true</wrapmultiline>
+ <label>Launch a custom Application, Game, or Script.</label>
+ <font>font14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(90) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
<control type="image">
<description>Button Seperator</description>
<posx>135</posx>
@@ -580,7 +658,7 @@
<width>235</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>Control.IsVisible(9) + !Control.HasFocus(1) + !Control.HasFocus(2) + !Control.HasFocus(9)</visible>
+ <visible>[Control.IsVisible(9) | Control.IsVisible(90)] + !Control.HasFocus(1) + !Control.HasFocus(2) + !Control.HasFocus(9) + !Control.HasFocus(90)</visible>
</control>
<!-- END Custom Button for modders -->
<control type="button" id="10">
@@ -591,7 +669,7 @@
<height>71</height>
<onleft>1</onleft>
<onright>2</onright>
- <onup>9</onup>
+ <onup>90</onup>
<ondown>4</ondown>
<texturefocus>dvdtrayeject-focus.png</texturefocus>
<texturenofocus>dvdtrayeject-nofocus.png</texturenofocus>
@@ -611,7 +689,7 @@
<height>71</height>
<onleft>1</onleft>
<onright>2</onright>
- <onup>9</onup>
+ <onup>90</onup>
<ondown>4</ondown>
<texturefocus>dvdtray-focus.png</texturefocus>
<texturenofocus>dvdtray-nofocus.png</texturenofocus>
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1113_XBMCLivePlace.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1113_XBMCLivePlace.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1113_XBMCLivePlace.xml Sat Apr 21 17:45:26 2007
@@ -126,7 +126,37 @@
<posy>237</posy>
<width>280</width>
<height>64</height>
- <texture>xbmc.png</texture>
+ <texture>XBMCLivePlace\icon-amt.png</texture>
+ <visible>!Skin.HasSetting(T3CHButton)</visible>
+ </control>
+ <control type="image">
+ <description>Market Place Button 3 Image Icon</description>
+ <posx>95</posx>
+ <posy>237</posy>
+ <width>280</width>
+ <height>64</height>
+ <texture>xbmcupdater.png</texture>
+ <visible>Skin.HasSetting(T3CHButton)</visible>
+ </control>
+ <control type="button" id="3">
+ <description>Market Place Button 3 push button</description>
+ <posx>90</posx>
+ <posy>235</posy>
+ <width>290</width>
+ <height>70</height>
+ <aligny>-</aligny>
+ <textoffsetx>10</textoffsetx>
+ <textoffsety>40</textoffsety>
+ <include>19036</include>
+ <include>shadow-grey</include>
+ <texturefocus>button-liveplace-big-nofocus.png</texturefocus>
+ <texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
+ <onclick>XBMC.RunScript(Q:\scripts\Apple Movie Trailers\default.py)</onclick>
+ <visible>!Skin.HasSetting(T3chButton)</visible>
+ <onleft>3</onleft>
+ <onright>3</onright>
+ <onup>2</onup>
+ <ondown>4</ondown>
</control>
<control type="button" id="3">
<description>Market Place Button 3 push button</description>
@@ -142,7 +172,7 @@
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
<onclick>XBMC.RunScript(Q:\scripts\T3CH Downloader\default.py)</onclick>
- <visible>yes</visible>
+ <visible>Skin.HasSetting(T3chButton)</visible>
<onleft>3</onleft>
<onright>3</onright>
<onup>2</onup>
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1114_LiveHome.xml
==============================================================================
--- (empty file)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1114_LiveHome.xml Sat Apr 21 17:45:26 2007
@@ -0,0 +1,1355 @@
+<!-- XLink Home -->
+<window id="1114">
+ <defaultcontrol always="true">9000</defaultcontrol>
+ <allowoverlay>no</allowoverlay>
+ <previouswindow>1114</previouswindow>
+ <controls>
+ <control type="group">
+ <posx>0</posx>
+ <include>Background-animation-blades</include>
+ </control>
+ <control type="visualisation">
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <visible>!Control.HasFocus(2) + [!Skin.HasSetting(backgroundvis) + Player.HasAudio]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="videowindow">
+ <description>video preview window</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <visible>!Control.HasFocus(2) + [!Skin.HasSetting(backgroundvideo) + Player.HasVideo]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Orange Background Static Alpha</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ <texture>background-orange-alpha.png</texture>
+ </control>
+ <control type="image">
+ <description>XBMCLive Custom Background Static</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <texture>-</texture>
+ <info>Skin.String(KAI)</info>
+ <colordiffuse>D1FFFFFF</colordiffuse>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <!-- Begin XLink Controls -->
+ <control type="image">
+ <description>Whitewash Glass Top Left</description>
+ <posx>70</posx>
+ <posy>0</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-left</include>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Top Middle</description>
+ <posx>86</posx>
+ <posy>0</posy>
+ <width>492</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-middle</include>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Top Right</description>
+ <posx>578</posx>
+ <posy>0</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-right</include>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Left</description>
+ <posx>70</posx>
+ <posy>512</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-left</include>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Middle</description>
+ <posx>86</posx>
+ <posy>512</posy>
+ <width>492</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-middle</include>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Right</description>
+ <posx>578</posx>
+ <posy>512</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-right</include>
+ <visible>!Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Left</description>
+ <posx>60</posx>
+ <posy>0</posy>
+ <width>32</width>
+ <height>576</height>
+ <include>Image-whitewash-overlay-left</include>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Middle</description>
+ <posx>92</posx>
+ <posy>0</posy>
+ <width>453</width>
+ <height>576</height>
+ <include>Image-whitewash-overlay-middle</include>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Right</description>
+ <posx>545</posx>
+ <posy>0</posy>
+ <width>64</width>
+ <height>576</height>
+ <include>Image-whitewash-overlay-right</include>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="rss">
+ <description>RSS Feeds</description>
+ <posx>80</posx>
+ <posy>8</posy>
+ <width>505</width>
+ <font>special13</font>
+ <scroll>true</scroll>
+ <urlset>1</urlset>
+ <titlecolor>E1ffffff</titlecolor>
+ <headlinecolor>A1FFFFFF</headlinecolor>
+ <include>TextcolorWhite</include>
+ <visible>!Control.HasFocus(2)</visible>
+ <visible>!Skin.HasSetting(rss-feeds)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="label">
+ <description>XBMC Live Label</description>
+ <posx>102</posx>
+ <posy>42</posy>
+ <include>19046</include>
+ <align>left</align>
+ <font>font18</font>
+ <include>shadow-black</include>
+ <visible>!Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="label">
+ <description>Clock Label</description>
+ <posx>560</posx>
+ <posy>48</posy>
+ <info>System.Time</info>
+ <align>right</align>
+ <font>bold14</font>
+ <include>shadow-black</include>
+ <visible>Skin.HasSetting(BladeClock) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <!-- Begin GamerCard -->
+ <control type="group" id="4">
+ <posx>86</posx>
+ <posy>77</posy>
+ <control type="group">
+ <visible>!Control.HasFocus(1) + !Control.HasFocus(2) + ![Skin.HasSetting(extra_card_sysinfo) | Skin.HasSetting(extra_card_weather)] + ![Skin.HasSetting(MusicCard) + Player.HasAudio]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <include>GamerCardButton</include>
+ </control>
+ <control type="group">
+ <visible>!Control.HasFocus(1) + !Control.HasFocus(2) + Skin.HasSetting(extra_card_weather) + ![Skin.HasSetting(MusicCard) + Player.HasAudio]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <include>WeatherCardButton</include>
+ </control>
+ <control type="group">
+ <visible>!Control.HasFocus(1) + !Control.HasFocus(2) + Skin.HasSetting(extra_card_sysinfo) + ![Skin.HasSetting(MusicCard) + Player.HasAudio]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <include>SysInfoCardButton</include>
+ </control>
+ <control type="group">
+ <visible>!Control.HasFocus(1) + !Control.HasFocus(2) + [Skin.HasSetting(MusicCard) + Player.HasAudio]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <include>NowPlayingCard</include>
+ </control>
+ <onup>10</onup>
+ <ondown>5</ondown>
+ </control>
+ <!-- End GamerCard -->
+ <control type="group" id="9000">
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <!-- Begin Extras Blade -->
+ <control type="image">
+ <description>XBMC Live Ad</description>
+ <posx>341</posx>
+ <posy>200</posy>
+ <width>225</width>
+ <height>205</height>
+ <texture>middle-panel.png</texture>
+ <visible>!Skin.HasSetting(nodescriptions) + !ControlGroup(4).HasFocus() + !Control.HasFocus(11) + !Control.HasFocus(10) + !Control.HasFocus(2) + !Control.HasFocus(60) + !Control.HasFocus(70) + !Control.HasFocus(80)</visible>
+ </control>
+ <control type="image">
+ <description>XBMC Logo</description>
+ <posx>392</posx>
+ <posy>83</posy>
+ <width>128</width>
+ <height>128</height>
+ <texture>xbmclive_homelogo.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Logo Shadow</description>
+ <posx>343</posx>
+ <posy>185</posy>
+ <width>232</width>
+ <height>16</height>
+ <texture>home_logoshadow.png</texture>
+ <visible>!Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>194</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Connect to kai Button Image Shadow</description>
+ <posx>100</posx>
+ <posy>267</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>!System.KaiConnected + Control.HasFocus(5) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Connect to kai Button Image</description>
+ <posx>100</posx>
+ <posy>196</posy>
+ <width>230</width>
+ <height>70</height>
+ <texture>big-button-focus.png</texture>
+ <visible>!System.KaiConnected + Control.HasFocus(5) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="5">
+ <description>Connect to kai button kai push button</description>
+ <include>Big-Home-Button-Commons</include>
+ <posx>105</posx>
+ <posy>200</posy>
+ <include>19019</include>
+ <texturefocus>icon-connecttokai.png</texturefocus>
+ <texturenofocus>icon-connecttokai.png</texturenofocus>
+ <onclick>ActivateWindow(XLinkKai,Arenas)</onclick>
+ <visible>!System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ <onleft>5</onleft>
+ <onright>2</onright>
+ <onup>4</onup>
+ <ondown>6</ondown>
+ </control>
+ <control type="multiimage">
+ <description>Connect to kai Button Shine</description>
+ <posx>100</posx>
+ <posy>196</posy>
+ <width>230</width>
+ <height>70</height>
+ <include>Shine</include>
+ <visible>!System.KaiConnected + Control.HasFocus(5) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>266</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>!System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="label">
+ <description>Connect to kai description 1</description>
+ <posx>355</posx>
+ <posy>226</posy>
+ <width>256</width>
+ <height>15</height>
+ <include>19014</include>
+ <font>bold14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + !Control.HasFocus(9) + !ControlGroup(4).HasFocus() + !Control.HasFocus(10) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="label">
+ <description>Connect to kai description MultiLine</description>
+ <posx>355</posx>
+ <posy>251</posy>
+ <width>180</width>
+ <height>200</height>
+ <wrapmultiline>true</wrapmultiline>
+ <include>19015</include>
+ <font>font12</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + !Control.HasFocus(9) + !ControlGroup(4).HasFocus() + !Control.HasFocus(10) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="label">
+ <description>XBMCLive Coming Soon description 1</description>
+ <posx>355</posx>
+ <posy>226</posy>
+ <width>256</width>
+ <height>15</height>
+ <include>19777</include>
+ <font>bold14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(9) + !Control.HasFocus(8) + !ControlGroup(4).HasFocus() + !Control.HasFocus(10) + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>XBMCLive Coming Soon MultiLine</description>
+ <posx>355</posx>
+ <posy>251</posy>
+ <width>180</width>
+ <height>200</height>
+ <wrapmultiline>true</wrapmultiline>
+ <include>19778</include>
+ <font>font12</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(9) + !ControlGroup(4).HasFocus() + !Control.HasFocus(10) + !Control.HasFocus(2)</visible>
+ </control>
+
+
+
+
+
+
+ <control type="image">
+ <description>Messages Button Highlight Image Shadow</description>
+ <posx>100</posx>
+ <posy>233</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>System.KaiConnected + Control.HasFocus(6) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Messages Button Highlight Image</description>
+ <posx>100</posx>
+ <posy>196</posy>
+ <width>230</width>
+ <height>38</height>
+ <texture>big-button-focus.png</texture>
+ <visible>System.KaiConnected + Control.HasFocus(6) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="6">
+ <description>Messages Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>110</posx>
+ <posy>200</posy>
+ <include>19012</include>
+ <onclick>ActivateWindow(XLinkKai,Chat)</onclick>
+ <texturefocus>icon-messages.png</texturefocus>
+ <texturenofocus>icon-messages.png</texturenofocus>
+ <onleft>6</onleft>
+ <onright>2</onright>
+ <onup>5</onup>
+ <ondown>7</ondown>
+ <visible>System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="multiimage">
+ <description>Messages Button Shine</description>
+ <posx>100</posx>
+ <posy>196</posy>
+ <width>230</width>
+ <height>38</height>
+ <include>Shine</include>
+ <visible>System.KaiConnected + Control.HasFocus(6) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>234</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Friends Button Highlight Image Shadow</description>
+ <posx>100</posx>
+ <posy>273</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>System.KaiConnected + Control.HasFocus(7) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Friends Button Highlight Image</description>
+ <posx>100</posx>
+ <posy>236</posy>
+ <width>230</width>
+ <height>38</height>
+ <texture>big-button-focus.png</texture>
+ <visible>System.KaiConnected + Control.HasFocus(7) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="7">
+ <description>Friends Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>110</posx>
+ <posy>240</posy>
+ <include>19013</include>
+ <onclick>ActivateWindow(XLinkKai,Buddies)</onclick>
+ <texturefocus>icon-Friends.png</texturefocus>
+ <texturenofocus>icon-Friends.png</texturenofocus>
+ <onleft>7</onleft>
+ <onright>2</onright>
+ <onup>6</onup>
+ <ondown>8</ondown>
+ <visible>System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="multiimage">
+ <description>Friends Button Shine</description>
+ <posx>100</posx>
+ <posy>236</posy>
+ <width>230</width>
+ <height>38</height>
+ <include>Shine</include>
+ <visible>System.KaiConnected + Control.HasFocus(7) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>274</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Games Button Highlight Image Shadow</description>
+ <posx>100</posx>
+ <posy>313</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>System.KaiConnected + Control.HasFocus(8) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Games Button Highlight Image</description>
+ <posx>100</posx>
+ <posy>276</posy>
+ <width>230</width>
+ <height>38</height>
+ <texture>big-button-focus.png</texture>
+ <visible>System.KaiConnected + Control.HasFocus(8) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="8">
+ <description>Games Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>110</posx>
+ <posy>280</posy>
+ <include>19001</include>
+ <onclick>ActivateWindow(XLinkKai,Games)</onclick>
+ <texturefocus>icon-Games.png</texturefocus>
+ <texturenofocus>icon-Games.png</texturenofocus>
+ <onleft>8</onleft>
+ <onright>2</onright>
+ <onup>7</onup>
+ <ondown>60</ondown>
+ <visible>System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="multiimage">
+ <description>Games Button Shine</description>
+ <posx>100</posx>
+ <posy>276</posy>
+ <width>230</width>
+ <height>38</height>
+ <include>Shine</include>
+ <visible>System.KaiConnected + Control.HasFocus(8) + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>314</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>System.KaiConnected + !Control.HasFocus(2) + !Skin.HasSetting(KaiInfo)</visible>
+ </control>
+
+
+
+
+
+
+
+
+
+
+
+ <control type="image">
+ <description>Filemanager Button Highlight Image Shadow</description>
+ <posx>100</posx>
+ <posy>233</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>Control.HasFocus(60) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Filemanager Button Highlight Image</description>
+ <posx>100</posx>
+ <posy>196</posy>
+ <width>230</width>
+ <height>38</height>
+ <texture>big-button-focus.png</texture>
+ <visible>Control.HasFocus(60) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="60">
+ <description>Filemanager Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>110</posx>
+ <posy>200</posy>
+ <label>File Manager</label>
+ <onclick>ActivateWindow(MyFiles)</onclick>
+ <texturefocus>icon-computer.png</texturefocus>
+ <texturenofocus>icon-computer.png</texturenofocus>
+ <onleft>60</onleft>
+ <onright>2</onright>
+ <onup>8</onup>
+ <ondown>70</ondown>
+ <visible>!Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="multiimage">
+ <description>Filemanager Button Shine</description>
+ <posx>100</posx>
+ <posy>196</posy>
+ <width>230</width>
+ <height>38</height>
+ <include>Shine</include>
+ <visible>Control.HasFocus(60) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>234</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>!Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Weather Button Highlight Image Shadow</description>
+ <posx>100</posx>
+ <posy>273</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>Control.HasFocus(70) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Weather Button Highlight Image</description>
+ <posx>100</posx>
+ <posy>236</posy>
+ <width>230</width>
+ <height>38</height>
+ <texture>big-button-focus.png</texture>
+ <visible>Control.HasFocus(70) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="70">
+ <description>Weather Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>110</posx>
+ <posy>240</posy>
+ <label>Weather</label>
+ <onclick>ActivateWindow(Weather)</onclick>
+ <texturefocus>icon-weather.png</texturefocus>
+ <texturenofocus>icon-weather.png</texturenofocus>
+ <onleft>70</onleft>
+ <onright>2</onright>
+ <onup>60</onup>
+ <ondown>80</ondown>
+ <visible>!Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="multiimage">
+ <description>Weather Button Shine</description>
+ <posx>100</posx>
+ <posy>236</posy>
+ <width>230</width>
+ <height>38</height>
+ <include>Shine</include>
+ <visible>Control.HasFocus(70) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>274</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>!Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Scripts Button Highlight Image Shadow</description>
+ <posx>100</posx>
+ <posy>313</posy>
+ <width>230</width>
+ <height>16</height>
+ <texture>button-shadow.png</texture>
+ <visible>Control.HasFocus(80) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ <animation effect="fade" time="250">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Scripts Button Highlight Image</description>
+ <posx>100</posx>
+ <posy>276</posy>
+ <width>230</width>
+ <height>38</height>
+ <texture>big-button-focus.png</texture>
+ <visible>Control.HasFocus(80) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="button" id="80">
+ <description>Scripts Push Button</description>
+ <include>Home-Button-Commons</include>
+ <posx>110</posx>
+ <posy>280</posy>
+ <label>Scripts</label>
+ <onclick>ActivateWindow(Scripts)</onclick>
+ <texturefocus>icon-scripts.png</texturefocus>
+ <texturenofocus>icon-scripts.png</texturenofocus>
+ <onleft>80</onleft>
+ <onright>2</onright>
+ <onup>70</onup>
+ <ondown>9</ondown>
+ <visible>!Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="multiimage">
+ <description>Scripts Button Shine</description>
+ <posx>100</posx>
+ <posy>276</posy>
+ <width>230</width>
+ <height>38</height>
+ <include>Shine</include>
+ <visible>Control.HasFocus(80) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="image">
+ <description>Button Seperator</description>
+ <posx>100</posx>
+ <posy>314</posy>
+ <width>230</width>
+ <height>2</height>
+ <texture>divider.png</texture>
+ <visible>!Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="label">
+ <description>File Manager Button description</description>
+ <posx>355</posx>
+ <posy>205</posy>
+ <width>210</width>
+ <height>15</height>
+ <wrapmultiline>true</wrapmultiline>
+ <label>Check the 4 day Weather forecast for 3 different Locations.</label>
+ <font>font14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(60) + !Control.HasFocus(1) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="label">
+ <description>Weather Button description</description>
+ <posx>355</posx>
+ <posy>205</posy>
+ <width>210</width>
+ <height>15</height>
+ <wrapmultiline>true</wrapmultiline>
+ <label>Explore, Copy, Delete, or Move Files on your Xbox Hard Drive.</label>
+ <font>font14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(70) + !Control.HasFocus(1) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+ <control type="label">
+ <description>Scripts Button description</description>
+ <posx>355</posx>
+ <posy>205</posy>
+ <width>210</width>
+ <height>15</height>
+ <wrapmultiline>true</wrapmultiline>
+ <label>Run Python scripts to do custom tasks on your Xbox.</label>
+ <font>font14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + Control.HasFocus(80) + !Control.HasFocus(1) + !Control.HasFocus(2) + Skin.HasSetting(KaiInfo)</visible>
+ </control>
+
+
+
+
+
+
+
+
+
+
+ <control type="button" id="9">
+ <description>XBMC Live Button</description>
+ <posx>90</posx>
+ <posy>324</posy>
+ <width>308</width>
+ <height>80</height>
+ <onleft>9</onleft>
+ <onright>2</onright>
+ <onup>80</onup>
+ <ondown>10</ondown>
+ <texturefocus>ad-button-FO.png</texturefocus>
+ <texturenofocus>ad-button-NF.png</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>XBMC.ActivateWindow(1113)</onclick>
+ <visible>!Control.HasFocus(2)</visible>
+ <!-- Begin Fake Label Name for LCD displays dont touch -->
+ <include>19046</include>
+ <textcolor>00000000</textcolor>
+ <!-- End Fake Label Name for LCD displays dont touch -->
+ </control>
+ <control type="multiimage">
+ <description>XBMC Live Ad Animation</description>
+ <posx>100</posx>
+ <posy>324</posy>
+ <width>308</width>
+ <height>80</height>
+ <imagepath>XBMCLive_Ad</imagepath>
+ <timeperimage>100</timeperimage>
+ <fadetime>-</fadetime>
+ <loop>yes</loop>
+ <randomize>false</randomize>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="button" id="10">
+ <description>DVD Launch Button</description>
+ <posx>86</posx>
+ <posy>413</posy>
+ <width>492</width>
+ <height>71</height>
+ <onleft>10</onleft>
+ <onright>2</onright>
+ <onup>9</onup>
+ <ondown>4</ondown>
+ <texturefocus>dvdtrayeject-focus.png</texturefocus>
+ <texturenofocus>dvdtrayeject-nofocus.png</texturenofocus>
+ <textoffsetx>70</textoffsetx>
+ <pulseonselect>no</pulseonselect>
+ <visible>![System.hasmediadvd] + !Control.HasFocus(2)</visible>
+ <onclick>XBMC.EjectTray()</onclick>
+ <!-- Begin Fake Label Name for LCD displays dont touch -->
+ <include>19049</include>
+ <textcolor>00000000</textcolor>
+ <!-- End Fake Label Name for LCD displays dont touch -->
+ </control>
+ <control type="button" id="10">
+ <description>DVD Launch Button 2</description>
+ <posx>86</posx>
+ <posy>413</posy>
+ <width>492</width>
+ <height>71</height>
+ <onleft>10</onleft>
+ <onright>2</onright>
+ <onup>9</onup>
+ <ondown>4</ondown>
+ <texturefocus>dvdtray-focus.png</texturefocus>
+ <texturenofocus>dvdtray-nofocus.png</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <visible>System.hasmediadvd + !Control.HasFocus(2)</visible>
+ <onclick>XBMC.PlayDVD()</onclick>
+ <!-- Begin Fake Label Name for LCD displays dont touch -->
+ <include>19148</include>
+ <textcolor>00000000</textcolor>
+ <!-- End Fake Label Name for LCD displays dont touch -->
+ </control>
+ <control type="label">
+ <description>DVD Launch Label 2</description>
+ <posx>156</posx>
+ <posy>413</posy>
+ <width>492</width>
+ <height>71</height>
+ <include>19148</include>
+ <font>font14</font>
+ <aligny>center</aligny>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>System.hasmediadvd + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>DVD Launch Open Tray</description>
+ <posx>156</posx>
+ <posy>413</posy>
+ <width>492</width>
+ <height>71</height>
+ <include>19049a</include>
+ <font>font14</font>
+ <aligny>center</aligny>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!System.hasmediadvd + !System.trayopen + System.dvdready + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>DVD Launch Close Tray</description>
+ <posx>156</posx>
+ <posy>413</posy>
+ <width>492</width>
+ <height>71</height>
+ <include>19049b</include>
+ <font>font14</font>
+ <aligny>center</aligny>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!System.hasmediadvd + System.trayopen + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>DVD Launch Drive Busy Tray</description>
+ <posx>156</posx>
+ <posy>413</posy>
+ <width>492</width>
+ <height>71</height>
+ <include>19049c</include>
+ <font>font14</font>
+ <aligny>center</aligny>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!System.hasmediadvd + !System.trayopen + !System.dvdready + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>DVD Button start Disc description 1</description>
+ <posx>355</posx>
+ <posy>205</posy>
+ <width>256</width>
+ <height>15</height>
+ <include>19158</include>
+ <font>font14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + System.hasmediadvd + Control.HasFocus(10) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>DVD Button description MultiLine No Disc</description>
+ <posx>355</posx>
+ <posy>205</posy>
+ <width>210</width>
+ <height>200</height>
+ <wrapmultiline>true</wrapmultiline>
+ <include>19147</include>
+ <font>font14</font>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Skin.HasSetting(nodescriptions) + !System.hasmediadvd + Control.HasFocus(10) + !Control.HasFocus(1) + !Control.HasFocus(2)</visible>
+ </control>
+ </control>
+ <control type="image">
+ <description>Y Button</description>
+ <posx>125</posx>
+ <posy>505</posy>
+ <include>Button-Map-Texture-Width</include>
+ <height>21</height>
+ <texture>button-Y-turnedoff.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>X Button</description>
+ <posx>112</posx>
+ <posy>525</posy>
+ <include>Button-Map-Texture-Width</include>
+ <height>21</height>
+ <texture>button-X-turnedoff.png</texture>
+ <visible>!Control.HasFocus(2) + !Player.HasMedia</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>X Button</description>
+ <posx>112</posx>
+ <posy>525</posy>
+ <include>Button-Map-Texture-Width</include>
+ <height>21</height>
+ <texture>button-X.png</texture>
+ <visible>!Control.HasFocus(2) + Player.HasMedia</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="label">
+ <description>Full-Screen Visualisation Label</description>
+ <include>KeymapFont</include>
+ <posx>143</posx>
+ <posy>528</posy>
+ <include>20002</include>
+ <align>left</align>
+ <visible>!Control.HasFocus(2) + Player.HasAudio</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="label">
+ <description>Full-Screen Video Label</description>
+ <include>KeymapFont</include>
+ <posx>143</posx>
+ <posy>528</posy>
+ <include>20003</include>
+ <align>left</align>
+ <visible>!Control.HasFocus(2) + Player.HasVideo</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>B Button</description>
+ <posx>515</posx>
+ <posy>505</posy>
+ <include>Button-Map-Texture-Width</include>
+ <height>21</height>
+ <texture>button-B-turnedoff.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>A Button</description>
+ <posx>528</posx>
+ <posy>525</posy>
+ <include>Button-Map-Texture-Width</include>
+ <height>21</height>
+ <texture>button-A.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="label">
+ <description>Select Label</description>
+ <include>KeymapFont</include>
+ <posx>518</posx>
+ <posy>528</posy>
+ <include>19020</include>
+ <align>right</align>
+ <visible>!Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <!-- End XLink Control -->
+ <control type="image">
+ <description>Green Background Slide Left Alpha</description>
+ <posx>53</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ <animation effect="slide" start="585,0" time="100">Visible</animation>
+ <texture>background-green-alpha.png</texture>
+ </control>
+ <control type="image">
+ <description>Games Custom Background Slide Left</description>
+ <posx>53</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <texture>-</texture>
+ <info>Skin.String(Games)</info>
+ <colordiffuse>D1FFFFFF</colordiffuse>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="slide" start="585,0" time="100">Visible</animation>
+ </control>
+ <!-- Begin Games Blink -->
+ <control type="image">
+ <description>Whitewash Glass Top Left</description>
+ <posx>105</posx>
+ <posy>0</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-left</include>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Top Middle</description>
+ <posx>121</posx>
+ <posy>0</posy>
+ <width>492</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-middle</include>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Top Right</description>
+ <posx>613</posx>
+ <posy>0</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-right</include>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Left</description>
+ <posx>105</posx>
+ <posy>512</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-left</include>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Middle</description>
+ <posx>121</posx>
+ <posy>512</posy>
+ <width>492</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-middle</include>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Right</description>
+ <posx>613</posx>
+ <posy>512</posy>
+ <width>16</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-right</include>
+ <visible>Control.HasFocus(2) + !Skin.String(Games)</visible>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Left</description>
+ <posx>95</posx>
+ <posy>0</posy>
+ <width>32</width>
+ <height>576</height>
+ <include>Image-whitewash-overlay-left</include>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="zoom" center="111,288" start="100,30" time="100">visible</animation>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Middle</description>
+ <posx>127</posx>
+ <posy>0</posy>
+ <width>453</width>
+ <height>576</height>
+ <include>Image-whitewash-overlay-middle</include>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="zoom" center="353,288" start="100,30" time="100">visible</animation>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Right</description>
+ <posx>580</posx>
+ <posy>0</posy>
+ <width>64</width>
+ <height>576</height>
+ <include>Image-whitewash-overlay-right</include>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="zoom" center="612,288" start="100,30" time="100">visible</animation>
+ </control>
+ <!-- End Games Blink -->
+ <control type="image">
+ <description>Orange Background Slide Left</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <visible>Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ <texture>background-orange.png</texture>
+ </control>
+ <control type="image">
+ <description>XBMC Live Custom Background Slide Left</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>610</width>
+ <height>576</height>
+ <texture>-</texture>
+ <info>Skin.String(KAI)</info>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Top Middle</description>
+ <posx>72</posx>
+ <posy>0</posy>
+ <width>550</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-top-middle</include>
+ <visible>Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Whitewash Glass Bottom Middle</description>
+ <posx>72</posx>
+ <posy>512</posy>
+ <width>550</width>
+ <height>64</height>
+ <include>Image-whitewash-glass-bottom-middle</include>
+ <visible>Control.HasFocus(2) + !Skin.String(KAI)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay right</description>
+ <posx>615</posx>
+ <posy>100</posy>
+ <width>20</width>
+ <height>360</height>
+ <include>Image-whitewash-overlay-right</include>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Whitewash Overlay Middle</description>
+ <posx>80</posx>
+ <posy>100</posy>
+ <width>535</width>
+ <height>360</height>
+ <include>Image-whitewash-overlay-middle</include>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ </control>
+ <!-- Begin Sliding Textures -->
+ <control type="image">
+ <description>Blank Blade Slide Left</description>
+ <posx>608</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-blank-right.png</texture>
+ <visible>Control.HasFocus(2)</visible>
+ <animation effect="slide" end="-585,0" time="100">Visible</animation>
+ </control>
+ <!-- End Sliding Textures -->
+ <!-- Begin Real Blade Runners -->
+ <control type="image">
+ <description>Left Blade Runner</description>
+ <posx>-61</posx>
+ <posy>0</posy>
+ <width>128</width>
+ <height>576</height>
+ <texture>blades-runner-left.png</texture>
+ </control>
+ <control type="image">
+ <description>Right Blade Runner</description>
+ <posx>665</posx>
+ <posy>0</posy>
+ <width>128</width>
+ <height>576</height>
+ <texture>blades-runner-right.png</texture>
+ </control>
+ <!-- End Real Blade Runners -->
+ <!-- Begin Real Set of Blades -->
+ <control type="image">
+ <description>XBMC Live Blade</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size4-header.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>XBMC Live Label</description>
+ <include>19046a</include>
+ <posx>79</posx>
+ <posy>155</posy>
+ <font>BladeFont</font>
+ <include>TextcolorBlack</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>System Blade</description>
+ <posx>633</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size1-right-NF.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>System Label</description>
+ <include>19011</include>
+ <posx>676</posx>
+ <posy>177</posy>
+ <font>BladeFont</font>
+ <include>TextcolorDarkGrey</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Media Blade</description>
+ <posx>598</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size2-right-NF.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>Media Label</description>
+ <include>19009</include>
+ <posx>641</posx>
+ <posy>170</posy>
+ <font>BladeFont</font>
+ <include>TextcolorDarkGrey</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Games Blade Image on Right</description>
+ <posx>563</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size3-right-NF.png</texture>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>Games Blade Label on Right</description>
+ <include>19008</include>
+ <posx>606</posx>
+ <posy>163</posy>
+ <font>BladeFont</font>
+ <include>TextcolorDarkGrey</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>!Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>XBMC Live Blade Haze Left</description>
+ <posx>-76</posx>
+ <posy>350</posy>
+ <width>150</width>
+ <height>228</height>
+ <texture>haze-orange-left.png</texture>
+ <visible>!Control.HasFocus(2) + !Skin.HasSetting(DisableHazes)</visible>
+ <animation effect="fade" time="100">Hidden</animation>
+ </control>
+ <control type="image">
+ <description>XBMC Live Blade Haze Right</description>
+ <posx>590</posx>
+ <posy>350</posy>
+ <width>150</width>
+ <height>228</height>
+ <texture>haze-orange-right.png</texture>
+ <visible>!Control.HasFocus(2) + !Skin.HasSetting(DisableHazes)</visible>
+ <animation effect="fade" time="100">Hidden</animation>
+ </control>
+ <!-- End Real Set of Blades -->
+ <!-- Begin Blades for Games Home -->
+ <control type="image">
+ <description>XBMC Live Blade</description>
+ <posx>18</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size3-left-NF.png</texture>
+ <visible>Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>XBMC Live Label</description>
+ <include>19046a</include>
+ <posx>79</posx>
+ <posy>163</posy>
+ <font>BladeFont</font>
+ <include>TextcolorDarkGrey</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>Control.HasFocus(2)</visible>
+ </control>
+ <control type="button" id="2">
+ <description>Games Blade Left</description>
+ <posx>53</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <include>19008</include>
+ <font>BladeFont</font>
+ <include>TextcolorBlack</include>
+ <aligny>top</aligny>
+ <textoffsetx>61</textoffsetx>
+ <textoffsety>155</textoffsety>
+ <angle>270</angle>
+ <onleft>2</onleft>
+ <onright>2</onright>
+ <onup>2</onup>
+ <ondown>2</ondown>
+ <pulseonselect>no</pulseonselect>
+ <visible allowhiddenfocus="true">Control.HasFocus(2)</visible>
+ <animation effect="fade" time="100">Focus</animation>
+ <texturefocus>blades-size4-header.png</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <onfocus>XBMC.ReplaceWindow(1112)</onfocus>
+ </control>
+ <control type="image">
+ <description>System Blade</description>
+ <posx>633</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size2-right-NF.png</texture>
+ <visible>Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>System Label</description>
+ <include>19011</include>
+ <posx>676</posx>
+ <posy>170</posy>
+ <font>BladeFont</font>
+ <include>TextcolorDarkGrey</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Media Blade</description>
+ <posx>598</posx>
+ <posy>0</posy>
+ <width>80</width>
+ <height>576</height>
+ <texture>blades-size3-right-NF.png</texture>
+ <visible>Control.HasFocus(2)</visible>
+ </control>
+ <control type="label">
+ <description>Media Label</description>
+ <include>19009</include>
+ <posx>641</posx>
+ <posy>163</posy>
+ <font>BladeFont</font>
+ <include>TextcolorDarkGrey</include>
+ <aligny>top</aligny>
+ <angle>270</angle>
+ <visible>Control.HasFocus(2)</visible>
+ </control>
+ <control type="image">
+ <description>Games Blade Haze Left</description>
+ <posx>-41</posx>
+ <posy>350</posy>
+ <width>150</width>
+ <height>228</height>
+ <texture>haze-green-left.png</texture>
+ <visible>Control.HasFocus(2) + !Skin.HasSetting(DisableHazes)</visible>
+ <animation effect="fade" time="100">Visible</animation>
+ </control>
+ <control type="image">
+ <description>Games Blade Haze Right</description>
+ <posx>615</posx>
+ <posy>350</posy>
+ <width>150</width>
+ <height>228</height>
+ <texture>haze-green-right.png</texture>
+ <visible>Control.HasFocus(2) + !Skin.HasSetting(DisableHazes)</visible>
+ <animation effect="fade" time="100">Visible</animation>
+ </control>
+ <!-- End Blades for Games Home -->
+ </controls>
+</window>
\ No newline at end of file
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1115_GuideFavorites.xml
==============================================================================
--- (empty file)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1115_GuideFavorites.xml Sat Apr 21 17:45:26 2007
@@ -0,0 +1,1076 @@
+<window type="dialog" id="1115">
+ <defaultcontrol>9000</defaultcontrol>
+ <controls>
+ <control type="group" id="9000">
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>98</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(1)</visible>
+ </control>
+ <control type="image">
+ <description>Button 1 Highlight</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(1)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="1">
+ <description>Default File Manager Button 1</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>1</onleft>
+ <onright>1</onright>
+ <onup>9</onup>
+ <ondown>2</ondown>
+ <font>font14</font>
+ <label>File Manager</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.ActivateWindow(myfiles)</onclick>
+ <visible>!Skin.HasSetting(FavoritesButtonEnable1) | [!Skin.String(FavoritesScript1) + !Skin.String(FavoritesXBE1)]</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="1">
+ <description>Default Script Button 1</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>1</onleft>
+ <onright>1</onright>
+ <onup>9</onup>
+ <ondown>2</ondown>
+ <font>font14</font>
+ <label>Favorite 1</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript1)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable1) + Skin.String(FavoritesScript1) + !Skin.String(FavoritesButtonName1)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="1">
+ <description>Default XBE Button 1</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>1</onleft>
+ <onright>1</onright>
+ <onup>9</onup>
+ <ondown>2</ondown>
+ <font>font14</font>
+ <label>Favorite 1</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE1)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable1) + Skin.String(FavoritesXBE1) + !Skin.String(FavoritesButtonName1)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="1">
+ <description>Custom Named Script Button 1</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>1</onleft>
+ <onright>1</onright>
+ <onup>9</onup>
+ <ondown>2</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName1)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript1)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable1) + Skin.String(FavoritesScript1) + Skin.String(FavoritesButtonName1)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="1">
+ <description>Custom Named XBEButton 1</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>1</onleft>
+ <onright>1</onright>
+ <onup>9</onup>
+ <ondown>2</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName1)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE1)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable1) + Skin.String(FavoritesXBE1) + Skin.String(FavoritesButtonName1)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>134</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(1) | control.isvisible(2)</visible>
+ </control>
+ <control type="image">
+ <description>Button 2 Highlight</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(2)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="2">
+ <description>Default Script Button 2</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>2</onleft>
+ <onright>2</onright>
+ <onup>1</onup>
+ <ondown>3</ondown>
+ <font>font14</font>
+ <label>Favorite 2</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript2)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable2) + Skin.String(FavoritesScript2) + !Skin.String(FavoritesButtonName2)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="2">
+ <description>Default XBE Button 2</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>2</onleft>
+ <onright>2</onright>
+ <onup>1</onup>
+ <ondown>3</ondown>
+ <font>font14</font>
+ <label>Favorite 2</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE2)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable2) + Skin.String(FavoritesXBE2) + !Skin.String(FavoritesButtonName2)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="2">
+ <description>Custom Named Script Button 2</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>2</onleft>
+ <onright>2</onright>
+ <onup>1</onup>
+ <ondown>3</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName2)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript2)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable2) + Skin.String(FavoritesScript2) + Skin.String(FavoritesButtonName2)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="2">
+ <description>Custom Named XBEButton 2</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>2</onleft>
+ <onright>2</onright>
+ <onup>1</onup>
+ <ondown>3</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName2)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE2)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable2) + Skin.String(FavoritesXBE2) + Skin.String(FavoritesButtonName2)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>170</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(2) | control.isvisible(3)</visible>
+ </control>
+ <control type="image">
+ <description>Button 3 Highlight</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(3)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="3">
+ <description>Default Script Button 3</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>3</onleft>
+ <onright>3</onright>
+ <onup>2</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>Favorite 3</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript3)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable3) + Skin.String(FavoritesScript3) + !Skin.String(FavoritesButtonName3)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="3">
+ <description>Default XBE Button 3</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>3</onleft>
+ <onright>3</onright>
+ <onup>2</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>Favorite 3</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE3)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable3) + Skin.String(FavoritesXBE3) + !Skin.String(FavoritesButtonName3)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="3">
+ <description>Custom Named Script Button 3</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>3</onleft>
+ <onright>3</onright>
+ <onup>2</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName3)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript3)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable3) + Skin.String(FavoritesScript3) + Skin.String(FavoritesButtonName3)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="3">
+ <description>Custom Named XBEButton 3</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>3</onleft>
+ <onright>3</onright>
+ <onup>2</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName3)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE3)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable3) + Skin.String(FavoritesXBE3) + Skin.String(FavoritesButtonName3)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>206</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(3) | control.isvisible(4)</visible>
+ </control>
+ <control type="image">
+ <description>Button 4 Highlight</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(4)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="4">
+ <description>Default Script Button 4</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>4</onleft>
+ <onright>4</onright>
+ <onup>3</onup>
+ <ondown>5</ondown>
+ <font>font14</font>
+ <label>Favorite 4</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript4)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable4) + Skin.String(FavoritesScript4) + !Skin.String(FavoritesButtonName4)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="4">
+ <description>Default XBE Button 4</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>4</onleft>
+ <onright>4</onright>
+ <onup>3</onup>
+ <ondown>5</ondown>
+ <font>font14</font>
+ <label>Favorite 4</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE4)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable4) + Skin.String(FavoritesXBE4) + !Skin.String(FavoritesButtonName4)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="4">
+ <description>Custom Named Script Button 4</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>4</onleft>
+ <onright>4</onright>
+ <onup>3</onup>
+ <ondown>5</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName4)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript4)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable4) + Skin.String(FavoritesScript4) + Skin.String(FavoritesButtonName4)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="4">
+ <description>Custom Named XBEButton 4</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>4</onleft>
+ <onright>4</onright>
+ <onup>3</onup>
+ <ondown>5</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName4)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE4)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable4) + Skin.String(FavoritesXBE4) + Skin.String(FavoritesButtonName4)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>242</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>Control.IsVisible(4) | Control.IsVisible(5)</visible>
+ </control>
+ <control type="image">
+ <description>Button 5 Highlight</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(5)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="5">
+ <description>Default Script Button 5</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>5</onleft>
+ <onright>5</onright>
+ <onup>4</onup>
+ <ondown>6</ondown>
+ <font>font14</font>
+ <label>Favorite 5</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript5)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable5) + Skin.String(FavoritesScript5) + !Skin.String(FavoritesButtonName5)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="5">
+ <description>Default XBE Button 5</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>5</onleft>
+ <onright>5</onright>
+ <onup>4</onup>
+ <ondown>6</ondown>
+ <font>font14</font>
+ <label>Favorite 5</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE5)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable5) + Skin.String(FavoritesXBE5) + !Skin.String(FavoritesButtonName5)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="5">
+ <description>Custom Named Script Button 5</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>5</onleft>
+ <onright>5</onright>
+ <onup>4</onup>
+ <ondown>6</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName5)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript5)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable5) + Skin.String(FavoritesScript5) + Skin.String(FavoritesButtonName5)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="5">
+ <description>Custom Named XBEButton 5</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>5</onleft>
+ <onright>5</onright>
+ <onup>4</onup>
+ <ondown>6</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName5)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE5)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable5) + Skin.String(FavoritesXBE5) + Skin.String(FavoritesButtonName5)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>278</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(5) | control.isvisible(6)</visible>
+ </control>
+ <control type="image">
+ <description>Button 6 Highlight</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(6)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="6">
+ <description>Default Script Button 6</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>6</onleft>
+ <onright>6</onright>
+ <onup>5</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>Favorite 6</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript6)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable6) + Skin.String(FavoritesScript6) + !Skin.String(FavoritesButtonName6)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="6">
+ <description>Default XBE Button 6</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>6</onleft>
+ <onright>6</onright>
+ <onup>5</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>Favorite 6</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE6)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable6) + Skin.String(FavoritesXBE6) + !Skin.String(FavoritesButtonName6)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="6">
+ <description>Custom Named Script Button 6</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>6</onleft>
+ <onright>6</onright>
+ <onup>5</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName6)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript6)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable6) + Skin.String(FavoritesScript6) + Skin.String(FavoritesButtonName6)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="6">
+ <description>Custom Named XBEButton 6</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>6</onleft>
+ <onright>6</onright>
+ <onup>5</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName6)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE6)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable6) + Skin.String(FavoritesXBE6) + Skin.String(FavoritesButtonName6)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>314</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(6) | control.isvisible(7)</visible>
+ </control>
+ <control type="image">
+ <description>Button 7 Highlight</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(7)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="7">
+ <description>Default Script Button 7</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>7</onleft>
+ <onright>7</onright>
+ <onup>6</onup>
+ <ondown>8</ondown>
+ <font>font14</font>
+ <label>Favorite 7</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript7)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable7) + Skin.String(FavoritesScript7) + !Skin.String(FavoritesButtonName7)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="7">
+ <description>Default XBE Button 7</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>7</onleft>
+ <onright>7</onright>
+ <onup>6</onup>
+ <ondown>8</ondown>
+ <font>font14</font>
+ <label>Favorite 7</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE7)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable7) + Skin.String(FavoritesXBE7) + !Skin.String(FavoritesButtonName7)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="7">
+ <description>Custom Named Script Button 7</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>7</onleft>
+ <onright>7</onright>
+ <onup>6</onup>
+ <ondown>8</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName7)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript7)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable7) + Skin.String(FavoritesScript7) + Skin.String(FavoritesButtonName7)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="7">
+ <description>Custom Named XBEButton 7</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>7</onleft>
+ <onright>7</onright>
+ <onup>6</onup>
+ <ondown>8</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName7)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE7)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable7) + Skin.String(FavoritesXBE7) + Skin.String(FavoritesButtonName7)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>350</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(7) | control.isvisible(8)</visible>
+ </control>
+ <control type="image">
+ <description>Button 8 Highlight</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(8)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="8">
+ <description>Default Script Button 8</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>8</onleft>
+ <onright>8</onright>
+ <onup>7</onup>
+ <ondown>9</ondown>
+ <font>font14</font>
+ <label>Favorite 8</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript8)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable8) + Skin.String(FavoritesScript8) + !Skin.String(FavoritesButtonName8)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="8">
+ <description>Default XBE Button 8</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>8</onleft>
+ <onright>8</onright>
+ <onup>7</onup>
+ <ondown>9</ondown>
+ <font>font14</font>
+ <label>Favorite 8</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE8)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable8) + Skin.String(FavoritesXBE8) + !Skin.String(FavoritesButtonName8)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="8">
+ <description>Custom Named Script Button 8</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>8</onleft>
+ <onright>8</onright>
+ <onup>7</onup>
+ <ondown>9</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName8)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript8)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable8) + Skin.String(FavoritesScript8) + Skin.String(FavoritesButtonName8)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="8">
+ <description>Custom Named XBEButton 8</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>8</onleft>
+ <onright>8</onright>
+ <onup>7</onup>
+ <ondown>9</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName8)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE8)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable8) + Skin.String(FavoritesXBE8) + Skin.String(FavoritesButtonName8)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>386</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(8) | control.isvisible(9)</visible>
+ </control>
+ <control type="image">
+ <description>Button 9 Highlight</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>control.hasfocus(9)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ </control>
+ <control type="button" id="9">
+ <description>Default Script Button 9</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>9</onleft>
+ <onright>9</onright>
+ <onup>8</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>Favorite 9</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript9)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable9) + Skin.String(FavoritesScript9) + !Skin.String(FavoritesButtonName9)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="9">
+ <description>Default XBE Button 9</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>9</onleft>
+ <onright>9</onright>
+ <onup>8</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>Favorite 9</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE9)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable9) + Skin.String(FavoritesXBE9) + !Skin.String(FavoritesButtonName9)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="9">
+ <description>Custom Named Script Button 9</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>9</onleft>
+ <onright>9</onright>
+ <onup>8</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName9)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunScript($INFO[Skin.String(FavoritesScript9)]\default.py)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable9) + Skin.String(FavoritesScript9) + Skin.String(FavoritesButtonName9)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="button" id="9">
+ <description>Custom Named XBEButton 9</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onleft>9</onleft>
+ <onright>9</onright>
+ <onup>8</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>$INFO[Skin.String(FavoritesButtonName9)]</label>
+ <onclick>Dialog.Close(1115)</onclick>
+ <onclick>Dialog.Close(PlayerControls)</onclick>
+ <onclick>XBMC.RunXBE($INFO[Skin.String(FavoritesXBE9)]\default.xbe)</onclick>
+ <visible>Skin.HasSetting(FavoritesButtonEnable9) + Skin.String(FavoritesXBE9) + Skin.String(FavoritesButtonName9)</visible>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>422</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>control.isvisible(9)</visible>
+ </control>
+ </control>
+ </controls>
+</window>
\ No newline at end of file
Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1116_GuidePersonal.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1116_GuidePersonal.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1116_GuidePersonal.xml Sat Apr 21 17:45:26 2007
@@ -8,7 +8,7 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="image">
@@ -18,7 +18,7 @@
<width>290</width>
<height>59</height>
<texture>guide-button-focus.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)] + Control.HasFocus(1)</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(1)</visible>
<animation effect="fade" start="30" time="275" reversible="false">visible</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -34,14 +34,14 @@
<pulseonselect>no</pulseonselect>
<onleft>1</onleft>
<onright>1</onright>
- <onup>8</onup>
+ <onup>9</onup>
<ondown>4</ondown>
<font>font14</font>
<include>190611a</include>
<textoffsetx>30</textoffsetx>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -52,7 +52,7 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="image">
@@ -62,7 +62,7 @@
<width>290</width>
<height>59</height>
<texture>guide-button-focus.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)] + Control.HasFocus(4)</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(4)</visible>
<animation effect="fade" start="30" time="275" reversible="false">visible</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -85,7 +85,7 @@
<textoffsetx>30</textoffsetx>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -96,7 +96,7 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="image">
@@ -106,7 +106,7 @@
<width>290</width>
<height>59</height>
<texture>guide-button-focus.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)] + Control.HasFocus(59)</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(59)</visible>
<animation effect="fade" start="30" time="275" reversible="false">visible</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -129,7 +129,7 @@
<textoffsetx>30</textoffsetx>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -140,7 +140,7 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="image">
@@ -150,7 +150,7 @@
<width>290</width>
<height>59</height>
<texture>guide-button-focus.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)] + Control.HasFocus(6)</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(6)</visible>
<animation effect="fade" start="30" time="275" reversible="false">visible</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -173,7 +173,7 @@
<textoffsetx>30</textoffsetx>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -184,7 +184,7 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="image">
@@ -194,7 +194,7 @@
<width>290</width>
<height>59</height>
<texture>guide-button-focus.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)] + Control.HasFocus(7)</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(7)</visible>
<animation effect="fade" start="30" time="275" reversible="false">visible</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -217,7 +217,7 @@
<textoffsetx>30</textoffsetx>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -228,30 +228,66 @@
<width>290</width>
<height>59</height>
<texture>guide-button-focus.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)] + Control.HasFocus(8)</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(8)</visible>
<animation effect="fade" start="30" time="275" reversible="false">visible</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="button" id="8">
- <description>Reset Settings Label</description>
+ <description>Skin Mod Settings 2</description>
<posx>22</posx>
<posy>268</posy>
<width>290</width>
<height>59</height>
<texturefocus>-</texturefocus>
<texturenofocus>-</texturenofocus>
- <onclick>XBMC.ReplaceWindow(1198)</onclick>
+ <onclick>XBMC.ReplaceWindow(1970)</onclick>
<pulseonselect>no</pulseonselect>
<onleft>8</onleft>
<onright>8</onright>
<onup>7</onup>
+ <ondown>9</ondown>
+ <font>font14</font>
+ <label>Skin Mod Settings 2</label>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+
+
+ <control type="image">
+ <description>Button 7 Image</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)] + Control.HasFocus(9)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="9">
+ <description>Reset Settings Label</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <onclick>XBMC.ReplaceWindow(1198)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <onleft>9</onleft>
+ <onright>9</onright>
+ <onup>8</onup>
<ondown>1</ondown>
<font>font14</font>
<include>19057</include>
<textoffsetx>30</textoffsetx>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
@@ -262,7 +298,7 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
<control type="image">
@@ -272,7 +308,17 @@
<width>230</width>
<height>1</height>
<texture>divider.png</texture>
- <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999)]</visible>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>350</posy>
+ <width>230</width>
+ <height>1</height>
+ <texture>divider.png</texture>
+ <visible>![Window.IsActive(1120) | Window.IsActive(filebrowser) | Window.IsActive(1129) | Window.IsActive(1123) | Window.IsActive(1124) | Window.IsActive(1999) | Window.IsActive(1970) | Window.IsActive(1969)]</visible>
<animation effect="fade" time="100">WindowOpen</animation>
</control>
</controls>
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1969_FavoritesConfig.xml
==============================================================================
--- (empty file)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1969_FavoritesConfig.xml Sat Apr 21 17:45:26 2007
@@ -0,0 +1,1399 @@
+<window type="dialog" id="1969">
+ <defaultcontrol>1</defaultcontrol>
+ <controls>
+ <control type="image">
+ <description>Button 1 Image</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(1) | Control.HasFocus(2) | Control.HasFocus(3) | Control.HasFocus(3000)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="1">
+ <description>Button 1 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable1)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable1)</onclick>
+ <onleft>3000</onleft>
+ <onright>2</onright>
+ <onup>28</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 1</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(2) + !Control.HasFocus(3) + !Control.HasFocus(3000)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="2">
+ <description>Button 1 Set Script Button</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript1)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE1)</onclick>
+ <onleft>1</onleft>
+ <onright>3</onright>
+ <onup>28</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>Set Script 1</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(2)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="3">
+ <description>Button 1 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE1)</onclick>
+ <onclick>Skin.Reset(FavoritesScript1)</onclick>
+ <onleft>2</onleft>
+ <onright>3000</onright>
+ <onup>28</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>Set XBE 1</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(3)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="3000">
+ <description>Button 1 Name Button Button</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName1)</onclick>
+ <onleft>3</onleft>
+ <onright>1</onright>
+ <onup>28</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <label>Name Button 1</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(3000)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 2 Image</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(4) | Control.HasFocus(5) | Control.HasFocus(6) | Control.HasFocus(60)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="4">
+ <description>Button 2 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable2)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable2)</onclick>
+ <onleft>60</onleft>
+ <onright>5</onright>
+ <onup>1</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 2</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(5) + !Control.HasFocus(6) + !Control.HasFocus(60)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="5">
+ <description>Button 2 Set Script Button</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript2)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE2)</onclick>
+ <onleft>4</onleft>
+ <onright>6</onright>
+ <onup>1</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>Set Script 2</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(5)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="6">
+ <description>Button 2 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE2)</onclick>
+ <onclick>Skin.Reset(FavoritesScript2)</onclick>
+ <onleft>5</onleft>
+ <onright>60</onright>
+ <onup>1</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>Set XBE 2</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(6)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="60">
+ <description>Button 2 Name Button Button</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName2)</onclick>
+ <onleft>6</onleft>
+ <onright>4</onright>
+ <onup>1</onup>
+ <ondown>7</ondown>
+ <font>font14</font>
+ <label>Name Button 2</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(60)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 3 Image</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(7) | Control.HasFocus(8) | Control.HasFocus(9) | Control.HasFocus(90)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="7">
+ <description>Button 3 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable3)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable3)</onclick>
+ <onleft>90</onleft>
+ <onright>8</onright>
+ <onup>4</onup>
+ <ondown>10</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 3</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(8) + !Control.HasFocus(9) + !Control.HasFocus(90)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="8">
+ <description>Button 3 Set Script Button</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript3)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE3)</onclick>
+ <onleft>7</onleft>
+ <onright>9</onright>
+ <onup>4</onup>
+ <ondown>10</ondown>
+ <font>font14</font>
+ <label>Set Script 3</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(8)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="9">
+ <description>Button 3 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE3)</onclick>
+ <onclick>Skin.Reset(FavoritesScript3)</onclick>
+ <onleft>8</onleft>
+ <onright>90</onright>
+ <onup>4</onup>
+ <ondown>10</ondown>
+ <font>font14</font>
+ <label>Set XBE 3</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(9)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="90">
+ <description>Button 3 Name Button Button</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName3)</onclick>
+ <onleft>9</onleft>
+ <onright>7</onright>
+ <onup>4</onup>
+ <ondown>10</ondown>
+ <font>font14</font>
+ <label>Name Button 3</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(90)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 4 Image</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(10) | Control.HasFocus(11) | Control.HasFocus(12) | Control.HasFocus(120)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="10">
+ <description>Button 4 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable4)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable4)</onclick>
+ <onleft>120</onleft>
+ <onright>11</onright>
+ <onup>7</onup>
+ <ondown>13</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 4</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(11) + !Control.HasFocus(12) + !Control.HasFocus(120)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="11">
+ <description>Button 4 Set Script Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript4)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE4)</onclick>
+ <onleft>10</onleft>
+ <onright>12</onright>
+ <onup>7</onup>
+ <ondown>13</ondown>
+ <font>font14</font>
+ <label>Set Script 4</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(11)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="12">
+ <description>Button 4 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE4)</onclick>
+ <onclick>Skin.Reset(FavoritesScript4)</onclick>
+ <onleft>11</onleft>
+ <onright>120</onright>
+ <onup>7</onup>
+ <ondown>13</ondown>
+ <font>font14</font>
+ <label>Set XBE 4</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(12)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="120">
+ <description>Button 4 Name Button Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName4)</onclick>
+ <onleft>12</onleft>
+ <onright>10</onright>
+ <onup>7</onup>
+ <ondown>13</ondown>
+ <font>font14</font>
+ <label>Name Button 4</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(120)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 5 Image</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(13) | Control.HasFocus(14) | Control.HasFocus(15) | Control.HasFocus(150)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="13">
+ <description>Button 5 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable5)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable5)</onclick>
+ <onleft>150</onleft>
+ <onright>14</onright>
+ <onup>10</onup>
+ <ondown>16</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 5</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(14) + !Control.HasFocus(15) + !Control.HasFocus(150)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="14">
+ <description>Button 5 Set Script Button</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript5)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE5)</onclick>
+ <onleft>13</onleft>
+ <onright>15</onright>
+ <onup>10</onup>
+ <ondown>16</ondown>
+ <font>font14</font>
+ <label>Set Script 5</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(14)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="15">
+ <description>Button 5 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE5)</onclick>
+ <onclick>Skin.Reset(FavoritesScript5)</onclick>
+ <onleft>14</onleft>
+ <onright>150</onright>
+ <onup>10</onup>
+ <ondown>16</ondown>
+ <font>font14</font>
+ <label>Set XBE 5</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(15)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="150">
+ <description>Button 5 Name Button Button</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName5)</onclick>
+ <onleft>15</onleft>
+ <onright>13</onright>
+ <onup>10</onup>
+ <ondown>16</ondown>
+ <font>font14</font>
+ <label>Name Button 5</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(150)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 6 Image</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(16) | Control.HasFocus(17) | Control.HasFocus(18) | Control.HasFocus(180)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="16">
+ <description>Button 6 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable6)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable6)</onclick>
+ <onleft>180</onleft>
+ <onright>17</onright>
+ <onup>13</onup>
+ <ondown>19</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 6</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(17) + !Control.HasFocus(18) + !Control.HasFocus(180)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="17">
+ <description>Button 6 Set Script Button</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript6)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE6)</onclick>
+ <onleft>16</onleft>
+ <onright>18</onright>
+ <onup>13</onup>
+ <ondown>19</ondown>
+ <font>font14</font>
+ <label>Set Script 6</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(17)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="18">
+ <description>Button 6 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE6)</onclick>
+ <onclick>Skin.Reset(FavoritesScript6)</onclick>
+ <onleft>17</onleft>
+ <onright>180</onright>
+ <onup>13</onup>
+ <ondown>19</ondown>
+ <font>font14</font>
+ <label>Set XBE 6</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(18)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="180">
+ <description>Button 6 Name Button Button</description>
+ <posx>22</posx>
+ <posy>268</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName6)</onclick>
+ <onleft>18</onleft>
+ <onright>16</onright>
+ <onup>13</onup>
+ <ondown>19</ondown>
+ <font>font14</font>
+ <label>Name Button 6</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(180)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 7 Image</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(19) | Control.HasFocus(20) | Control.HasFocus(21) | Control.HasFocus(210)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="19">
+ <description>Button 7 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable7)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable7)</onclick>
+ <onleft>210</onleft>
+ <onright>20</onright>
+ <onup>16</onup>
+ <ondown>22</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 7</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(20) + !Control.HasFocus(21) + !Control.HasFocus(210)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="20">
+ <description>Button 7 Set Script Button</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript7)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE7)</onclick>
+ <onleft>19</onleft>
+ <onright>21</onright>
+ <onup>16</onup>
+ <ondown>22</ondown>
+ <font>font14</font>
+ <label>Set Script 7</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(20)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="21">
+ <description>Button 7 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE7)</onclick>
+ <onclick>Skin.Reset(FavoritesScript7)</onclick>
+ <onleft>20</onleft>
+ <onright>210</onright>
+ <onup>16</onup>
+ <ondown>22</ondown>
+ <font>font14</font>
+ <label>Set XBE 7</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(21)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="210">
+ <description>Button 7 Name Button Button</description>
+ <posx>22</posx>
+ <posy>304</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName7)</onclick>
+ <onleft>210</onleft>
+ <onright>19</onright>
+ <onup>16</onup>
+ <ondown>22</ondown>
+ <font>font14</font>
+ <label>Name Button 7</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(210)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 8 Image</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(22) | Control.HasFocus(23) | Control.HasFocus(24) | Control.HasFocus(240)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="22">
+ <description>Button 8 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable8)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable8)</onclick>
+ <onleft>240</onleft>
+ <onright>23</onright>
+ <onup>19</onup>
+ <ondown>25</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 8</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(23) + !Control.HasFocus(24) + !Control.HasFocus(240)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="23">
+ <description>Button 8 Set Script Button</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript8)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE8)</onclick>
+ <onleft>22</onleft>
+ <onright>24</onright>
+ <onup>19</onup>
+ <ondown>25</ondown>
+ <font>font14</font>
+ <label>Set Script 8</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(23)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="24">
+ <description>Button 8 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE8)</onclick>
+ <onclick>Skin.Reset(FavoritesScript8)</onclick>
+ <onleft>23</onleft>
+ <onright>240</onright>
+ <onup>19</onup>
+ <ondown>25</ondown>
+ <font>font14</font>
+ <label>Set XBE 8</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(24)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="240">
+ <description>Button 8 Name Button Button</description>
+ <posx>22</posx>
+ <posy>340</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName8)</onclick>
+ <onleft>24</onleft>
+ <onright>22</onright>
+ <onup>19</onup>
+ <ondown>25</ondown>
+ <font>font14</font>
+ <label>Name Button 8</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(240)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 9 Image</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(25) | Control.HasFocus(26) | Control.HasFocus(27) | Control.HasFocus(270)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="25">
+ <description>Button 9 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable9)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable9)</onclick>
+ <onleft>270</onleft>
+ <onright>26</onright>
+ <onup>22</onup>
+ <ondown>28</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 9</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(26) + !Control.HasFocus(27) + !Control.HasFocus(270)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="26">
+ <description>Button 9 Set Script Button</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript9)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE9)</onclick>
+ <onleft>25</onleft>
+ <onright>27</onright>
+ <onup>22</onup>
+ <ondown>28</ondown>
+ <font>font14</font>
+ <label>Set Script 9</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(26)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="27">
+ <description>Button 9 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE9)</onclick>
+ <onclick>Skin.Reset(FavoritesScript9)</onclick>
+ <onleft>26</onleft>
+ <onright>270</onright>
+ <onup>22</onup>
+ <ondown>28</ondown>
+ <font>font14</font>
+ <label>Set XBE 9</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(27)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="270">
+ <description>Button 9 Name Button Button</description>
+ <posx>22</posx>
+ <posy>376</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName9)</onclick>
+ <onleft>27</onleft>
+ <onright>25</onright>
+ <onup>22</onup>
+ <ondown>28</ondown>
+ <font>font14</font>
+ <label>Name Button 9</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(270)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Button 10 Image</description>
+ <posx>22</posx>
+ <posy>412</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(28) | Control.HasFocus(29) | Control.HasFocus(30) | Control.HasFocus(300)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="28">
+ <description>Button 10 Enable Favorites Button</description>
+ <posx>22</posx>
+ <posy>412</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <selected>Skin.HasSetting(FavoritesButtonEnable10)</selected>
+ <onclick>Skin.ToggleSetting(FavoritesButtonEnable10)</onclick>
+ <onleft>300</onleft>
+ <onright>29</onright>
+ <onup>25</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>Enable Favorites Button 10</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">!Control.HasFocus(29) + !Control.HasFocus(30) + !Control.HasFocus(300)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="29">
+ <description>Button 10 Set Script Button</description>
+ <posx>22</posx>
+ <posy>412</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesScript10)</onclick>
+ <onclick>Skin.Reset(FavoritesXBE10)</onclick>
+ <onleft>28</onleft>
+ <onright>30</onright>
+ <onup>25</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>Set Script 10</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(29)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="30">
+ <description>Button 10 XBE Button Button</description>
+ <posx>22</posx>
+ <posy>412</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetPath(FavoritesXBE10)</onclick>
+ <onclick>Skin.Reset(FavoritesScript10)</onclick>
+ <onleft>29</onleft>
+ <onright>300</onright>
+ <onup>25</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>Set XBE 10</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(30)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="300">
+ <description>Button 10 Name Button Button</description>
+ <posx>22</posx>
+ <posy>412</posy>
+ <width>350</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <pulseonselect>no</pulseonselect>
+ <onclick>Skin.SetString(FavoritesButtonName10)</onclick>
+ <onleft>30</onleft>
+ <onright>28</onright>
+ <onup>25</onup>
+ <ondown>1</ondown>
+ <font>font14</font>
+ <label>Name Button 10</label>
+ <textoffsetx>40</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-white</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(300)</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 1</description>
+ <posx>29</posx>
+ <posy>100</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(1) | Control.HasFocus(2) | Control.HasFocus(3) | Control.HasFocus(3000)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 1</description>
+ <posx>305</posx>
+ <posy>100</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(1) | Control.HasFocus(2) | Control.HasFocus(3) | Control.HasFocus(3000)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 2</description>
+ <posx>29</posx>
+ <posy>136</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(4) | Control.HasFocus(5) | Control.HasFocus(6) | Control.HasFocus(60)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 2</description>
+ <posx>305</posx>
+ <posy>136</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(4) | Control.HasFocus(5) | Control.HasFocus(6) | Control.HasFocus(60)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 3</description>
+ <posx>29</posx>
+ <posy>172</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(7) | Control.HasFocus(8) | Control.HasFocus(9) | Control.HasFocus(90)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 3</description>
+ <posx>305</posx>
+ <posy>172</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(7) | Control.HasFocus(8) | Control.HasFocus(9) | Control.HasFocus(90)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 4</description>
+ <posx>29</posx>
+ <posy>208</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(10) | Control.HasFocus(11) | Control.HasFocus(12) | Control.HasFocus(120)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 4</description>
+ <posx>305</posx>
+ <posy>208</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(10) | Control.HasFocus(11) | Control.HasFocus(12) | Control.HasFocus(120)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 5</description>
+ <posx>29</posx>
+ <posy>244</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(13) | Control.HasFocus(14) | Control.HasFocus(15) | Control.HasFocus(150)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 5</description>
+ <posx>305</posx>
+ <posy>244</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(13) | Control.HasFocus(14) | Control.HasFocus(15) | Control.HasFocus(150)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 6</description>
+ <posx>29</posx>
+ <posy>280</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(16) | Control.HasFocus(17) | Control.HasFocus(18) | Control.HasFocus(180)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 6</description>
+ <posx>305</posx>
+ <posy>280</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(16) | Control.HasFocus(17) | Control.HasFocus(18) | Control.HasFocus(180)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 7</description>
+ <posx>29</posx>
+ <posy>316</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(19) | Control.HasFocus(20) | Control.HasFocus(21) | Control.HasFocus(210)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 7</description>
+ <posx>305</posx>
+ <posy>316</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(19) | Control.HasFocus(20) | Control.HasFocus(21) | Control.HasFocus(210)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 8</description>
+ <posx>29</posx>
+ <posy>352</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(22) | Control.HasFocus(23) | Control.HasFocus(24) | Control.HasFocus(240)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 8</description>
+ <posx>305</posx>
+ <posy>352</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(22) | Control.HasFocus(23) | Control.HasFocus(24) | Control.HasFocus(240)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 9</description>
+ <posx>29</posx>
+ <posy>388</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(25) | Control.HasFocus(26) | Control.HasFocus(27) | Control.HasFocus(270)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 9</description>
+ <posx>305</posx>
+ <posy>388</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(25) | Control.HasFocus(26) | Control.HasFocus(27) | Control.HasFocus(270)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Left Arrow 10</description>
+ <posx>29</posx>
+ <posy>424</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-left.png</texture>
+ <visible>[Control.HasFocus(28) | Control.HasFocus(29) | Control.HasFocus(30) | Control.HasFocus(300)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Right Arrow 10</description>
+ <posx>305</posx>
+ <posy>424</posy>
+ <width>16</width>
+ <height>32</height>
+ <texture>selectarrow-right.png</texture>
+ <visible>[Control.HasFocus(28) | Control.HasFocus(29) | Control.HasFocus(30) | Control.HasFocus(300)]</visible>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+
+
+
+
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>98</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>134</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>170</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>206</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>242</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>278</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>314</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>350</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>386</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>422</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="image">
+ <description>Divider</description>
+ <posx>45</posx>
+ <posy>458</posy>
+ <width>230</width>
+ <height>1</height>
+ <visible>yes</visible>
+ <texture>divider.png</texture>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ </controls>
+</window>
\ No newline at end of file
Added: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1970_GuideSkinModOptions2.xml
==============================================================================
--- (empty file)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1970_GuideSkinModOptions2.xml Sat Apr 21 17:45:26 2007
@@ -0,0 +1,389 @@
+<window type="dialog" id="1970">
+ <defaultcontrol>1</defaultcontrol>
+ <controls>
+ <control type="image">
+ <description>Button 1 Image</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(1) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="1">
+ <description>Disable Kai Button</description>
+ <posx>22</posx>
+ <posy>88</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <selected>Skin.HasSetting(KaiInfo)</selected>
+ <onclick>Skin.ToggleSetting(KaiInfo)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>Disable Kai Info</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>1</onleft>
+ <onright>1</onright>
+ <onup>5</onup>
+ <ondown>2</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Button 2 Image</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(2) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="2">
+ <description>T3ch Button</description>
+ <posx>22</posx>
+ <posy>124</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <selected>Skin.HasSetting(T3CHButton)</selected>
+ <onclick>Skin.ToggleSetting(T3CHButton)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>XBMC Updater in Live Place</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>2</onleft>
+ <onright>2</onright>
+ <onup>1</onup>
+ <ondown>300</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Button 300 Image</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(300) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="300">
+ <description>Favorites Button</description>
+ <posx>22</posx>
+ <posy>160</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <onclick>XBMC.ReplaceWindow(1969)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>Configure Favorites</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>300</onleft>
+ <onright>300</onright>
+ <onup>2</onup>
+ <ondown>3</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="image">
+ <description>Button 3 Image</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>[Control.HasFocus(3) | Control.HasFocus(30) | Control.HasFocus(31)] + !Window.IsActive(1969)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="radiobutton" id="3">
+ <description>Homebrew XBE Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <selected>Skin.HasSetting(HomebrewXBE)</selected>
+ <onclick>Skin.ToggleSetting(HomebrewXBE)</onclick>
+ <onclick>Skin.Reset(HomebrewScript)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>Custom XBE Button</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>30</onleft>
+ <onright>30</onright>
+ <onup>300</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>!Control.HasFocus(30) + !Control.HasFocus(31) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="radiobutton" id="30">
+ <description>Homebrew Script Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <selected>Skin.HasSetting(HomebrewScript)</selected>
+ <onclick>Skin.ToggleSetting(HomebrewScript)</onclick>
+ <onclick>Skin.Reset(HomebrewXBE)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>Custom Script Button</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>31</onleft>
+ <onright>31</onright>
+ <onup>300</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(30) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+ <control type="radiobutton" id="31">
+ <description>Homebrew XBE Button</description>
+ <posx>22</posx>
+ <posy>196</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <selected>Skin.HasSetting(HomebrewXBE)</selected>
+ <onclick>Skin.ToggleSetting(HomebrewXBE)</onclick>
+ <onclick>Skin.Reset(HomebrewScript)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>Custom XBE Button</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>30</onleft>
+ <onright>30</onright>
+ <onup>300</onup>
+ <ondown>4</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible allowhiddenfocus="true">Control.HasFocus(31) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
+ </control>
+
+ <control type="image">
+ <description>Button 4 Image</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texture>guide-button-focus.png</texture>
+ <visible>Control.HasFocus(4) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" start="30" time="275" reversible="false">visible</animation>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ </control>
+ <control type="button" id="4">
+ <description>Set Homebrew XBE Button</description>
+ <posx>22</posx>
+ <posy>232</posy>
+ <width>290</width>
+ <height>59</height>
+ <texturefocus>-</texturefocus>
+ <texturenofocus>-</texturenofocus>
+ <onclick>Skin.SetPath(HomebrewXBE_path)</onclick>
+ <pulseonselect>no</pulseonselect>
+ <label>Specify Custom XBE Folder</label>
+ <visible>!Window.IsActive(1969)</visible>
+ <onleft>4</onleft>
+ <onright>4</onright>
+ <onup>3</onup>
+ <ondown>5</ondown>
+ <font>font14</font>
+ <textoffsetx>30</textoffsetx>
+ <include>TextcolorBlack</include>
+ <include>shadow-grey</include>
+ <visible>Skin.HasSetting(HomebrewXBE) + !Skin.HasSetting(HomebrewScript) + !Window.IsActive(1969)</visible>
+ <animation effect="fade" time="100">WindowOpen</animation>
+ <animation effect="slide" end="-2,0" time="275" reversible="false">focus</animation>
==============================================================================
Diff truncated at 200k characters