Kodi Community Forum
Change clock visibility in fullscreen video - 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: Unity (https://forum.kodi.tv/forumdisplay.php?fid=244)
+---- Thread: Change clock visibility in fullscreen video (/showthread.php?tid=369194)



Change clock visibility in fullscreen video - dancaer69 - 2022-08-07

I just started to use Unity and I need to have display of clock and finish time in fullscreen video all the time and not only when player is muted.
So I opened VideoFullscreen.xml and I found that this:
conditional :
<!--time-->
            <control type="group" id="1">
                <animation effect="slide" start="0,0" end="-51,0" time="100" condition="Player.Muted">conditional</animation>
                <include content="DynamicRightBreadcrumb">
                    <param name="breadcrumb1-label" value="$INFO[System.Time(hh:mm)]$INFO[System.Time(xx), ,]" />
                </include>
            </control>
            <include content="DynamicRightBreadcrumb">
                <param name="breadcrumb-top" value="110" />
                <param name="breadcrumb-height" value="34" />
                <param name="breadcrumb-font" value="breadcrumb.secondary" />
                <param name="breadcrumb1-label" value="$INFO[Player.FinishTime]" />
                <param name="breadcrumb2-label" value="$LOCALIZE[31049]:" />
                <param name="breadcrumb2-visible" value="true" />
            </include>
which seems to be the block for this widget. But how I make it be visible and when the video playing? I tried to remove the "Player.Muted" but this didn't change anything.


RE: Change clock visibility in fullscreen video - dancaer69 - 2022-08-07

I found a way. I cutted the above block and pasted just below "controls" and also changed the contintion to "Player.Playing"