Könnt ihr mir mal eben auf die Sprünge helfen?
Ich nutze Kodi unter Win7. Ich habe in meinem Shutdown-Menü aktuell 3 Optionen: Verlassen, Timer und Enegiesparmodus
<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>Quit()</onclick>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>13012</label>
<visible>System.ShowExitButton</visible>
</control>
<control type="button" id="4">
<description>Custom Shutdown Timer</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>AlarmClock(shutdowntimer,Shutdown())</onclick>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>20150</label>
<visible>!System.HasAlarm(shutdowntimer)</visible>
<visible>System.CanPowerDown | System.CanSuspend | System.CanHibernate</visible>
</control>
<control type="button" id="5">
<description>Cancel Shutdown Timer</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>CancelAlarm(shutdowntimer)</onclick>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>20151</label>
<visible>System.HasAlarm(shutdowntimer)</visible>
</control>
<control type="button" id="6">
<description>Suspend 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>Suspend()</onclick>
<visible>System.CanSuspend</visible>
<pulseonselect>no</pulseonselect>
<font>font13</font>
<label>13011</label>
</control>
Was muss ich eintragen um darunter noch die Option "Kodi Neustart" zu bekommen? Hab hier http://kodi.wiki/view/List_of_Built_In_Functions gelesen, dass es die Funktion "RestartApp - Restarts Kodi (only implemented under Windows and Linux)" ja theoretisch geben müsste. Wie baue ich dies nun als Schalter ein?