Where is the mouse pointer located?
#1
Hi!

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


/Dave
Reply
#2
it's packaged into the textures file media/Textures.xbt

references from https://github.com/xbmc/xbmc/blob/master...ointer.xml

source is https://github.com/xbmc/xbmc/blob/master..._arrow.png
Reply
#3
That's the image texture file for the standard Estuary pointer, however the pointer definition is in https://github.com/xbmc/xbmc/blob/master...ointer.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...uary/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>
Reply
#4
Thanks!
Reply

Logout Mark Read Team Forum Stats Members Help
Where is the mouse pointer located?0