Kodi Community Forum
Where is the mouse pointer located? - 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: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260)
+---- Thread: Where is the mouse pointer located? (/showthread.php?tid=376224)



Where is the mouse pointer located? - Daspunner - 2024-02-10

Hi!

I want to replace the mouse pointer. Where is it located?


/Dave


RE: Where is the mouse pointer located? - izprtxqkft - 2024-02-10

it's packaged into the textures file media/Textures.xbt

references from https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/Pointer.xml

source is https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/media/pointer_arrow.png


RE: Where is the mouse pointer located? - jjd-uk - 2024-02-11

That's the image texture file for the standard Estuary pointer, however the pointer definition is in https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/Pointer.xml

So if you want to use you own custom pointer it probably easier just to add the image file to the media folder https://github.com/xbmc/xbmc/tree/master/addons/skin.estuary/media and then simply change the xml to point to it.

For example:

Image

xml:
<control type="image" id="1">
<description>Pointer</description>
<left>-10</left>
<width>44</width>
<height>50</height>
<texture>my_custom_pointer.png</texture>
</control>



RE: Where is the mouse pointer located? - Daspunner - 2024-02-13

Thanks!