I can succesfully launch both the scripts, the buttons highlight correctly, the descriptions show up correctly....The only thing that refuses to show is the label for the button itself...Does anybody know what I'm doing wrong here? I of course have the label added to translate.xml, and i've checked and checked and checked again, and its exactly as it should be....In fact, I'll post that under the first snippet of code here as proof. Here's part of what i've added...
CODE
<control type="button" id="3118">
<description>Shutdown PC Button</description>
<posx>340</posx>
<posy>178</posy>
<width>350</width>
<height>59</height>
<label>25009</label>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
<font>font14</font>
<textoffsetx>40</textoffsetx>
<aligny>center</aligny>
<texturefocus>guide-button-focus.png</texturefocus>
<texturenofocus>-</texturenofocus>
<alttexturefocus>guide-button-focus.png</alttexturefocus>
<onclick>XBMC.RunScript(Q:\scripts\ShutdownPConLAN\sol.py)</onclick>
<pulseonselect>no</pulseonselect>
<onleft>3117</onleft>
<onright>3117</onright>
<onup>3113</onup>
<ondown>3116</ondown>
<visible allowhiddenfocus="true">Control.HasFocus(3118)</visible>
<animation effect="fade" delay="450" time="200">WindowOpen</animation>
<animation effect="fade" time="200">WindowClose</animation>
<animation effect="zoom" start="95" end="100" center="515,245" time="300" reversible="false">focus</animation>
</control>
<control type="button" id="3117">
<description>Start PC Button</description>
<posx>340</posx>
<posy>178</posy>
<width>350</width>
<height>59</height>
<label>25008</label>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
<font>font14</font>
<textoffsetx>40</textoffsetx>
<aligny>center</aligny>
<texturefocus>guide-button-focus.png</texturefocus>
<texturenofocus>-</texturenofocus>
<alttexturefocus>guide-button-focus.png</alttexturefocus>
<onclick>XBMC.RunScript(Q:\scripts\Tweaked WOL\default.py)</onclick>
<pulseonselect>no</pulseonselect>
<onleft>3118</onleft>
<onright>3118</onright>
<onup>3113</onup>
<ondown>3116</ondown>
<visible allowhiddenfocus="true">System.HasNetwork + System.LoggedOn + System.HasLocks + System.HasLoginScreen + Skin.HasSetting(USE_RemoteComputer) + !Control.HasFocus(3118)</visible>
<animation effect="fade" delay="450" time="200">WindowOpen</animation>
<animation effect="fade" time="200">WindowClose</animation>
<animation effect="zoom" start="95" end="100" center="515,245" time="300" reversible="false">focus</animation>
</control>
<description>Shutdown PC Button</description>
<posx>340</posx>
<posy>178</posy>
<width>350</width>
<height>59</height>
<label>25009</label>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
<font>font14</font>
<textoffsetx>40</textoffsetx>
<aligny>center</aligny>
<texturefocus>guide-button-focus.png</texturefocus>
<texturenofocus>-</texturenofocus>
<alttexturefocus>guide-button-focus.png</alttexturefocus>
<onclick>XBMC.RunScript(Q:\scripts\ShutdownPConLAN\sol.py)</onclick>
<pulseonselect>no</pulseonselect>
<onleft>3117</onleft>
<onright>3117</onright>
<onup>3113</onup>
<ondown>3116</ondown>
<visible allowhiddenfocus="true">Control.HasFocus(3118)</visible>
<animation effect="fade" delay="450" time="200">WindowOpen</animation>
<animation effect="fade" time="200">WindowClose</animation>
<animation effect="zoom" start="95" end="100" center="515,245" time="300" reversible="false">focus</animation>
</control>
<control type="button" id="3117">
<description>Start PC Button</description>
<posx>340</posx>
<posy>178</posy>
<width>350</width>
<height>59</height>
<label>25008</label>
<include>TextcolorBlack</include>
<include>shadow-grey</include>
<font>font14</font>
<textoffsetx>40</textoffsetx>
<aligny>center</aligny>
<texturefocus>guide-button-focus.png</texturefocus>
<texturenofocus>-</texturenofocus>
<alttexturefocus>guide-button-focus.png</alttexturefocus>
<onclick>XBMC.RunScript(Q:\scripts\Tweaked WOL\default.py)</onclick>
<pulseonselect>no</pulseonselect>
<onleft>3118</onleft>
<onright>3118</onright>
<onup>3113</onup>
<ondown>3116</ondown>
<visible allowhiddenfocus="true">System.HasNetwork + System.LoggedOn + System.HasLocks + System.HasLoginScreen + Skin.HasSetting(USE_RemoteComputer) + !Control.HasFocus(3118)</visible>
<animation effect="fade" delay="450" time="200">WindowOpen</animation>
<animation effect="fade" time="200">WindowClose</animation>
<animation effect="zoom" start="95" end="100" center="515,245" time="300" reversible="false">focus</animation>
</control>
and the labels that aren't showing up, as they're seen in translate.xml
CODE
<include name="25008">
<label>Start PC</label>
</include>
<include name="25009">
<label>Shutdown PC</label>
</include>

