Kodi Community Forum
how to close video info on fullscreen? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12)
+--- Thread: how to close video info on fullscreen? (/showthread.php?tid=365308)



how to close video info on fullscreen? - kenmoon - 2021-11-04

Hello

I like to show when the video has played, shows video info 1-2 sec then it will close but I don't know how to do that.
I use alamclock as below, it shows my video osd when it plays video. 

VideoFullScreen.xml
<onload>AlarmClock(loadinfo,Action(osd),00:03,silent)</onload> // it shows osd  video play right after 3 sec
then I want to close this..

Please help me out.

thank you


RE: how to close video info on fullscreen? - Hitcher - 2021-11-04

Use another alarm to close it -

Dialog.Close(dialog[,force])

​​​​​​​Close a dialog. Set force to true to bypass animations. Use (all,true) to close all opened dialogs at once.


RE: how to close video info on fullscreen? - kenmoon - 2021-11-05

(2021-11-04, 10:39)Hitcher Wrote: Use another alarm to close it -

Dialog.Close(dialog[,force])

Close a dialog. Set force to true to bypass animations. Use (all,true) to close all opened dialogs at once.
Thank you.