Kodi Community Forum
How do i recall the same function of "i" hotkey? - 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)
+--- Thread: How do i recall the same function of "i" hotkey? (/showthread.php?tid=337071)



How do i recall the same function of "i" hotkey? - 3xistence - 2018-10-31

Hi at all,
i'm wondering how do i recall the same function as the "i" hotkey

I explain better: i made a button on screen and i want it to do <onclick> the same thing as the "I" hotkey but i can't find out how to recall it

Thanks for any kind of answer


RE: How do i recall the same function of "i" hotkey? - Hitcher - 2018-10-31

xml:
<onclick>Info</onclick>
You'll need put the focus back on the list before using it though like this -
xml:
<onclick>SetFocus(50)</onclick>
<onclick>Info</onclick>



RE: How do i recall the same function of "i" hotkey? - 3xistence - 2018-10-31

(2018-10-31, 11:41)Hitcher Wrote:
xml:
<onclick>Info</onclick>
You'll need put the focus back on the list before using it though like this -
xml:
<onclick>SetFocus(50)</onclick>
<onclick>Info</onclick>
 Thank you a lot Hitcher for your fast answer!
Does it works also for the info screen inside the players? For example to bring up the infos when i'm playing music or movies?


RE: How do i recall the same function of "i" hotkey? - Hitcher - 2018-10-31

I think you should just be able to use
xml:
<onclick>Info</onclick>