Mover Control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Theuni
>NedBot
m (Wikitable class; cosmetic changes)
Line 1: Line 1:
The mover control is used for the screen calibration portions of XBMC. You can choose the size and look of the mover control.
The mover control is used for the screen calibration portions of XBMC. You can choose the size and look of the mover control.
===Example===
=== Example ===
<source lang="xml">
<source lang="xml">
<control type="mover" id="3">
<control type="mover" id="3">
Line 14: Line 14:
</source>
</source>


===Available Tags===
=== 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="dtable"
{| class="wikitable"
|- class="userrow"
|-  
| class="usercell" | '''texturefocus'''
| '''texturefocus'''
| class="usercell" |
|  
Specifies the image file which should be displayed when the mover has focus. [[Texture Attributes|See here for additional information about textures.]]
Specifies the image file which should be displayed when the mover has focus. [[Texture Attributes|See here for additional information about textures.]]
|- class="userrow"
|-  
| class="usercell" | '''texturenofocus'''
| '''texturenofocus'''
| class="usercell" | Specifies the image file which should be displayed when the mover does not have focus.
| Specifies the image file which should be displayed when the mover does not have focus.
|}
|}
[[category:Skin Development]]
 
[[Category:Skin Development]]

Revision as of 07:53, 26 November 2011

The mover control is used for the screen calibration portions of XBMC. You can choose the size and look of the mover control.

Example

<control type="mover" id="3">
      <description>My first mover control</description>
      <posx>80</posx>
      <posy>60</posy>
      <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.

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.