Kodi Community Forum
Confluence Mod (videoosd.xml) - 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: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: Confluence Mod (videoosd.xml) (/showthread.php?tid=259268)



Confluence Mod (videoosd.xml) - nhsman - 2016-02-08

Hi all, I try to mod VideoOSD in Confluence skin. I can see that the VideoOSD is using the labels and other bits from VideoFullScreen.xml.
Can someone explain how is it done, for example: progress bar is defined in VideoFullScreen.xml but it is also displayed when I bring VideoOSD on screen. But when I checked the content of VideoOSD.xml there is no progress bar defined there, just buttons for VideoOSD.


RE: Confluence Mod (videoosd.xml) - Hitcher - 2016-02-09

Window.IsActive(VideoOSD) is in the the visible condition right near the top of VideoFullScreen dialog -

PHP Code:
<visible>[Player.ShowInfo Window.IsActive(VideoOSD)] + ![Window.IsVisible(OSDVideoSettings) | Window.IsVisible(OSDAudioSettings) | 
Window.IsVisible(OSDAudioDSPSettings) | Window.IsVisible(VideoBookmarks) | Window.IsVisible(PVROSDChannels) | 
Window.IsVisible(PVROSDGuide) | Window.IsVisible(SliderDialog)]</visible



RE: Confluence Mod (videoosd.xml) - nhsman - 2016-02-09

Thanks a lot Hitcher. That make sense.