Thank you for this masterpiece of skin! It is amazing how leightweight and fast it is, way better than many others!
I have just one little problem that I can't change the focus on start up. I tried to change the "Start up window" and the "Custom Focus Offset" but both options didn't change anything.
Maybe it's just me but I really tried everything out without any solution.
---------------------------------------------------
I found out how to fix the problem Weather shows up two times when you activate weather fanart:
IncludesHomeMainMenu.xml
Line 431, change
Code:
<visible>!Skin.HasSetting(HomeMenuNoWeatherButton)</visible>
to
Code:
<visible>!Skin.HasSetting(HomeMenuNoWeatherButton) + !Weather.IsFetched</visible>
---------------------------------------------------
Better this way:
replace all 4 id="24" blocks with this:
Code:
<item id="24">
<label>8</label>
<onclick>ActivateWindow(Weather)</onclick>
<icon>special://skin/backgrounds/weatherfanart.jpg</icon>
<visible>!Skin.HasSetting(ShowWeatherFanart) | IsEmpty(Skin.String(WeatherFanartDir)) | !Weather.IsFetched</visible>
</item>
<item id="24">
<label>8</label>
<onclick>ActivateWindow(Weather)</onclick>
<icon>$INFO[Skin.String(HomeWeatherFanartFolder)]$INFO[Weather.FanartCode]</icon>
<visible>Weather.IsFetched + Skin.HasSetting(ShowWeatherFanart) + !IsEmpty(Skin.String(WeatherFanartDir))</visible>
</item>
This will disable the setting
Skin settings -> Home Window -> Weather Condition fanart on home
but make the Fanart option in the weather app works without any duplicates.
But I have still no idea how to make Focus Offset works as it should
---------------------------------------------------
To make start up window work as you set in the settings add this:
Startup.xml - Line 52
Code:
<control type="button" id="10">
<description>trigger</description>
<onfocus>ReplaceWindow($INFO[System.StartupWindow])</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
<visible>!Skin.HasSetting(Use_Startup_Playlist)</visible>
</control>