Kodi Community Forum

Full Version: Control Tag Attribute List
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know f there is any documentation on the available attributes for Tags?

In the bellow example you can see there are 3 attributes for texture but there appears no documentation for what all available attributes are. My main goal is to find out if there is an attribute to disable cache via xml for a specific texture, but a list of options would be great

PHP Code:
<control type="image" id="1">
      <
description>My first image control</description>
      <
left>80</left>
      <
top>60</top>
      <
width>250</width>
      <
height>200</height>
      <
visible>true</visible>
      <
colordiffuse>FFFFFFFF</colordiffuse>
      <
fadetime>200</fadetime>
      <
texture border="5" flipy="true" flipx="false">mytexture.png</texture>
      <
bordertexture border="5">mybordertexture.png</bordertexture>
      <
bordersize>5</bordersize>
      <
texture>$INFO[MusicPlayer.Cover]</texture>
      <
aspectratio>keep</aspectratio>
</
control
all available texture attributes are listed in the wiki:
http://kodi.wiki/view/Texture_Attributes
(2016-10-07, 17:47)ronie Wrote: [ -> ]all available texture attributes are listed in the wiki:
http://kodi.wiki/view/Texture_Attributes

Thank you Ronie