Video Control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>NedBot
m (Robot: Cosmetic changes)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
The video control is used for displaying the currently playing video elsewhere in the XBMC GUI. You can choose the position, and size of the video displayed. Note that the control is only rendered if video is being played.
<section begin="main content" />
The videowindow control is used for displaying the currently playing video elsewhere in the Kodi GUI. You can choose the position, and size of the video displayed. Note that the control is only rendered if video is being played.
=== Example ===
=== Example ===
<source lang="xml">
<syntaxhighlight lang="xml" enclose="div">
<control type="videowindow" id="2">
<control type="videowindow" id="2">
       <description>My first video control</description>
       <description>My first video 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>
</source>
</syntaxhighlight>


=== 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.


<section end="main content" />
== See also ==
== See also ==
'''Development:'''
'''Development:'''
Line 20: Line 22:
* [[Skinning]]
* [[Skinning]]


[[Category:Skin Development]]
[[Category:Skin development]]

Latest revision as of 12:06, 9 April 2016

The videowindow control is used for displaying the currently playing video elsewhere in the Kodi GUI. You can choose the position, and size of the video displayed. Note that the control is only rendered if video is being played.

Example

<control type="videowindow" id="2">
      <description>My first video 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: