Visualisation Control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Jmarshall
No edit summary
>Theuni
Line 1: Line 1:
The visualisation control is used for displaying those funky patterns that jump to the music in XBMC. You can choose the position, and size of the visualisation displayed. Note that the control is only rendered if music is being played.
The visualisation control is used for displaying those funky patterns that jump to the music in XBMC. You can choose the position, and size of the visualisation displayed. Note that the control is only rendered if music is being played.
===Example===
===Example===
<xml>
<source lang="xml">
<control type="visualisation" id ="3">
<control type="visualisation" id ="3">
       <description>My first visualisation control</description>
       <description>My first visualisation control</description>
Line 10: Line 10:
       <visible>true</visible>
       <visible>true</visible>
</control>
</control>
</xml>
</source>
 
===Available Tags===
===Available Tags===
Only the [[Default_Control_Tags|default control tags]] are applicable to this control.
Only the [[Default_Control_Tags|default control tags]] are applicable to this control.
[[category:Skin Development]]
[[category:Skin Development]]

Revision as of 21:55, 21 April 2010

The visualisation control is used for displaying those funky patterns that jump to the music in XBMC. You can choose the position, and size of the visualisation displayed. Note that the control is only rendered if music is being played.

Example

<control type="visualisation" id ="3">
      <description>My first visualisation control</description>
      <posx>80</posx>
      <posy>60</posy>
      <width>250</width>
      <height>200</height>
      <visible>true</visible>
</control>

Available Tags

Only the default control tags are applicable to this control.