[xbmc-strm-collection commit] r129 - in trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360: Extras/CNN Extras/CarbonGameTra...

1 view
Skip to first unread message

codesite...@google.com

unread,
Apr 25, 2007, 12:32:34 AM4/25/07
to xbm...@googlegroups.com
Author: eleniontolto
Date: Tue Apr 24 21:32:14 2007
New Revision: 129

Removed:
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CarbonGameTrailersRssReader/img/gt_background_nolines.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CarbonGameTrailersRssReader/img/gt_dialog_background.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CarbonGameTrailersRssReader/img/gt_submenu_bottom.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CarbonGameTrailersRssReader/img/gt_submenu_top.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/G4tv.com xbmcCAST/images/
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/img/gt_background_nolines.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/img/gt_dialog_background.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/img/gt_submenu_bottom.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GameTrailersRssReader/img/gt_submenu_top.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GlassGameTrailersRssReader/img/gt_background_nolines.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GlassGameTrailersRssReader/img/gt_dialog_background.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GlassGameTrailersRssReader/img/gt_submenu_bottom.jpg
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/GlassGameTrailersRssReader/img/gt_submenu_top.jpg
Modified:
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/carbondefault.py
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/glassdefault.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/Custom1983_CategoryButton6.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1984_CategoryButton5.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1985_CategoryButton4.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1986_CategoryButton3.xml
trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1987_CategoryButton2.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

Log:
[MC360 Mod]Removed: Uneccesary Images in default Scripts
Fixed: Category Mode dialogs and Category Mode Config Dialogs wouldn't open
Fixed: Default scripts wouldn't launch.
Fixed: Accidentally changed focused text color in CNN script back to white.


Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/carbondefault.py
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/carbondefault.py (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/carbondefault.py Tue Apr 24 21:32:14 2007
@@ -243,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], textColor='0xFF000000', textXOffset=17)
+ btn = xbmcgui.ControlButton(85, 80+27*i, 140, 27, CATEGORIES[i], textColor='0xFF000000', textXOffset=17, focusedColor='0xFF000000')
self.addControl(btn)
self.btnCategories.append(btn)

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 Tue Apr 24 21:32:14 2007
@@ -243,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], textColor='0xFF000000', textXOffset=17)
+ btn = xbmcgui.ControlButton(85, 80+27*i, 140, 27, CATEGORIES[i], textColor='0xFF000000', textXOffset=17, focusedColor='0xFF000000')
self.addControl(btn)
self.btnCategories.append(btn)

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/glassdefault.py
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/glassdefault.py (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/Extras/CNN/glassdefault.py Tue Apr 24 21:32:14 2007
@@ -243,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], textColor='0xFF000000', textXOffset=17)
+ btn = xbmcgui.ControlButton(85, 80+27*i, 140, 27, CATEGORIES[i], textColor='0xFF000000', textXOffset=17, focusedColor='0xFF000000')
self.addControl(btn)
self.btnCategories.append(btn)

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 Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1982">
+<window type="dialog" id="1977">
<defaultcontrol>1</defaultcontrol>
<previouswindow>1994</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

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 Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1982">
+<window type="dialog" id="1978">
<defaultcontrol>1</defaultcontrol>
<previouswindow>1994</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

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 Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1982">
+<window type="dialog" id="1979">
<defaultcontrol>1</defaultcontrol>
<previouswindow>1994</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

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 Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1982">
+<window type="dialog" id="1980">
<defaultcontrol>1</defaultcontrol>
<previouswindow>1994</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

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 Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1982">
+<window type="dialog" id="1981">
<defaultcontrol>1</defaultcontrol>
<previouswindow>1994</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1983_CategoryButton6.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1983_CategoryButton6.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1983_CategoryButton6.xml Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1988">
+<window type="dialog" id="1983">
<defaultcontrol>7500</defaultcontrol>
<previouswindow>1996</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1984_CategoryButton5.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1984_CategoryButton5.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1984_CategoryButton5.xml Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1988">
+<window type="dialog" id="1984">
<defaultcontrol>7500</defaultcontrol>
<previouswindow>1996</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1985_CategoryButton4.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1985_CategoryButton4.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1985_CategoryButton4.xml Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1988">
+<window type="dialog" id="1985">
<defaultcontrol>7500</defaultcontrol>
<previouswindow>1996</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1986_CategoryButton3.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1986_CategoryButton3.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1986_CategoryButton3.xml Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1988">
+<window type="dialog" id="1986">
<defaultcontrol>7500</defaultcontrol>
<previouswindow>1996</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1987_CategoryButton2.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1987_CategoryButton2.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/Custom1987_CategoryButton2.xml Tue Apr 24 21:32:14 2007
@@ -1,4 +1,4 @@
-<window type="dialog" id="1988">
+<window type="dialog" id="1987">
<defaultcontrol>7500</defaultcontrol>
<previouswindow>1996</previouswindow>
<animation effect="fade" time="200">WindowOpen</animation>

Modified: 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/custom1974_VideoMarketplace2.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1974_VideoMarketplace2.xml Tue Apr 24 21:32:14 2007
@@ -974,7 +974,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CNN</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CNN\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>2</onup>
@@ -993,7 +993,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CNN\glassdefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CNN\glassdefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>2</onup>
@@ -1012,7 +1012,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CNN\carbondefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CNN\carbondefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>2</onup>
@@ -1724,7 +1724,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\GameTrailersRssReader</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\GameTrailersRssReader\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>3</onup>
@@ -1743,7 +1743,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\GlassGameTrailersRssReader</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\GlassGameTrailersRssReader\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>3</onup>
@@ -1762,7 +1762,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CarbonGameTrailersRssReader</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CarbonGameTrailersRssReader\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>3</onup>
@@ -2455,7 +2455,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\ComedyCentral</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\ComedyCentral\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>4</onup>
@@ -2474,7 +2474,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\ComedyCentral\glassdefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\ComedyCentral\glassdefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>4</onup>
@@ -2493,7 +2493,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\ComedyCentral\carbondefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\ComedyCentral\carbondefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>4</onup>
@@ -3258,7 +3258,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\scripts\Apple Movie Trailers</onclick>
+ <onclick>XBMC.RunScript(Q:\scripts\Apple Movie Trailers\default.py)</onclick>
<onleft>6</onleft>
<onright>6</onright>
<onup>9</onup>
@@ -3970,7 +3970,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\G4tv.com xbmcCAST</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\G4tv.com xbmcCAST\default.py)</onclick>
<onleft>1</onleft>
<onright>1</onright>
<onup>7</onup>
@@ -3989,7 +3989,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\G4tv.com xbmcCAST\glassdefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\G4tv.com xbmcCAST\glassdefault.py)</onclick>
<onleft>1</onleft>
<onright>1</onright>
<onup>7</onup>
@@ -4008,7 +4008,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\G4tv.com xbmcCAST\carbondefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\G4tv.com xbmcCAST\carbondefault.py)</onclick>
<onleft>1</onleft>
<onright>1</onright>
<onup>7</onup>

Modified: trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1996_VideoMarketplace.xml
==============================================================================
--- trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1996_VideoMarketplace.xml (original)
+++ trunk/MC360 v1.x Video Marketplace Mod/XBMC/Skin/MC360/PAL/custom1996_VideoMarketplace.xml Tue Apr 24 21:32:14 2007
@@ -975,7 +975,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CNN</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CNN\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>2</onup>
@@ -994,7 +994,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CNN\glassdefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CNN\glassdefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>2</onup>
@@ -1013,7 +1013,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CNN\carbondefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CNN\carbondefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>2</onup>
@@ -1725,7 +1725,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\GameTrailersRssReader</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\GameTrailersRssReader\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>3</onup>
@@ -1744,7 +1744,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\GlassGameTrailersRssReader</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\GlassGameTrailersRssReader\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>3</onup>
@@ -1763,7 +1763,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\CarbonGameTrailersRssReader</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\CarbonGameTrailersRssReader\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>3</onup>
@@ -2456,7 +2456,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\ComedyCentral</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\ComedyCentral\default.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>4</onup>
@@ -2475,7 +2475,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\ComedyCentral\glassdefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\ComedyCentral\glassdefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>4</onup>
@@ -2494,7 +2494,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\ComedyCentral\carbondefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\ComedyCentral\carbondefault.py)</onclick>
<onleft>7</onleft>
<onright>7</onright>
<onup>4</onup>
@@ -3259,7 +3259,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\scripts\Apple Movie Trailers</onclick>
+ <onclick>XBMC.RunScript(Q:\scripts\Apple Movie Trailers\default.py)</onclick>
<onleft>6</onleft>
<onright>6</onright>
<onup>9</onup>
@@ -3971,7 +3971,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\G4tv.com xbmcCAST</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\G4tv.com xbmcCAST\default.py)</onclick>
<onleft>1</onleft>
<onright>1</onright>
<onup>7</onup>
@@ -3990,7 +3990,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\G4tv.com xbmcCAST\glassdefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\G4tv.com xbmcCAST\glassdefault.py)</onclick>
<onleft>1</onleft>
<onright>1</onright>
<onup>7</onup>
@@ -4009,7 +4009,7 @@
<include>shadow-grey</include>
<texturefocus>button-liveplace-big-nofocus.png</texturefocus>
<texturenofocus>button-liveplace-big-nofocus.png</texturenofocus>
- <onclick>Q:\skin\MC360\extras\G4tv.com xbmcCAST\carbondefault.py)</onclick>
+ <onclick>XBMC.RunScript(Q:\skin\MC360\extras\G4tv.com xbmcCAST\carbondefault.py)</onclick>
<onleft>1</onleft>
<onright>1</onright>
<onup>7</onup>

Reply all
Reply to author
Forward
0 new messages