Keymap for info -> fullscreeninfo
#16
It's just a simple test to debug. When it works, I will put another thing instead of stop. For the moment it doesn't work.

What this means is that Kodi 18 does not recognize the normal info as fullscreeninfo. That's why I'm saying now I have doubts that maybe fullscreeninfo does exist and it's different than info.

Just test that code and tell us if it works (while info is open on video playback). Put another key id of your choice of course and not 226.
Reply
#17
Look here Window IDs

https://kodi.wiki/view/Window_IDs

fullscreeninfo   WINDOW_DIALOG_FULLSCREEN_INFO    10142    DialogFullScreenInfo.xml

It exists. I remember using it and it worked before in Kodi 17.
Reply
#18
(2020-04-20, 21:14)Zodler Wrote: Look here Window IDs

https://kodi.wiki/view/Window_IDs

fullscreeninfo   WINDOW_DIALOG_FULLSCREEN_INFO    10142    DialogFullScreenInfo.xml

It exists. I remember using it and it worked before in Kodi 17.
So what are you expecting to achieve with this code, I don't understand.

EDIT - I found something here https://github.com/xbmc/xbmc/blob/master...yboard.xml
Code:
<FullscreenInfo>
<keyboard>
<f>FastForward</f>
<r>Rewind</r>
<period>StepForward</period>
<o>PlayerProcessInfo</o>
<i>Back</i>
<d mod="ctrl">Back</d>
<m>OSD</m>
<menu>OSD</menu>
</keyboard>
</FullscreenInfo>

I don't know what the point of it is when you could just use fullscreenvideo but maybe it could help you figure out what you are trying to do.
Reply
#19
The point is to assign an action to a key id while Info window is showing on screen during playback. And only when info is open and not when it is not showing.

The ultimate goal is to assign a remote key to show info and while the info is open if you press the same key again, show the CodecInfo. (CodecInfo is the action to show playerprocessinfo window).

My code was woking in Kodi 17. Now in Kodi 18 the same code is not working.
Reply

Logout Mark Read Team Forum Stats Members Help
Keymap for info -> fullscreeninfo0