Posts: 14,230
Joined: Mar 2010
Reputation:
585
PatK
Team-Kodi Member
Posts: 14,230
Looking at the skins DialogMenuButton.xml file and comparing the differences between the skins reveals the differences to be quite dramatic while Confluence has this.. and it seems to work for you.
<control type="button" id="3">
<description>Shutdown button</description>
<width>340</width>
<height>40</height>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<align>center</align>
<textwidth>290</textwidth>
<texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus>
<texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus>
<onclick>XBMC.Powerdown()</onclick>
<visible>System.CanPowerDown</visible>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>13016</label>
</control>
Transparency! has code for multiple shutdown times, and animated rollovers etc.. If you're comfortable with editing xml code, you might want to replace the <onclick>Quit</onclick> in the Quit Button of T! with <onclick>XBMC.Powerdown()</onclick> whihc seems to be the obvious difference and see if that does it for you. I'm not sure what the <pulseselect> is for but it looks like Confluence it's 'no' while T! is 'yes' so you might have a bit more work..
<control type="button" id="11">
<description>Exit xbmc</description>
<width>60</width>
<height>60</height>
<texturefocus>shut-exit-focus.png</texturefocus>
<texturenofocus>shut-exit-nofocus.png</texturenofocus>
<onclick>Quit</onclick>
<pulseonselect>yes</pulseonselect>
<font>-</font>
<label>-</label>
<visible>!Skin.HasSetting(Hide_Shutdown_Exit)</visible>
</control>
or supplant it with one of the 'other buttons you don't use. Bug no clue, what's that ?
Posts: 15,282
Joined: Jan 2009
Reputation:
739
ronie
Team-Kodi Member
Posts: 15,282
you can define the shutdown action in xbmc settings.
there's no need to tweak the xml code.
Posts: 149
Joined: Mar 2011
Reputation:
0
hmm strange.
I did not touch anything after installing the skin. Transparency is there a change to the installation?
I'll do some tests and look at it.
I'll let you know.
Thank you.