Kodi Community Forum
Remove clock - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260)
+---- Thread: Remove clock (/showthread.php?tid=371265)



Remove clock - Ditacim - 2023-01-13

Hi,

I'm trying to remove the clock visualization in right up cornetr in Estuary.
I have modifiend includes.xml and Custom_1109_TopBarOverlay.xml.

Now the time is not displayer, but still remain the second little line with "Ends at time..."

Where can I find the label of this function?
What is its name?

Thanks.


RE: Remove clock - JiRo - 2023-01-15

In the Custom_1109_TopBarOverlay.xml file in the last grouplist control type are two labels control type label.
xml:

                    <control type="label">
                        <label>$INFO[Player.FinishTime,$LOCALIZE[31080]: ]</label>
                        <shadowcolor>text_shadow</shadowcolor>
                        <height>100</height>
                        <width>auto</width>
                        <visible>!String.isempty(Player.Duration)</visible>
                        <visible>Player.HasVideo + ![Player.HasGame | VideoPlayer.HasEpg]</visible>
                    </control>
                    <control type="label">
                        <label>$INFO[PVR.EpgEventFinishTime,$LOCALIZE[31080]: ]</label>
                        <shadowcolor>text_shadow</shadowcolor>
                        <height>100</height>
                        <width>auto</width>
                        <visible>VideoPlayer.HasEpg</visible>
                    </control>