2023-01-15, 11:31
Hi,
my goal is to hide the clock (in the top right corner) on AndroidTV (default Estuary).
I have modified includes.xml and Custom_1109_TopBarOverlay.xml in Windows version, so the clock is non more displayed.
The trouble is came when I have tryed to copy the modified .xml to AndroidTV (I haven't found the location to replace it).
My idea is this:
Can I replace an instruction writing it in AdvancedSettings.xml.
Ex. in Includes I have deleted these lines:
<control type="label">
<font>font_clock</font>
<shadowcolor>text_shadow</shadowcolor>
<height>200</height>
<width>auto</width>
<animation effect="fade" start="100" end="0" time="300" condition="Window.Next(screencalibration)">WindowClose</animation>
<label>$INFO[System.Time]</label>
</control>
If I write in AS.xml something like:
<control type="label">
<font>font_clock</font>
<shadowcolor>text_shadow</shadowcolor>
<height>0</height>
<width>0</width>
<animation effect="fade" start="0" end="0" time="0" condition="Window.Next(screencalibration)">WindowClose</animation>
<label>$INFO[System.Time]</label>
</control>
Can I replace the original code in original place?
Or, is there an official way to override a control in AdvancedSettings?
Thanks
my goal is to hide the clock (in the top right corner) on AndroidTV (default Estuary).
I have modified includes.xml and Custom_1109_TopBarOverlay.xml in Windows version, so the clock is non more displayed.
The trouble is came when I have tryed to copy the modified .xml to AndroidTV (I haven't found the location to replace it).
My idea is this:
Can I replace an instruction writing it in AdvancedSettings.xml.
Ex. in Includes I have deleted these lines:
<control type="label">
<font>font_clock</font>
<shadowcolor>text_shadow</shadowcolor>
<height>200</height>
<width>auto</width>
<animation effect="fade" start="100" end="0" time="300" condition="Window.Next(screencalibration)">WindowClose</animation>
<label>$INFO[System.Time]</label>
</control>
If I write in AS.xml something like:
<control type="label">
<font>font_clock</font>
<shadowcolor>text_shadow</shadowcolor>
<height>0</height>
<width>0</width>
<animation effect="fade" start="0" end="0" time="0" condition="Window.Next(screencalibration)">WindowClose</animation>
<label>$INFO[System.Time]</label>
</control>
Can I replace the original code in original place?
Or, is there an official way to override a control in AdvancedSettings?
Thanks