Mover Control: Difference between revisions
Appearance
>NedBot m Wikitable class; cosmetic changes |
No edit summary |
||
| (9 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
The mover control is used for the screen calibration portions of | <section begin="main content" /> | ||
The mover control is used for the screen calibration portions of Kodi. You can choose the size and look of the mover control. | |||
=== Example === | === Example === | ||
< | <syntaxhighlight lang="xml" enclose="div"> | ||
<control type="mover" id="3"> | <control type="mover" id="3"> | ||
<description>My first mover control</description> | <description>My first mover control</description> | ||
< | <left>80</left> | ||
< | <top>60</top> | ||
<width>250</width> | <width>250</width> | ||
<height>200</height> | <height>200</height> | ||
| Line 12: | Line 13: | ||
<pulseonselect>true</pulseonselect> | <pulseonselect>true</pulseonselect> | ||
</control> | </control> | ||
</ | </syntaxhighlight> | ||
=== Available | === Available tags === | ||
In addition to the [[Default Control Tags|default control tags]], the following tags are available. Note that each tag is '''lower case only.''' This is important, as xml tags are case-sensitive. | In addition to the [[Default Control Tags|default control tags]], the following tags are available. Note that each tag is '''lower case only.''' This is important, as xml tags are case-sensitive. | ||
{| class=" | {| class="prettytable" | ||
! Tag !! Description | |||
|- | |- | ||
| '''texturefocus''' | | '''texturefocus''' | ||
| Line 26: | Line 28: | ||
|} | |} | ||
[[Category:Skin | <section end="main content" /> | ||
== See also == | |||
'''Development:''' | |||
* [[Add-on development]] | |||
* [[Skinning]] | |||
[[Category:Skin development]] | |||
Latest revision as of 00:57, 13 July 2020
The mover control is used for the screen calibration portions of Kodi. You can choose the size and look of the mover control.
Example
<control type="mover" id="3">
<description>My first mover control</description>
<left>80</left>
<top>60</top>
<width>250</width>
<height>200</height>
<texturefocus>mytexture.png</texturefocus>
<texturenofocus>mytexture.png</texturenofocus>
<pulseonselect>true</pulseonselect>
</control>
Available tags
In addition to the default control tags, the following tags are available. Note that each tag is lower case only. This is important, as xml tags are case-sensitive.
| Tag | Description |
|---|---|
| texturefocus |
Specifies the image file which should be displayed when the mover has focus. See here for additional information about textures. |
| texturenofocus | Specifies the image file which should be displayed when the mover does not have focus. |
See also
Development: