I upgraded to Kodi while I still had XBMCLauncher installed. the custom shutdown menu was working fine.
now after upgrading to Launcher4Kodi, and choosing to install the custom shutdown menu, all i get is the default Kodi shutdown menu.
i am using confluence, and i have reinstalled the launcher 2x.
edit: i replaced my DialogButtonMenu.xml with the following to get back what I was used to seeing ala the image in the first post of this thread. I also fixed the paths to the py scripts as per an earlier post from March.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<window type="buttonMenu">
<defaultcontrol>9001</defaultcontrol>
<include>dialogeffect</include>
<coordinates>
<system>1</system>
<left>0</left>
<top>0</top>
</coordinates>
<controls>
<control type="button" id="9001">
<description>Make sure we hit the first button in the group list and not the close window button</description>
<left>-16</left>
<top>-16</top>
<width>4</width>
<height>4</height>
<label>-</label>
<font>-</font>
<onfocus>down</onfocus>
<texturefocus>-</texturefocus>
<texturenofocus>-</texturenofocus>
<onleft>9000</onleft>
<onright>9000</onright>
<onup>9000</onup>
<ondown>2</ondown>
</control>
<control type="image">
<left>0</left>
<top>0</top>
<width>1280</width>
<height>720</height>
<texture>black-back.png</texture>
</control>
<control type="grouplist" id="9000">
<left>470</left>
<top>0</top>
<width>340</width>
<height>720</height>
<onleft>9000</onleft>
<onright>9000</onright>
<onup>9000</onup>
<ondown>9000</ondown>
<itemgap>0</itemgap>
<align>center</align>
<control type="group" id="1">
<width>340</width>
<height>30</height>
<control type="image">
<description>background top image</description>
<left>0</left>
<top>0</top>
<width>340</width>
<height>30</height>
<texture border="20,19,20,0">DialogContextTop.png</texture>
</control>
<control type="button" id="20">
<description>Close Window button</description>
<left>260</left>
<top>5</top>
<width>64</width>
<height>32</height>
<label>-</label>
<font>-</font>
<onclick>PreviousMenu</onclick>
<texturefocus>DialogCloseButton-focus.png</texturefocus>
<texturenofocus>DialogCloseButton.png</texturenofocus>
<onleft>2</onleft>
<onright>13</onright>
<onup>13</onup>
<ondown>2</ondown>
<visible>system.getbool(input.enablemouse)</visible>
</control>
</control>
<control type="button" id="2">
<description>Exit 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>RunScript(C:\Program Files\Launcher4Kodi\CloseKodi.py)</onclick>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>13012</label>
<visible>System.ShowExitButton</visible>
</control>
<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>RunScript(C:\Program Files\Launcher4Kodi\ConfluenceShutdownButtonAction.py)</onclick>
<visible>System.CanPowerDown</visible>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>Shutdown</label>
</control>
<control type="button" id="4">
<description>RestartKodi 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>RunScript(C:\Program Files\Launcher4Kodi\RestartKodi.py)</onclick>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>Restart Kodi</label>
</control>
<control type="button" id="5">
<description>Reboot 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.Reset()</onclick>
<visible>System.CanReboot</visible>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>13013</label>
</control>
<control type="image" id="6">
<description>background bottom image</description>
<left>0</left>
<width>340</width>
<height>25</height>
<texture border="20,0,19,20">DialogContextBottom.png</texture>
</control>
</control>
</controls>
</window>