![]() |
Shortcut For (Estuary?) Video OSD Settings Menu - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228) +---- Thread: Shortcut For (Estuary?) Video OSD Settings Menu (/showthread.php?tid=379791) |
Shortcut For (Estuary?) Video OSD Settings Menu - teamrocket - 2024-12-15 I wonder if it's possible to bind/map the shortcut for Kodi built in Estuary Video OSD Settings, to be specific I am talking about the one where you bring the Video OSD, go all the way to right, then click on the Settings Cog button. And there it is, the "Cog" window. Image RE: Shortcut For (Estuary?) Video OSD Settings Menu - izprtxqkft - 2024-12-15 The window in your screenshot is a custom window with id 1101 you can activate this window directly with ActivateWindow(1101) BUT the window requires properties to be set you can see the operations performed by the skin when you click the gear icon - https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/VideoOSD.xml#L219 it sets 2 properties then activates 1101 currently, to the best of my knowledge, there is no way to map multiple actions to a single keypress the result is opening an empty window, you can check the custom 1101 file to see where it is using the properties to include and to set the window title - https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/Custom_1101_SettingsDialog.xml#L13 - https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/Custom_1101_SettingsDialog.xml#L18 so there is no way to open this directly from a keymap ----- 1 way to achieve this exact result would be to create an addon to do it for you then map a key to run that addon ----- if that is not an option then you can map to specific settings windows instead of the menu - ActivateWindow(osdvideosettings) references https://kodi.wiki/view/HOW-TO:Modify_keymaps https://kodi.wiki/view/Keymap https://kodi.wiki/view/List_of_built-in_functions https://kodi.wiki/view/Window_IDs https://forum.kodi.tv/showthread.php?tid=322061 |