Visualisation Control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Jmarshall
No edit summary
No edit summary
 
(8 intermediate revisions by 6 users not shown)
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.
<section begin="main content" />
===Example===
The visualisation control is used for displaying those funky patterns that jump to the music in Kodi. You can choose the position, and size of the visualisation displayed. Note that the control is only rendered if music is being played.
<xml>
=== Example ===
<syntaxhighlight lang="xml" enclose="div">
<control type="visualisation" id ="3">
<control type="visualisation" id ="3">
       <description>My first visualisation control</description>
       <description>My first visualisation control</description>
       <posx>80</posx>
       <left>80</left>
       <posy>60</posy>
       <top>60</top>
       <width>250</width>
       <width>250</width>
       <height>200</height>
       <height>200</height>
       <visible>true</visible>
       <visible>true</visible>
</control>
</control>
</xml>
</syntaxhighlight>
===Available Tags===
 
Only the [[Default_Control_Tags|default control tags]] are applicable to this control.
=== Available tags ===
[[category:Skin Development]]
Only the [[Default Control Tags|default control tags]] are applicable to this control.
 
<section end="main content" />
== See also ==
'''Development:'''
* [[Add-on development]]
* [[Skinning]]
 
[[Category:Skin development]]

Latest revision as of 00:56, 13 July 2020

The visualisation control is used for displaying those funky patterns that jump to the music in Kodi. 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>
      <left>80</left>
      <top>60</top>
      <width>250</width>
      <height>200</height>
      <visible>true</visible>
</control>

Available tags

Only the default control tags are applicable to this control.


See also

Development: