Video Control: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Martijn
No edit summary
>NedBot
m (Robot: Cosmetic changes)
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.
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.
===Example===
=== Example ===
<source lang="xml">
<source lang="xml">
<control type="videowindow" id="2">
<control type="videowindow" id="2">
Line 12: Line 12:
</source>
</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.


==See also==
== See also ==
'''Development:'''
'''Development:'''
* [[Add-on development]]
* [[Add-on development]]

Revision as of 15:56, 27 April 2013

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.

Example

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

See also

Development: