<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bryanbrazil</id>
	<title>Official Kodi Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://kodi.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bryanbrazil"/>
	<link rel="alternate" type="text/html" href="https://kodi.wiki/view/Special:Contributions/Bryanbrazil"/>
	<updated>2026-06-15T08:06:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://kodi.wiki/index.php?title=List_of_boolean_conditions&amp;diff=119533</id>
		<title>List of boolean conditions</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=List_of_boolean_conditions&amp;diff=119533"/>
		<updated>2016-03-26T00:13:51Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Add countries to list of content types&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{see also|Conditional Visibility}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use boolean conditions with the &amp;lt;visible&amp;gt; tag or with condition attributes. Scripts can read boolean conditions with &amp;lt;code&amp;gt;xbmc.getCondVisibility(condition)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
! Condition !! Description !! Version&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.IsActive&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.HasInputResample&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.HasPreProcess&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.HasMasterProcess&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.HasPostProcess&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.HasOutputResample&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ADSP.MasterActive&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.HasThumb&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current container you are in has a thumb assigned to it&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.Content(parameter)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current container you are in contains the following: &#039;&#039;&#039;files, songs, artists, albums, movies, tvshows, seasons, episodes, musicvideos, genres, years, actors, playlists, plugins, studios, directors, sets, tags, countries&#039;&#039;&#039; (Note: these currently only work in the Video and Music Library or unless a Plugin has set the value) also available are &#039;&#039;&#039;Addons&#039;&#039;&#039; true when a list of add-ons is shown &#039;&#039;&#039;LiveTV&#039;&#039;&#039; true when a htsp (tvheadend) directory is shown&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).OnNext&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is moving to the next item.  Allows views to be custom-designed (such as 3D coverviews etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).OnScrollNext&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is scrolling to the next item. Differs from OnNext in that OnNext triggers on movement even if there is no scroll involved.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).OnPrevious&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is moving to the previous item.  Allows views to be custom-designed (such as 3D coverviews etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).OnScrollPrevious&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is scrolling to the previous item. Differs from OnPrevious in that OnPrevious triggers on movement even if there is no scroll involved.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).HasFocus(item_number)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) has static content and is focused on the item with id item_number.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).HasFiles&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container contains files (or current container if id is omitted).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).HasFolders&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container contains folders (or current container if id is omitted).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).HasNext&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container or textbox with id (id) has a next page.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).HasPrevious&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container or textbox with id (id) has a previous page.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).IsUpdating&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with [[Dynamic List Content|dynamic list content]] is currently updating.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).IsStacked&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container is currently in stacked mode (or current container if id is omitted).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.CanFilter&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the current container can be filtered.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.CanFilterAdvanced&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when advanced filtering can be applied to the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.Filtered&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when a mediafilter is applied to the current container.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.HasParent&amp;lt;/code&amp;gt;&lt;br /&gt;
| Return true when the container contains a parent (&#039;..&#039;) item.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.SortDirection(ascending)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true the sort direction of a container is ascending.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container.SortDirection(descending)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true the sort direction of a container is descending.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).Row(row)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is focused on the row given.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).Column(col)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is focused on the column given.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).Position(pos)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the container with id (or current container if id is omitted) is focused on the position given.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Container(id).Scrolling&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the user is currently scrolling through the container with id (or current container if id is omitted).  Note that this is slightly delayed from the actual scroll start.  Use Container(id).OnScrollNext/OnScrollPrevious to trigger animations immediately on scroll.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Control.IsEnabled(id)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the control with id &amp;quot;id&amp;quot; is enabled.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Control.IsVisible(id)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the control with id &amp;quot;id&amp;quot; is visible.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Control.HasFocus(id)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the currently focused control has id &amp;quot;id&amp;quot;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ControlGroup(group).HasFocus(id)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the control group with id “group” has control id “id” as it&#039;s focused item. If “id” is not present, or is 0, then it will return true if the currently focused control is in the control group with id “group”. Note that if the control group with id “group” does not have focus, then this will still return true if the last focused item in the group had control id “id”. &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Integer.IsEqual([[InfoLabels|info]],number)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is equal to the supplied number.&amp;lt;br /&amp;gt;Example: Integer.IsEqual(ListItem.Year,2000)&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Integer.IsGreater([[InfoLabels|info]],number)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is greater than to the supplied number.&amp;lt;br /&amp;gt;Example: Integer.IsGreater(ListItem.Year,2000)&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Integer.IsGreaterOrEqual([[InfoLabels|info]],number)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is greater or equal to the supplied number.&amp;lt;br /&amp;gt;Example: Integer.IsGreaterOrEqual(ListItem.Year,2000)&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Integer.IsLess([[InfoLabels|info]],number)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is less than the supplied number.&amp;lt;br /&amp;gt;Example: Integer.IsLess(ListItem.Year,2000)&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Integer.IsLessOrEqual([[InfoLabels|info]],number)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is less or equal to the supplied number.&amp;lt;br /&amp;gt;Example: Integer.IsLessOrEqual(ListItem.Year,2000)&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;IntegerGreaterThan([[InfoLabels|info]],number)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;deprecated: use Integer.IsGreater() instead&amp;lt;/small&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is greater than the supplied number.&amp;lt;br /&amp;gt;Example: IntegerGreaterThan(ListItem.Year,2000)&lt;br /&gt;
| until v18&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;IsEmpty([[InfoLabels|info]])&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;deprecated: use String.IsEmpty() instead&amp;lt;/small&amp;gt;&lt;br /&gt;
| Returns true if the value of the [[InfoLabels|infolabel]] is empty.&amp;lt;br /&amp;gt;Example: IsEmpty(ListItem.Plot)&lt;br /&gt;
| until v18&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Library.HasContent(string)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the Kodi libraries have the content from string.  Valid Strings are (Video, Music, Movies, TVShows, MusicVideos, MovieSets)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Library.IsScanningMusic&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the music library is being updated&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Library.IsScanningVideo&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the video library is being updated&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsFolder&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns whether the current ListItem is a folder&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsPlaying&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns whether the current ListItem.* [[InfoLabels|info labels]] and images are currently Playing media&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsResumable&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the current ListItem has been partially played&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsCollection&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the current ListItem is a movie set&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsSelected&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns whether the current ListItem is selected (f.e. currently playing in playlist window)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.HasEpg&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the selected programme has epg info (PVR)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.HasTimer&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when a recording timer has been set for the selected programme (PVR)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsRecording&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the selected programme is being recorded (PVR)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsEncrypted&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the selected programme is encrypted (PVR)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.IsStereoscopic&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the selected video is a 3D (stereoscopic) video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.Property(IsSpecial)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns whether the current Season/Episode is a Special&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.Property(DateLabel)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Can be used in the rulerlayout of the epggrid control. Will return true if the item is a date label, returns false if the item is a time label.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.Property(Addon.Enabled)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the selected addon is enabled (for use in the addon info dialog only).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.Property(Addon.Installed)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the selected addon is installed (for use in the addon info dialog only).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;ListItem.Property(Addon.UpdateAvail)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when there&#039;s an update available for the selected addon.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;MusicPlayer.HasNext&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the music player has a next song queued in the Playlist.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;MusicPlayer.HasPrevious&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the music player has a a Previous Song in the Playlist .&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;MusicPlayer.Offset(number).Exists&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the music players playlist has a song queued in position (number).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;MusicPartyMode.Enabled&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Party Mode is enabled&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.HasMedia&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player has an audio or video file.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.HasAudio&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player has an audio file.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.HasDuration&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Media isn&#039;t a true stream&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.HasVideo&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player has a video file.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Passthrough&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is using audio passthrough.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Playing&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is currently playing (ie not ffwding, rewinding or paused.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Paused&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is paused.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Forwarding&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is fast forwarding.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Forwarding2x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is fast forwarding at 2x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Forwarding4x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is fast forwarding at 4x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Forwarding8x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is fast forwarding at 8x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Forwarding16x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is fast forwarding at 16x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Forwarding32x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is fast forwarding at 32x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Rewinding&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is rewinding.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Rewinding2x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is rewinding at 2x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Rewinding4x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is rewinding at 4x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Rewinding8x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is rewinding at 8x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Rewinding16x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is rewinding at 16x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Rewinding32x&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is rewinding at 32x.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.CanRecord&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player can record the current internet stream.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Recording&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is recording the current internet stream.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Caching&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is current &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;re-caching&amp;lt;/span&amp;gt; data (internet based video playback).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.DisplayAfterSeek&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true for the first 2.5 seconds after a seek.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Seeking&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if a seek is in progress&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.ShowTime&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the user has requested the time to show (occurs in video fullscreen)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.ShowInfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the user has requested the song info to show (occurs in visualisation fullscreen and slideshow)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.ShowCodec&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the user has requested the codec to show (occurs in visualisation and video fullscreen)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.IsInternetStream&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is playing an internet stream.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Player.Muted&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the volume is muted.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Playlist.IsRandom&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is in random mode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Playlist.IsRepeat&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is in repeat all mode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Playlist.IsRepeatOne&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the player is in repeat one mode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasTimer&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when a recording timer is active.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasNonRecordingTimer&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when a non recording timer is active.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasEpg&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when an epg is available.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasTxt&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when teletext is available.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasDirector&amp;lt;/code&amp;gt;&lt;br /&gt;
| ?&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasTVChannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if there are tv channels available&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.HasRadioChannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if there are radio channels available&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.IsPlayingTv&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when live tv is being watched.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.IsPlayingRadio&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when live radio is being listened to.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.IsPlayingRecording&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when a recording is being watched.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.IsRecording&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the system is recording a tv programme.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.IsTimeShift&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when the playback is timeshifted.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Pvr.ActStreamIsEncrypted&amp;lt;/code&amp;gt;&lt;br /&gt;
|  Returns true if the stream is encrypted&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;RDS.HasRds&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;RDS.HasRadioText&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;RDS.HasRadioTextPlus&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;RDS.HasHotline&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;RDS.HasStudio&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Skin.HasTheme(theme)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the user has selected the theme with name ?theme?.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Skin.HasSetting(setting)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns the state of the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;skin-specified&amp;lt;/span&amp;gt; setting ?setting?. You can toggle a setting from a button by using &amp;lt;onclick&amp;gt;Skin.ToggleSetting(setting)&amp;lt;/onclick&amp;gt;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Skin.String(string)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns whether the skin string (set via Skin.SetString, Skin.SetPath, or Skin.SetImage) is &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;non-empty&amp;lt;/span&amp;gt;.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Skin.String(string1,string2)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Same as stringcompare(Skin.String(string1),string2). Returns true if Skin.String(string1) equals string2.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Slideshow.IsActive&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the picture slideshow is running&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Slideshow.IsPaused&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the picture slideshow is paused&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Slideshow.IsRandom&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the picture slideshow is in random mode&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Slideshow.IsVideo&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the picture slideshow is playing a video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;String.IsEmpty([[InfoLabels|info]])&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the [[InfoLabels|info]] is empty.&amp;lt;br /&amp;gt;Example of info: ListItem.Title, ListItem.Genre. Please note that string can also be a $LOCALIZE[] or [[InfoLabels|info label]] (without $INFO prefix). Also note that in a panelview or similar this only works on the focused item.&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;String.IsEqual([[InfoLabels|info]],string)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the [[InfoLabels|info]] is equal to the given string.&amp;lt;br /&amp;gt;Example of info: ListItem.Title, ListItem.Genre. Please note that string can also be a $LOCALIZE[] or [[InfoLabels|info label]] (without $INFO prefix). Also note that in a panelview or similar this only works on the focused item.&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;String.StartsWith([[InfoLabels|info]],substring)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the [[InfoLabels|info]] starts with the given substring.&amp;lt;br /&amp;gt;Example of info: ListItem.Title, ListItem.Genre. Please note that string can also be a $LOCALIZE[] or [[InfoLabels|info label]] (without $INFO prefix). Also note that in a panelview or similar this only works on the focused item.&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;String.EndsWith([[InfoLabels|info]],substring)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the [[InfoLabels|info]] ends with the given substring.&amp;lt;br /&amp;gt;Example of info: ListItem.Title, ListItem.Genre. Please note that string can also be a $LOCALIZE[] or [[InfoLabels|info label]] (without $INFO prefix). Also note that in a panelview or similar this only works on the focused item.&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;String.Contains([[InfoLabels|info]],substring)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the [[InfoLabels|info]] contains the given substring.&amp;lt;br /&amp;gt;Example of info: ListItem.Title, ListItem.Genre. Please note that string can also be a $LOCALIZE[] or [[InfoLabels|info label]] (without $INFO prefix). Also note that in a panelview or similar this only works on the focused item.&lt;br /&gt;
| {{nowrap|v17 Addition}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;StringCompare([[InfoLabels|info]],string)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;deprecated: use String.IsEqual() instead&amp;lt;/small&amp;gt;&lt;br /&gt;
| Returns true if the [[InfoLabels|info]] equals the string. example of info: ListItem.Title, ListItem.Genre. Please note that string can also be a $LOCALIZE[] or [[InfoLabels|info label]] (without $INFO prefix). Also note that in a panelview or similar this only works on the focused item.&lt;br /&gt;
| until v18&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;SubString([[InfoLabels|info]],string)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;deprecated: use String.Contains() instead&amp;lt;/small&amp;gt;&lt;br /&gt;
| Returns true if the string is found anywhere in the [[InfoLabels|info]]&lt;br /&gt;
| until v18&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;SubString([[InfoLabels|info]],string,[Left or Right])&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;deprecated: use String.StartsWith() / String.EndsWith() instead&amp;lt;/small&amp;gt;&lt;br /&gt;
| Returns true if the string is found from the start or the end.&amp;lt;br /&amp;gt;Example:&amp;lt;br /&amp;gt;&lt;br /&gt;
(foobars,foob,Left) -&amp;gt; true&amp;lt;br /&amp;gt;&lt;br /&gt;
(foobars,foob,Right) -&amp;gt; False&amp;lt;br /&amp;gt;&lt;br /&gt;
(foobars,bars,Right) -&amp;gt; true&lt;br /&gt;
| until v18&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasAddon(id)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the specified addon is installed on the system.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasAlarm(alarm)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the system has the ?alarm? alarm set.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.AlarmLessOrEqual(alarmname,seconds)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the alarm with ?alarmname? has less or equal to ?seconds? left. Standard use would be system.alarmlessorequal(shutdowntimer,119), which would return true when the shutdowntimer has less then 2 minutes left.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasNetwork&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the ethernet cable is plugged in.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasMediadvd&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if there is a CD or DVD in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.IdleTime(time)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi has had no input for ?time? amount of seconds.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.IsStandalone&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running in standalone mode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.IsFullscreen&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running fullscreen.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.KaiConnected&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if XBMC&#039;s Kai client is connected to the PC engine.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.IsLoggedOn&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if a user is currently logged on under a [[Profiles|profile]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasLoginScreen&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the [[Profiles|profile]] login screen is enabled&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasADSP&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if ADSP is enabled&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasModalDialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true true if a modal dialog is visible&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Time(startTime,endTime)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current system time is &amp;gt;= startTime and &amp;lt; endTime.  endTime is optional.  Time must be specified in the format HH:mm, using a 24 hour clock.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Date(startDate,endDate)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current system date is &amp;gt;= startDate and &amp;lt; endDate.  endDate is optional.  Date must be specified in the format MM-DD.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.Linux&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on a linux/unix based computer.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.Linux.RaspberryPi&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on a Raspberry Pi.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.Windows&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on a windows based computer.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.OSX&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on an OSX based computer.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.IOS&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on an IOS device.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.Darwin&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on an OSX or IOS system.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.ATV2&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on an atv2.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Platform.Android&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi is running on an android device.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.CanPowerDown&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi can powerdown the system.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.CanSuspend&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi can suspend the system.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.CanHibernate&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi can hibernate the system.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasHiddenInput&amp;lt;/code&amp;gt;&lt;br /&gt;
| Return true when to osd keyboard/numeric dialog requests a password/pincode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.CanReboot&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if Kodi can reboot the system.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.ScreenSaverActive&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if ScreenSaver is active.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.Setting(hidewatched)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if &#039;hide watched items&#039; is selected.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.IsInhibit&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when shutdown on idle is disabled.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;System.HasShutdown&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when shutdown on idle is enabled.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.UsingOverlays&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the video player is using the hardware overlays render method. Useful, as with hardware overlays you have no alpha blending to the video image, so shadows etc. need redoing, or disabling.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.IsFullscreen&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the video player is in fullscreen mode.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.HasMenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the video player has a menu (ie is playing a DVD)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.HasInfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current playing video has information from the library or from a plugin (eg director/plot etc.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.Content(parameter)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current Video you are playing is contained in corresponding Video Library sections. The following values are accepted : files, movies, episodes, musicvideos, livetv&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.HasSubtitles&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if there are subtitles available for video. (available for version 11.0 and above)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.IsStereoscopic&amp;lt;/code&amp;gt;&lt;br /&gt;
|  Returns true when the currently playing video is a 3D (stereoscopic) video&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.SubtitlesEnabled&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if subtitles are turned on for video. (available for version 11.0 and above)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;VideoPlayer.HasEpg&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true when epg information is available for the currently playing programme (PVR).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Visualisation.Enabled&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if any visualisation has been set in settings (so not None).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Visualisation.HasPresets&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the visualisation has built in presets.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Visualisation.Locked&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the current visualisation preset is locked (eg in Milkdrop.)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Weather.IsFetched&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the weather data has been downloaded.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.IsVisible(window)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the window is visible (includes fade out time on dialogs)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.IsActive(window)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the window with id or title ?window? is active (excludes fade out time on dialogs) [[Window IDs|See here for a list of windows]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.IsTopMost(window)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the window with id or title ?window? is on top of the window stack (excludes fade out time on dialogs) [[Window IDs|See here for a list of windows]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.IsMedia&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if this window is a media window (programs, music, video, scripts, pictures)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.Next(window)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the window with id or title ?window? is being moved to. [[Window IDs|See here for a list of windows]]. Only valid while windows are changing.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.Previous(window)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the window with id or title ?window? is being moved from. [[Window IDs|See here for a list of windows]]. Only valid while windows are changing.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;Window.Property(IsRadio)&amp;lt;/code&amp;gt;&lt;br /&gt;
| Returns true if the window is a radio window (for use in the PVR windows)&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=100213</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=100213"/>
		<updated>2015-08-21T04:08:52Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(infolabel)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show Plot of the current container and can be used at season and episode level&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of Container (id) as a numeric label.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;t wrap. That means if the last item of a list is focused, ListItemNoWrap(1) will be empty while ListItem(1) will return the first item of the list. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  Returns the label value or texture name of the control with the given id. Optionally you can specify index(1) to retrieve label2.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Listitem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  Shows the episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  Shows the name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  Shows the full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  Shows the country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  Shows the localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  Shows a short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  Shows the exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  Shows the exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  Shows the latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  Shows the longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  Shows the time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  Shows the ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  Shows only the localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  Shows the location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Shows the file date of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating&lt;br /&gt;
|  Shows the IMDB rating of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes&lt;br /&gt;
|  Shows the IMDB votes of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes&lt;br /&gt;
|  Shows the IMDB rating and votes of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration&lt;br /&gt;
|  Shows the song or movie duration of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  Shows the database type of the ListItem.DBID for videos (movie, set, genre, actor, tvshow, season, episode). It does not return any value for the music library. Beware with season, the &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Day, start time and end time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Number of current selected TV channel in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently selected video (common values: 3iv2, avc1, div2, div3, divx, divx 4, dx50, flv, h264, microsoft, mp42, mp43, mp4v, mpeg1video, mpeg2video, mpg4, rv40, svq1, svq3, theora, vp6f, wmv2, wmv3, wvc1, xvid)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K). Note that 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently selected video (possible values: 1.33, 1.37, 1.66, 1.78, 1.85, 2.20, 2.35, 2.40, 2.55, 2.76)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently selected video (common values: aac, ac3, cook, dca, dtshd_hra, dtshd_ma, eac3, mp1, mp2, mp3, pcm_s16be, pcm_s16le, pcm_u8, truehd, vorbis, wmapro, wmav2)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video. (possible values: 0, 1, 2, 4, 5, 6, 8, 10)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Name)&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Version)&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Summary)&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Description)&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Type)&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Creator)&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Disclaimer)&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Broken)&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelGroup&lt;br /&gt;
|  Channel group of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsSelected&lt;br /&gt;
|  Whether the item is selected.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsPlaying&lt;br /&gt;
|  Whether the item is playing.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsResumable&lt;br /&gt;
|  Whether the item has a resume point set.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsFolder&lt;br /&gt;
|  Whether the item is a folder.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsCollection&lt;br /&gt;
|  Whether the item is a movie collection.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsRecording&lt;br /&gt;
|  Whether the item is a recording (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (formatted as IP: &amp;lt;ipaddress&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns 1 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns 2 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP ip address&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumber&lt;br /&gt;
|  Channel number of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video (common values: see ListItem.AudioCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumber&lt;br /&gt;
|  Number of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns string ID&#039;s 590 (Randomize Play Enabled) or 591 (Disabled)&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|- &lt;br /&gt;
|  Pvr.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Duration&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Time&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Progress&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion&lt;br /&gt;
|  System kernel version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|-&lt;br /&gt;
|  System.GetBool(boolean)&lt;br /&gt;
|  Returns the value of any standard system boolean setting.  Will not work with settings in advancedsettings.xml&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount&lt;br /&gt;
&lt;br /&gt;
LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart&lt;br /&gt;
&lt;br /&gt;
LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(tvshow.fanart)&lt;br /&gt;
|  Fanart Image of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(season.poster)&lt;br /&gt;
|  Thumbnail Image of the parent season&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.fanart)&lt;br /&gt;
|  Fanart Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.thumb)&lt;br /&gt;
|  Thumbnail Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearart)&lt;br /&gt;
|  Returns the clearart (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearlogo)&lt;br /&gt;
|  Returns the clearlogo (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(banner)&lt;br /&gt;
|  Returns the banner of the currently selected tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Returns the landscape art of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.poster)&lt;br /&gt;
|  Returns the season poster of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.banner)&lt;br /&gt;
|  Returns the season banner of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  Shows the Overlay Icon status (compressed file [OverlayRAR.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(ArtistThumb)&lt;br /&gt;
|  Thumbnail Image of the parent artist, for use in dialogalbuminfo.xml and dialogsonginfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.StarRating)&lt;br /&gt;
|  Returns a value of rating0.png to rating5.png for the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SeasonThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show season, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TVShowThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show, for use in dialogvideoinfo.xml (available anywhere)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(fanart)&lt;br /&gt;
|  Fanart Image of the currently playing episode&#039;s parent TV show &lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail image of the currently playing item.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently playing movie.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=100212</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=100212"/>
		<updated>2015-08-21T04:08:16Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(infolabel)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show Plot of the current container and can be used at season and episode level&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of Container (id) as a numeric label.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;t wrap. That means if the last item of a list is focused, ListItemNoWrap(1) will be empty while ListItem(1) will return the first item of the list. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  Returns the label value or texture name of the control with the given id. Optionally you can specify index(1) to retrieve label2.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Listitem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  Shows the episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  Shows the name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  Shows the full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  Shows the country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  Shows the localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  Shows a short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  Shows the exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  Shows the exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  Shows the latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  Shows the longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  Shows the time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  Shows the ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  Shows only the localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  Shows the location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Shows the file date of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating&lt;br /&gt;
|  Shows the IMDB rating of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes&lt;br /&gt;
|  Shows the IMDB votes of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes&lt;br /&gt;
|  Shows the IMDB rating and votes of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration&lt;br /&gt;
|  Shows the song or movie duration of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  Shows the database type of the ListItem.DBID for videos (movie, set, genre, actor, tvshow, season, episode). It does not return any value for the music library. Beware with season, the &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Day, start time and end time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Number of current selected TV channel in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently selected video (common values: 3iv2, avc1, div2, div3, divx, divx 4, dx50, flv, h264, microsoft, mp42, mp43, mp4v, mpeg1video, mpeg2video, mpg4, rv40, svq1, svq3, theora, vp6f, wmv2, wmv3, wvc1, xvid)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K). Note that 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently selected video (possible values: 1.33, 1.37, 1.66, 1.78, 1.85, 2.20, 2.35, 2.40, 2.55, 2.76)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently selected video (common values: aac, ac3, cook, dca, dtshd_hra, dtshd_ma, eac3, mp1, mp2, mp3, pcm_s16be, pcm_s16le, pcm_u8, truehd, vorbis, wmapro, wmav2)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video. (possible values: 0, 1, 2, 4, 5, 6, 8, 10)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Name)&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Version)&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Summary)&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Description)&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Type)&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Creator)&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Disclaimer)&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Broken)&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelGroup&lt;br /&gt;
|  Channel group of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsSelected&lt;br /&gt;
|  Whether the item is selected.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsPlaying&lt;br /&gt;
|  Whether the item is playing.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsResumable&lt;br /&gt;
|  Whether the item has a resume point set.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsFolder&lt;br /&gt;
|  Whether the item is a folder.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsCollection&lt;br /&gt;
|  Whether the item is a movie collection.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsRecording&lt;br /&gt;
|  Whether the item is a recording (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (formatted as IP: &amp;lt;ipaddress&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns 1 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns 2 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP ip address&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumber&lt;br /&gt;
|  Channel number of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video (common values: see ListItem.AudioCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumber&lt;br /&gt;
|  Number of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns string ID&#039;s 590 (Randomize Play Enabled) or 591 (Disabled)&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|- &lt;br /&gt;
|  Pvr.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Duration&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Time&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Progress&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion&lt;br /&gt;
|  System kernel version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|-&lt;br /&gt;
|  System.GetBool(boolean)&lt;br /&gt;
|  Returns the value of any standard system boolean setting.  Will not work with settings in advancedsettings.xml&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount&lt;br /&gt;
&lt;br /&gt;
LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart&lt;br /&gt;
&lt;br /&gt;
LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(tvshow.fanart)&lt;br /&gt;
|  Fanart Image of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(season.poster)&lt;br /&gt;
|  Thumbnail Image of the parent season&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.fanart)&lt;br /&gt;
|  Fanart Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.thumb)&lt;br /&gt;
|  Thumbnail Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearart)&lt;br /&gt;
|  Returns the clearart (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearlogo)&lt;br /&gt;
|  Returns the clearlogo (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(banner)&lt;br /&gt;
|  Returns the banner of the currently selected tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Returns the landscape art of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Returns the landscape art of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.poster)&lt;br /&gt;
|  Returns the season poster of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.banner)&lt;br /&gt;
|  Returns the season banner of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  Shows the Overlay Icon status (compressed file [OverlayRAR.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(ArtistThumb)&lt;br /&gt;
|  Thumbnail Image of the parent artist, for use in dialogalbuminfo.xml and dialogsonginfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.StarRating)&lt;br /&gt;
|  Returns a value of rating0.png to rating5.png for the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SeasonThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show season, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TVShowThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show, for use in dialogvideoinfo.xml (available anywhere)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(fanart)&lt;br /&gt;
|  Fanart Image of the currently playing episode&#039;s parent TV show &lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail image of the currently playing item.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently playing movie.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=100211</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=100211"/>
		<updated>2015-08-21T04:05:38Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Images Available in Kodi */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(infolabel)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show Plot of the current container and can be used at season and episode level&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of Container (id) as a numeric label.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;t wrap. That means if the last item of a list is focused, ListItemNoWrap(1) will be empty while ListItem(1) will return the first item of the list. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemPosition(id).[infolabel]&lt;br /&gt;
|  Shows the infolabel for an item in a Container. the item id is the absolute position in the container. &#039;&#039;( eg: Container(50).ListItemPosition(4).Genre )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  Returns the label value or texture name of the control with the given id. Optionally you can specify index(1) to retrieve label2.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Listitem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  Shows the episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  Shows the name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  Shows the full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  Shows the country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  Shows the localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  Shows a short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  Shows the exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  Shows the exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  Shows the latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  Shows the longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  Shows the time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  Shows the ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  Shows only the localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  Shows the location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderPath&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a container (without user details).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Shows the file date of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating&lt;br /&gt;
|  Shows the IMDB rating of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes&lt;br /&gt;
|  Shows the IMDB votes of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes&lt;br /&gt;
|  Shows the IMDB rating and votes of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration&lt;br /&gt;
|  Shows the song or movie duration of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  Shows the database type of the ListItem.DBID for videos (movie, set, genre, actor, tvshow, season, episode). It does not return any value for the music library. Beware with season, the &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Top250&lt;br /&gt;
|  Shows the IMDb top250 position of the currently selected listitem in a container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the selected Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the selected EPG item is a TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Day, start time and end time of current selected TV programme in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Number of current selected TV channel in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a container&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently selected video (common values: 3iv2, avc1, div2, div3, divx, divx 4, dx50, flv, h264, microsoft, mp42, mp43, mp4v, mpeg1video, mpeg2video, mpg4, rv40, svq1, svq3, theora, vp6f, wmv2, wmv3, wvc1, xvid)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K). Note that 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently selected video (possible values: 1.33, 1.37, 1.66, 1.78, 1.85, 2.20, 2.35, 2.40, 2.55, 2.76)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently selected video (common values: aac, ac3, cook, dca, dtshd_hra, dtshd_ma, eac3, mp1, mp2, mp3, pcm_s16be, pcm_s16le, pcm_u8, truehd, vorbis, wmapro, wmav2)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video. (possible values: 0, 1, 2, 4, 5, 6, 8, 10)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Name)&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Version)&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Summary)&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Description)&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Type)&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Creator)&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Disclaimer)&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Broken)&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelGroup&lt;br /&gt;
|  Channel group of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsSelected&lt;br /&gt;
|  Whether the item is selected.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsPlaying&lt;br /&gt;
|  Whether the item is playing.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsResumable&lt;br /&gt;
|  Whether the item has a resume point set.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsFolder&lt;br /&gt;
|  Whether the item is a folder.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsCollection&lt;br /&gt;
|  Whether the item is a movie collection.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.IsRecording&lt;br /&gt;
|  Whether the item is a recording (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Comment&lt;br /&gt;
|  Comment assigned to the item (PVR/MUSIC).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (formatted as IP: &amp;lt;ipaddress&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns 1 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns 2 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP ip address&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumber&lt;br /&gt;
|  Channel number of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.IMDBNumber&lt;br /&gt;
|  The IMDB iD of the current video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EpisodeName&lt;br /&gt;
|  (PVR only) The name of the episode if the playing video is a TV Show, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video (common values: see ListItem.AudioCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumber&lt;br /&gt;
|  Number of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns string ID&#039;s 590 (Randomize Play Enabled) or 591 (Disabled)&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|- &lt;br /&gt;
|  Pvr.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Duration&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Time&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Progress&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the Kodi instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;Kodi (htpc)&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion&lt;br /&gt;
|  System kernel version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|-&lt;br /&gt;
|  System.GetBool(boolean)&lt;br /&gt;
|  Returns the value of any standard system boolean setting.  Will not work with settings in advancedsettings.xml&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount&lt;br /&gt;
&lt;br /&gt;
LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart&lt;br /&gt;
&lt;br /&gt;
LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(tvshow.fanart)&lt;br /&gt;
|  Fanart Image of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(season.poster)&lt;br /&gt;
|  Thumbnail Image of the parent season&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.fanart)&lt;br /&gt;
|  Fanart Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.thumb)&lt;br /&gt;
|  Thumbnail Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearart)&lt;br /&gt;
|  Returns the clearart (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearlogo)&lt;br /&gt;
|  Returns the clearlogo (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(banner)&lt;br /&gt;
|  Returns the banner of the currently selected tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(landscape)&lt;br /&gt;
|  Returns the landscape art of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.poster)&lt;br /&gt;
|  Returns the season poster of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.banner)&lt;br /&gt;
|  Returns the season banner of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  Shows the Overlay Icon status (compressed file [OverlayRAR.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(ArtistThumb)&lt;br /&gt;
|  Thumbnail Image of the parent artist, for use in dialogalbuminfo.xml and dialogsonginfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.StarRating)&lt;br /&gt;
|  Returns a value of rating0.png to rating5.png for the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SeasonThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show season, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TVShowThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show, for use in dialogvideoinfo.xml (available anywhere)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(fanart)&lt;br /&gt;
|  Fanart Image of the currently playing episode&#039;s parent TV show &lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail image of the currently playing item.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently playing movie.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=99742</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=99742"/>
		<updated>2015-08-12T04:51:45Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Kodi 15.x - Mimic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.2.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=GNU GENERAL PUBLIC LICENSE. Version 2, June 1991&lt;br /&gt;
|Forum=http://forum.kodi.tv/showthread.php?tid=221728&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=https://github.com/bryanbrazil/skin.mimic&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Video demos ==&lt;br /&gt;
=== Kodi 15.x - Mimic ===&lt;br /&gt;
&lt;br /&gt;
{{youtube|RGfpbUWVkgQ}}&lt;br /&gt;
&lt;br /&gt;
{{youtube|zhOmpq8oVjs}}&lt;br /&gt;
&lt;br /&gt;
{{youtube|9OJ5g2jIU-I}}&lt;br /&gt;
&lt;br /&gt;
{{youtube|IPj8UotKfqU}}&lt;br /&gt;
&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== How do I activate Extended Info for movie/tv show cast members? =====&lt;br /&gt;
Press down from the selected cast member in the video info dialog. I tried making it activate Extended Info when clicking the cast thumb, but never could get the list to scroll smoothly.&lt;br /&gt;
&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets. There are also three home layouts to choose from: default, top menu, and vertical menu.&lt;br /&gt;
&lt;br /&gt;
===== Why don&#039;t the home widgets work with a mouse? =====&lt;br /&gt;
The skin is designed for use with a remote or keyboard, mouse support is limited. For best results using a mouse or touch device, be sure to enable the skin setting to show the home widgets all the time. Skin Settings --&amp;gt; Home window --&amp;gt; Always show home widgets&lt;br /&gt;
&lt;br /&gt;
===== Why are some of my random fanart backgrounds black, or why don&#039;t my thumbnails show up? =====&lt;br /&gt;
This is likely caused by missing or corrupted images in your texture cache. I suggest using the [http://forum.kodi.tv/showthread.php?tid=158373 Texture Cache Maintenance Utility] to clean up and repair your cached textures. It is also useful for finding duplicate media in your library and updating IMDb ratings. I posted a [http://forum.kodi.tv/showthread.php?tid=158373&amp;amp;pid=1859819#pid1859819 guide] to setting it up in Window 8.1.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Compat&lt;br /&gt;
 | Works with Atlantis = &lt;br /&gt;
 | Works with Babylon = &lt;br /&gt;
 | Works with Camelot = &lt;br /&gt;
 | Works with Dharma = &lt;br /&gt;
 | Works with Eden = &lt;br /&gt;
 | Works with Frodo = &lt;br /&gt;
 | Works with Gotham = &lt;br /&gt;
 | Works with Helix = &lt;br /&gt;
 | Works with Isengard = {{yes}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=99741</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=99741"/>
		<updated>2015-08-12T04:21:03Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Kodi 15.x - Mimic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.2.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=GNU GENERAL PUBLIC LICENSE. Version 2, June 1991&lt;br /&gt;
|Forum=http://forum.kodi.tv/showthread.php?tid=221728&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=https://github.com/bryanbrazil/skin.mimic&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Video demos ==&lt;br /&gt;
=== Kodi 15.x - Mimic ===&lt;br /&gt;
&lt;br /&gt;
{{youtube|RGfpbUWVkgQ}}&lt;br /&gt;
&lt;br /&gt;
{{youtube|zhOmpq8oVjs}}&lt;br /&gt;
&lt;br /&gt;
{{youtube|9OJ5g2jIU-I}}&lt;br /&gt;
&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== How do I activate Extended Info for movie/tv show cast members? =====&lt;br /&gt;
Press down from the selected cast member in the video info dialog. I tried making it activate Extended Info when clicking the cast thumb, but never could get the list to scroll smoothly.&lt;br /&gt;
&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets. There are also three home layouts to choose from: default, top menu, and vertical menu.&lt;br /&gt;
&lt;br /&gt;
===== Why don&#039;t the home widgets work with a mouse? =====&lt;br /&gt;
The skin is designed for use with a remote or keyboard, mouse support is limited. For best results using a mouse or touch device, be sure to enable the skin setting to show the home widgets all the time. Skin Settings --&amp;gt; Home window --&amp;gt; Always show home widgets&lt;br /&gt;
&lt;br /&gt;
===== Why are some of my random fanart backgrounds black, or why don&#039;t my thumbnails show up? =====&lt;br /&gt;
This is likely caused by missing or corrupted images in your texture cache. I suggest using the [http://forum.kodi.tv/showthread.php?tid=158373 Texture Cache Maintenance Utility] to clean up and repair your cached textures. It is also useful for finding duplicate media in your library and updating IMDb ratings. I posted a [http://forum.kodi.tv/showthread.php?tid=158373&amp;amp;pid=1859819#pid1859819 guide] to setting it up in Window 8.1.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Compat&lt;br /&gt;
 | Works with Atlantis = &lt;br /&gt;
 | Works with Babylon = &lt;br /&gt;
 | Works with Camelot = &lt;br /&gt;
 | Works with Dharma = &lt;br /&gt;
 | Works with Eden = &lt;br /&gt;
 | Works with Frodo = &lt;br /&gt;
 | Works with Gotham = &lt;br /&gt;
 | Works with Helix = &lt;br /&gt;
 | Works with Isengard = {{yes}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=99740</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=99740"/>
		<updated>2015-08-12T03:39:07Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Kodi 15.x - Mimic */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.2.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=GNU GENERAL PUBLIC LICENSE. Version 2, June 1991&lt;br /&gt;
|Forum=http://forum.kodi.tv/showthread.php?tid=221728&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=https://github.com/bryanbrazil/skin.mimic&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Video demos ==&lt;br /&gt;
=== Kodi 15.x - Mimic ===&lt;br /&gt;
&lt;br /&gt;
{{youtube|RGfpbUWVkgQ}}&lt;br /&gt;
&lt;br /&gt;
{{youtube|zhOmpq8oVjs}}&lt;br /&gt;
&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== How do I activate Extended Info for movie/tv show cast members? =====&lt;br /&gt;
Press down from the selected cast member in the video info dialog. I tried making it activate Extended Info when clicking the cast thumb, but never could get the list to scroll smoothly.&lt;br /&gt;
&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets. There are also three home layouts to choose from: default, top menu, and vertical menu.&lt;br /&gt;
&lt;br /&gt;
===== Why don&#039;t the home widgets work with a mouse? =====&lt;br /&gt;
The skin is designed for use with a remote or keyboard, mouse support is limited. For best results using a mouse or touch device, be sure to enable the skin setting to show the home widgets all the time. Skin Settings --&amp;gt; Home window --&amp;gt; Always show home widgets&lt;br /&gt;
&lt;br /&gt;
===== Why are some of my random fanart backgrounds black, or why don&#039;t my thumbnails show up? =====&lt;br /&gt;
This is likely caused by missing or corrupted images in your texture cache. I suggest using the [http://forum.kodi.tv/showthread.php?tid=158373 Texture Cache Maintenance Utility] to clean up and repair your cached textures. It is also useful for finding duplicate media in your library and updating IMDb ratings. I posted a [http://forum.kodi.tv/showthread.php?tid=158373&amp;amp;pid=1859819#pid1859819 guide] to setting it up in Window 8.1.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Compat&lt;br /&gt;
 | Works with Atlantis = &lt;br /&gt;
 | Works with Babylon = &lt;br /&gt;
 | Works with Camelot = &lt;br /&gt;
 | Works with Dharma = &lt;br /&gt;
 | Works with Eden = &lt;br /&gt;
 | Works with Frodo = &lt;br /&gt;
 | Works with Gotham = &lt;br /&gt;
 | Works with Helix = &lt;br /&gt;
 | Works with Isengard = {{yes}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic008.jpg&amp;diff=98232</id>
		<title>File:Mimic008.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic008.jpg&amp;diff=98232"/>
		<updated>2015-07-04T17:18:10Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic008.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic007.jpg&amp;diff=98231</id>
		<title>File:Mimic007.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic007.jpg&amp;diff=98231"/>
		<updated>2015-07-04T17:17:49Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic007.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic006.jpg&amp;diff=98230</id>
		<title>File:Mimic006.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic006.jpg&amp;diff=98230"/>
		<updated>2015-07-04T17:17:30Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic006.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic005.jpg&amp;diff=98229</id>
		<title>File:Mimic005.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic005.jpg&amp;diff=98229"/>
		<updated>2015-07-04T17:17:14Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic005.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic004.jpg&amp;diff=98228</id>
		<title>File:Mimic004.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic004.jpg&amp;diff=98228"/>
		<updated>2015-07-04T17:16:57Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic004.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic003.jpg&amp;diff=98227</id>
		<title>File:Mimic003.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic003.jpg&amp;diff=98227"/>
		<updated>2015-07-04T17:16:22Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic003.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic002.jpg&amp;diff=98226</id>
		<title>File:Mimic002.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic002.jpg&amp;diff=98226"/>
		<updated>2015-07-04T17:15:54Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic002.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic001.jpg&amp;diff=98225</id>
		<title>File:Mimic001.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic001.jpg&amp;diff=98225"/>
		<updated>2015-07-04T17:15:01Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Bryanbrazil uploaded a new version of &amp;amp;quot;File:Mimic001.jpg&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98224</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98224"/>
		<updated>2015-07-04T16:44:54Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Frequently asked questions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== How do I activate Extended Info for movie/tv show cast members? =====&lt;br /&gt;
Press down from the selected cast member in the video info dialog. I tried making it activate Extended Info when clicking the cast thumb, but never could get the list to scroll smoothly.&lt;br /&gt;
&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets. There are also three home layouts to choose from: default, top menu, and vertical menu.&lt;br /&gt;
&lt;br /&gt;
===== Why don&#039;t the home widgets work with a mouse? =====&lt;br /&gt;
The skin is designed for use with a remote or keyboard, mouse support is limited. For best results using a mouse or touch device, be sure to enable the skin setting to show the home widgets all the time. Skin Settings --&amp;gt; Home window --&amp;gt; Always show home widgets&lt;br /&gt;
&lt;br /&gt;
===== Why are some of my random fanart backgrounds black, or why don&#039;t my thumbnails show up? =====&lt;br /&gt;
This is likely caused by missing or corrupted images in your texture cache. I suggest using the [http://forum.kodi.tv/showthread.php?tid=158373 Texture Cache Maintenance Utility] to clean up and repair your cached textures. It is also useful for finding duplicate media in your library and updating IMDb ratings. I posted a [http://forum.kodi.tv/showthread.php?tid=158373&amp;amp;pid=1859819#pid1859819 guide] to setting it up in Window 8.1.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98223</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98223"/>
		<updated>2015-07-04T16:41:47Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Can I customize the home screen? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== How do I activate Extended Info for movie/tv show cast members? =====&lt;br /&gt;
Press down from the selected cast member in the video info dialog. I tried making it activate Extended Info when clicking the cast thumb, but never could get the list to scroll smoothly.&lt;br /&gt;
&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets. There are also three home layouts to choose from: default, top menu, and vertical menu.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98222</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98222"/>
		<updated>2015-07-04T16:40:35Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* What color themes come with Mimic? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== How do I activate Extended Info for movie/tv show cast members? =====&lt;br /&gt;
Press down from the selected cast member in the video info dialog. I tried making it activate Extended Info when clicking the cast thumb, but never could get the list to scroll smoothly.&lt;br /&gt;
&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98221</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98221"/>
		<updated>2015-07-04T16:39:34Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Supported Addons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=230259 YouTube Browser]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98220</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98220"/>
		<updated>2015-07-04T16:39:01Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Supported Addons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=228435 Nextup Service Notification]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98219</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98219"/>
		<updated>2015-07-04T16:38:15Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Supported Addons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=155693 VideoLanguage]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98218</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98218"/>
		<updated>2015-07-04T16:36:51Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Required Addons */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&lt;br /&gt;
* [[Add-on:ToolBox_Script|script.toolbox]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98217</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=98217"/>
		<updated>2015-07-04T16:34:36Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=2.1.1&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.kodi.tv/addons/isengard/skin.mimic/icon.png}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList. More recently, this skin now &amp;quot;mimics&amp;quot; features from Arctic Zephyr and its mods, fTV, and Phil65&#039;s skin.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.kodi.tv/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--The skin features below are used to automatically populate into other sections of the wiki. Please don&#039;t edit!--&amp;gt;&lt;br /&gt;
{{Skin features&lt;br /&gt;
 | skin = [[Add-on:Mimic|Mimic]]&lt;br /&gt;
 | custom home items = {{yes}}&lt;br /&gt;
 | custom submenu items = {{yes}}&lt;br /&gt;
 | Media flags = {{yes}}&lt;br /&gt;
 | TV show logo = {{yes}}&lt;br /&gt;
 | TV logo downloader = {{yes}}&lt;br /&gt;
 | Artwork downloader = {{yes}}&lt;br /&gt;
 | Clear Art = {{yes}}&lt;br /&gt;
 | cdArt = {{yes}}&lt;br /&gt;
 | Extra fanart = {{yes}}&lt;br /&gt;
 | Season fanart = {{yes}}&lt;br /&gt;
 | Weather fanart = {{yes}}&lt;br /&gt;
 | Live TV = {{yes}}&lt;br /&gt;
 | Next Aired = {{yes}}&lt;br /&gt;
 | TvTunes = {{yes}}&lt;br /&gt;
 | Advanced Launcher = {{yes}}&lt;br /&gt;
 | Watchlist = {{yes}}&lt;br /&gt;
 | MovieSets = {{yes}}&lt;br /&gt;
 | Metadata Actors = {{yes}}&lt;br /&gt;
 | Cinema Experience = {{yes}}&lt;br /&gt;
 | Touch = {{yes}}&lt;br /&gt;
 | PVR = {{yes}}&lt;br /&gt;
 | Skin Widgets = {{yes}}&lt;br /&gt;
 | Intro movie = {{no}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Isengard add-on repository]]&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=InfoLabels&amp;diff=94505</id>
		<title>InfoLabels</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=InfoLabels&amp;diff=94505"/>
		<updated>2015-05-09T00:17:38Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Fix misspelled infolabel&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]|[[Skinning]]}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
Skins can use infolabels with $INFO[infolabel] or the &amp;lt;info&amp;gt; tag. Scripts can read infolabels with &amp;lt;code&amp;gt;xbmc.getInfoLabel(infolabel)&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
An up-to-date list can be found here [https://github.com/xbmc/xbmc/blob/master/xbmc/GUIInfoManager.cpp GUIInfoManager.cpp]&lt;br /&gt;
&lt;br /&gt;
=== Container ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderPath&lt;br /&gt;
|  Shows complete path of currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.FolderName&lt;br /&gt;
|  Shows top most folder in currently displayed folder&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Viewmode&lt;br /&gt;
|  Returns the current viewmode (list, icons etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.SortMethod&lt;br /&gt;
|  Returns the current sort method (name, year, rating, etc.)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginName&lt;br /&gt;
|  Returns the current plugins base folder name&lt;br /&gt;
|-&lt;br /&gt;
|  Container.PluginCategory&lt;br /&gt;
|  Returns the current plugins category (set by the scripter)&lt;br /&gt;
|-&lt;br /&gt;
|  Container.ShowPlot&lt;br /&gt;
|  Returns the TV Show Plot of the current container and can be used at season and episode level&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumPages&lt;br /&gt;
|  Number of pages in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).NumItems&lt;br /&gt;
|  Number of items in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentPage&lt;br /&gt;
|  Current page in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).CurrentItem&lt;br /&gt;
|  Current item in the container with given id.  If no id is specified it grabs the current container.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Position&lt;br /&gt;
|  Returns the current focused position of Container (id) as a numeric label.&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).Totaltime&lt;br /&gt;
|  Returns the total time of all items in the current container&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label&lt;br /&gt;
|  Shows ListItem.Label for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(2).Label )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Label2&lt;br /&gt;
|  Shows ListItem.Label2 for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(-2).Label2 )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Icon&lt;br /&gt;
|  Shows ListItem.Icon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(52).Listitem(1).Icon)&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).ActualIcon&lt;br /&gt;
|  Shows ListItem.ActualIcon for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).ActualIcon )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItem(offset).Thumb&lt;br /&gt;
|  Shows ListItem.Thumb for a specific List or Panel Container with a offset &#039;&#039;( eg: Container(50).Listitem(0).Thumb )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container(id).ListItemNoWrap(offset).Property&lt;br /&gt;
|  Basically returns the same as ListItem(offset) but it won&#039;t wrap. That means if the last item of a list is focused, ListItemNoWrap(1) will be empty while ListItem(1) will return the first item of the list. &#039;&#039;Property&#039;&#039; has to be replaced with Label, Label2, Icon etc. &#039;&#039;( eg: Container(50).ListitemNoWrap(1).Plot )&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(addoncategory)&lt;br /&gt;
|  Returns the current add-on category&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Property(reponame)&lt;br /&gt;
|  Returns the current add-on repository name&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Control ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Control.GetLabel(id)[.index()]&lt;br /&gt;
|  Returns the label value or texture name of the control with the given id. Optionally you can specify index(1) to retrieve label2.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Fanart ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color1&lt;br /&gt;
|  Returns the first of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color2&lt;br /&gt;
|  Returns the second of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Color3&lt;br /&gt;
|  Returns the third of three colors included in the currently selected &#039;&#039;&#039;[[Fanart]]&#039;&#039;&#039; theme for the parent TV Show.  Colors are arranged Lightest to Darkest.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Listitem ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Listitem.Label&lt;br /&gt;
|  Shows the left label of the currently selected item in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Label2&lt;br /&gt;
|  Shows the right label of the currently selected item in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Title&lt;br /&gt;
|  Shows the title of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.OriginalTitle&lt;br /&gt;
|  Shows the original title of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SortLetter&lt;br /&gt;
|  Shows the first letter of the current file in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TrackNumber&lt;br /&gt;
|  Shows the track number of the currently selected song in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Artist&lt;br /&gt;
|  Shows the artist of the currently selected song in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AlbumArtist&lt;br /&gt;
|  Shows the artist of the currently selected album in a list&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently selected Artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently selected Band&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently selected artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently selected artist&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Album&lt;br /&gt;
|  Shows the album of the currently selected song in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently selected Album&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DiscNumber&lt;br /&gt;
|  Shows the disc number of the currently selected song in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Year&lt;br /&gt;
|  Shows the year of the currently selected song, album or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Premiered&lt;br /&gt;
|  Shows the release/aired date of the currently selected episode, show, movie or EPG item in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Genre&lt;br /&gt;
|  Shows the genre of the currently selected song, album or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Director&lt;br /&gt;
|  Shows the director of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Country&lt;br /&gt;
|  Shows the production country of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Episode&lt;br /&gt;
|  Shows the episode number value for the currently selected episode. It also shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Season&lt;br /&gt;
|  Shows the season value for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.TVShowTitle&lt;br /&gt;
|  Shows the name value for the currently selected tvshow in the season and episode depth of the video library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalSeasons)&lt;br /&gt;
|  Shows the total number of seasons for the currently selected tvshow&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TotalEpisodes)&lt;br /&gt;
|  Shows the total number of episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(WatchedEpisodes)&lt;br /&gt;
|  Shows the number of watched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(UnWatchedEpisodes)&lt;br /&gt;
|  Shows the number of unwatched episodes for the currently selected tvshow or season&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(NumEpisodes)&lt;br /&gt;
|  Shows the number of total, watched or unwatched episodes for the currently selected tvshow or season, based on the the current watched filter.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAperture&lt;br /&gt;
|  Shows the F-stop used to take the selected picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureAuthor&lt;br /&gt;
|  Shows the name of the person involved in writing about the selected picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureByline&lt;br /&gt;
|  Shows the name of the person who created the selected picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureBylineTitle&lt;br /&gt;
|  Shows the title of the person who created the selected picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the selected picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCamModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the selected picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCaption&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCategory&lt;br /&gt;
|  Shows the subject of the selected picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the selected picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCity&lt;br /&gt;
|  Shows the city where the selected picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureColour&lt;br /&gt;
|  Shows whether the selected picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureComment&lt;br /&gt;
|  Shows a description of the selected picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the selected picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountry&lt;br /&gt;
|  Shows the full name of the country where the selected picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCountryCode&lt;br /&gt;
|  Shows the country code of the country where the selected picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureCredit&lt;br /&gt;
|  Shows who provided the selected picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDate&lt;br /&gt;
|  Shows the localized date of the selected picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDesc&lt;br /&gt;
|  Shows a short description of the selected picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureDigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the selected picture was taken. This is the value of the EXIF DigitalZoomRatio tag (hex code 0xA404).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpMode&lt;br /&gt;
|  Shows the exposure mode of the selected picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the selected picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExposureBias&lt;br /&gt;
|  Shows the exposure bias of the selected picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureExpTime&lt;br /&gt;
|  Shows the exposure time of the selected picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFlashUsed&lt;br /&gt;
|  Shows the status of flash when the selected picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocalLen&lt;br /&gt;
|  Shows the lens focal length of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureFocusDist&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLat&lt;br /&gt;
|  Shows the latitude where the selected picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSLon&lt;br /&gt;
|  Shows the longitude where the selected picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureGPSAlt&lt;br /&gt;
|  Shows the altitude in meters where the selected picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureHeadline&lt;br /&gt;
|  Shows a synopsis of the contents of the selected picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureImageType&lt;br /&gt;
|  Shows the color components of the selected picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureIPTCTime&lt;br /&gt;
|  Shows the time when the intellectual content of the selected picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureISO&lt;br /&gt;
|  Shows the ISO speed of the camera when the selected picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureKeywords&lt;br /&gt;
|  Shows keywords assigned to the selected picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDate&lt;br /&gt;
|  Shows only the localized date of the selected picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureLongDatetime&lt;br /&gt;
|  Shows the date/timestamp of the selected picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureMeteringMode&lt;br /&gt;
|  Shows the metering mode used when the selected picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureObjectName&lt;br /&gt;
|  Shows a shorthand reference for the selected picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureOrientation&lt;br /&gt;
|  Shows the orientation of the selected picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-     &lt;br /&gt;
|  ListItem.PicturePath&lt;br /&gt;
|  Shows the filename and path of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureProcess&lt;br /&gt;
|  Shows the process used to compress the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the selected picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureResolution&lt;br /&gt;
|  Shows the dimensions of the selected picture&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSource&lt;br /&gt;
|  Shows the original owner of the selected picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the selected picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureState&lt;br /&gt;
|  Shows the State/Province where the selected picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSublocation&lt;br /&gt;
|  Shows the location within a city where the selected picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureSupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the selected picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureTransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the selected picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureUrgency&lt;br /&gt;
|  Shows the urgency of the selected picture. Values are 1-9. The &amp;quot;1&amp;quot; is most urgent. Some image management programs use urgency to indicate picture rating, where urgency &amp;quot;1&amp;quot; is 5 stars and urgency &amp;quot;5&amp;quot; is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PictureWhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the selected picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileName&lt;br /&gt;
|  Shows the filename of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Path&lt;br /&gt;
|  Shows the complete path of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FolderName&lt;br /&gt;
|  Shows top most folder of the path of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileNameAndPath&lt;br /&gt;
|  Shows the full path with filename of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.FileExtension&lt;br /&gt;
|  Shows the file extension (without leading dot) of the currently selected item in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Shows the file date of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DateAdded&lt;br /&gt;
|  Shows the date the currently selected item was added to the library&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Size&lt;br /&gt;
|  Shows the file size of the currently selected song or movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Rating&lt;br /&gt;
|  Shows the IMDB rating of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Votes&lt;br /&gt;
|  Shows the IMDB votes of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.RatingAndVotes&lt;br /&gt;
|  Shows the IMDB rating and votes of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Mpaa&lt;br /&gt;
|  Show the MPAA rating of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ProgramCount&lt;br /&gt;
|  Shows the number of times an xbe has been run from &amp;quot;my programs&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Duration&lt;br /&gt;
|  Shows the song or movie duration of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBTYPE&lt;br /&gt;
|  Shows the database type of the ListItem.DBID for videos (movie, set, genre, actor, tvshow, season, episode). It does not return any value for the music library. Beware with season, the &amp;quot;*all seasons&amp;quot; entry does give a DBTYPE &amp;quot;season&amp;quot; and a DBID, but you can&#039;t get the details of that entry since it&#039;s a virtual entry in the Video Library.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.DBID&lt;br /&gt;
|  Shows the database id of the currently selected listitem in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Cast&lt;br /&gt;
|  Shows a concatenated string of cast members of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.CastAndRole&lt;br /&gt;
|  Shows a concatenated string of cast members and roles of the currently selected movie, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Studio&lt;br /&gt;
|  Studio of current selected Music Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Trailer&lt;br /&gt;
|  Shows the full trailer path with filename of the currently selected movie in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Writer&lt;br /&gt;
|  Name of Writer of current Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Tagline&lt;br /&gt;
|  Small Summary of current Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlotOutline&lt;br /&gt;
|  Small Summary of current Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Plot&lt;br /&gt;
|  Complete Text Summary of Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PercentPlayed&lt;br /&gt;
|  Returns percentage value [0-100] of how far the selected video has been played&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.LastPlayed&lt;br /&gt;
|  Last play date of Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.PlayCount&lt;br /&gt;
|  Playcount of Video in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of current selected TV programme in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of current selected TV programme in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of current selected TV programme in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Date&lt;br /&gt;
|  Day, start time and end time of current selected TV programme in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Number of current selected TV channel in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Name of current selected TV channel in a list or thumb control&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently selected video (common values: 3iv2, avc1, div2, div3, divx, divx 4, dx50, flv, h264, microsoft, mp42, mp43, mp4v, mpeg1video, mpeg2video, mpg4, rv40, svq1, svq3, theora, vp6f, wmv2, wmv3, wvc1, xvid)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoResolution&lt;br /&gt;
|  Shows the resolution of the currently selected video (possible values: 480, 576, 540, 720, 1080, 4K). Note that 540 usually means a widescreen format (around 960x540) while 576 means PAL resolutions (normally 720x576), therefore 540 is actually better resolution than 576.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently selected video (possible values: 1.33, 1.37, 1.66, 1.78, 1.85, 2.20, 2.35, 2.40, 2.55, 2.76)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently selected video (common values: aac, ac3, cook, dca, dtshd_hra, dtshd_ma, eac3, mp1, mp2, mp3, pcm_s16be, pcm_s16le, pcm_u8, truehd, vorbis, wmapro, wmav2)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently selected video. (possible values: 0, 1, 2, 4, 5, 6, 8, 10)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.AudioLanguage&lt;br /&gt;
|  Shows the audio language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubtitleLanguage&lt;br /&gt;
|  Shows the subtitle language of the currently selected video (returns an ISO 639-2 three character code, e.g. eng, epo, deu)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Name)&lt;br /&gt;
|  Shows the name of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Version)&lt;br /&gt;
|  Shows the version of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Summary)&lt;br /&gt;
|  Shows a short description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Description)&lt;br /&gt;
|  Shows the full description of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Type)&lt;br /&gt;
|  Shows the type (screensaver, script, skin, etc...) of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Creator)&lt;br /&gt;
|  Shows the name of the author the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Disclaimer)&lt;br /&gt;
|  Shows the disclaimer of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Changelog)&lt;br /&gt;
|  Shows the changelog of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.ID)&lt;br /&gt;
|  Shows the identifier of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Status)&lt;br /&gt;
|  Shows the status of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Broken)&lt;br /&gt;
|  Shows a message when the addon is marked as broken in the repo&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.Path)&lt;br /&gt;
|  Shows the path of the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartTime&lt;br /&gt;
|  Start time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndTime&lt;br /&gt;
|  End time of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StartDate&lt;br /&gt;
|  Start date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.EndDate&lt;br /&gt;
|  End date of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextTitle&lt;br /&gt;
|  Title of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextGenre&lt;br /&gt;
|  Genre of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlot&lt;br /&gt;
|  Plot of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextPlotOutline&lt;br /&gt;
|  Plot outline of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartTime&lt;br /&gt;
|  Start time of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndTime&lt;br /&gt;
|  End of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextStartDate&lt;br /&gt;
|  Start date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.NextEndDate&lt;br /&gt;
|  End date of the next item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelName&lt;br /&gt;
|  Channelname of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumber&lt;br /&gt;
|  Channel number of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelGroup&lt;br /&gt;
|  Channel group of the selected item (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the currently selected channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Progress&lt;br /&gt;
|  Part of the programme that&#039;s been played (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StereoscopicMode&lt;br /&gt;
|  Returns the stereomode of the selected video (i.e. mono, split_vertical, split_horizontal, row_interleaved, anaglyph_cyan_red, anaglyph_green_magenta)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Musicpartymode labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.SongsPlayed&lt;br /&gt;
|  Number of songs played during Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongs&lt;br /&gt;
|  Number of songs available to Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsPicked&lt;br /&gt;
|  Number of songs picked already for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.MatchingSongsLeft&lt;br /&gt;
|  Number of songs left to be picked from for Party Mode&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RelaxedSongsPicked&lt;br /&gt;
|  Not currently used&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPartyMode.RandomSongsPicked&lt;br /&gt;
|  Number of unique random songs picked during Party Mode&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Network labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IsDHCP&lt;br /&gt;
|  Network type is DHCP or FIXED&lt;br /&gt;
|-&lt;br /&gt;
|  Network.IPAddress&lt;br /&gt;
|  The system&#039;s IP Address (formatted as IP: &amp;lt;ipaddress&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
|  Network.LinkState&lt;br /&gt;
|  Network linkstate e.g. 10mbit/100mbit etc.&lt;br /&gt;
|-&lt;br /&gt;
|  Network.MacAddress&lt;br /&gt;
|  The system&#039;s  mac address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.SubnetMask&lt;br /&gt;
|  Network subnet mask&lt;br /&gt;
|-&lt;br /&gt;
|  Network.GatewayAddress&lt;br /&gt;
|  Network gateway address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS1Address&lt;br /&gt;
|  Network dns 1 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DNS2Address&lt;br /&gt;
|  Network dns 2 address&lt;br /&gt;
|-&lt;br /&gt;
|  Network.DHCPAddress&lt;br /&gt;
|  DHCP ip address&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Player labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime&lt;br /&gt;
|  Time playing media will end&lt;br /&gt;
|-&lt;br /&gt;
|  Player.FinishTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Chapter&lt;br /&gt;
|  Current chapter of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ChapterCount&lt;br /&gt;
|  Total number of chapters of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time&lt;br /&gt;
|  Elapsed time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining&lt;br /&gt;
|  Remaining time of current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.TimeRemaining(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration&lt;br /&gt;
|  Total duration of the current playing media&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Duration(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekTime&lt;br /&gt;
|  Time to which the user is seeking&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset&lt;br /&gt;
|  Indicates the seek offset after a seek press (eg user presses BigStepForward, player.seekoffset returns +10:00)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekOffset(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.SeekStepSize&lt;br /&gt;
|  Displays the seek step size. (v15 addition)&lt;br /&gt;
|-&lt;br /&gt;
|  Player.ProgressCache&lt;br /&gt;
|  Shows how much of the file is cached above current play percentage&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Folderpath&lt;br /&gt;
|  Shows the full path of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filenameandpath&lt;br /&gt;
|  Shows the full path with filename of the currently playing song or movie&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime&lt;br /&gt;
|  Returns the starttime (from the epg) of a tv program, for all other videos it will return the time you started watching this video.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StartTime(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss).&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Title&lt;br /&gt;
|  Returns the musicplayer title for audio and the videoplayer title for videos.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Filename&lt;br /&gt;
|  Returns the filename of the currently playing media.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Music player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Title&lt;br /&gt;
|  Title of the currently playing song,  also available are &amp;quot;MusicPlayer.offset(number).Title&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Title&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Album&lt;br /&gt;
|  Album from which the current song is from,   also available are &amp;quot;MusicPlayer.offset(number).Album&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Album&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Style)&lt;br /&gt;
|  Shows the styles of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Theme)&lt;br /&gt;
|  Shows the themes of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Type)&lt;br /&gt;
|  Shows the Album Type (e.g. compilation, enhanced, explicit lyrics) of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Label)&lt;br /&gt;
|  Shows the record label of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Album_Description)&lt;br /&gt;
|  Shows a review of the currently playing Album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Artist&lt;br /&gt;
|  Artist(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Artist&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Artist&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Born)&lt;br /&gt;
|  Date of Birth of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Died)&lt;br /&gt;
|  Date of Death of the currently playing Artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Formed)&lt;br /&gt;
|  Formation date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Disbanded)&lt;br /&gt;
|  Disbanding date of the currently playing Artist/Band&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_YearsActive)&lt;br /&gt;
|  Years the currently Playing artist has been active&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Instrument)&lt;br /&gt;
|  Instruments played by the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Description)&lt;br /&gt;
|  Shows a biography of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Mood)&lt;br /&gt;
|  Shows the moods of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Style)&lt;br /&gt;
|  Shows the styles of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Artist_Genre)&lt;br /&gt;
|  Shows the genre of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Genre&lt;br /&gt;
|  Genre(s) of current song,  also available are &amp;quot;MusicPlayer.offset(number).Genre&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Genre&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Lyrics&lt;br /&gt;
|  Lyrics of current song stored in ID tag info&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Year&lt;br /&gt;
|  Year of release of current song,  also available are &amp;quot;MusicPlayer.offset(number).Year&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Year&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Rating&lt;br /&gt;
|  Numeric Rating of current song,  also available are &amp;quot;MusicPlayer.offset(number).Rating&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Rating&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.DiscNumber&lt;br /&gt;
|  Disc Number of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).DiscNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).DiscNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Comment&lt;br /&gt;
|  Comment of current song stored in ID tag info,  also available are &amp;quot;MusicPlayer.offset(number).Comment&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Comment&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Time&lt;br /&gt;
|  Current time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TimeSpeed&lt;br /&gt;
|  Both the time and the playspeed formatted up. eg 1:23 (2x)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.TrackNumber&lt;br /&gt;
|  Track number of current song,   also available are &amp;quot;MusicPlayer.offset(number).TrackNumber&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).TrackNumber&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Duration&lt;br /&gt;
|  Duration of current song,   also available are &amp;quot;MusicPlayer.offset(number).Duration&amp;quot; offset is relative to the current playing item and &amp;quot;MusicPlayer.Position(number).Duration&amp;quot; position is relative to the start of the playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitRate&lt;br /&gt;
|  Bitrate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Channels&lt;br /&gt;
|  Number of channels of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.BitsPerSample&lt;br /&gt;
|  Number of bits per sample of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SampleRate&lt;br /&gt;
|  Samplerate of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Codec&lt;br /&gt;
|  Codec of current song&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current music playlist&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelName&lt;br /&gt;
|  Channel name of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumber&lt;br /&gt;
|  Channel number of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the radio channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.ChannelGroup&lt;br /&gt;
|  Channel group of  of the radio programme that&#039;s currently playing (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Video player ====&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Time&lt;br /&gt;
|  Current time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeRemaining&lt;br /&gt;
|  Current remaining time in movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TimeSpeed&lt;br /&gt;
|  Current time + playspeed. eg 1:23:14 (-4x)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Duration&lt;br /&gt;
|  Length of current movie&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Title&lt;br /&gt;
|  Title of currently playing video. If it&#039;s in the database it will return the database title, else the filename&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.TVShowTitle&lt;br /&gt;
|  Title of currently playing episode&#039;s tvshow name&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Season&lt;br /&gt;
|  Season number of the currently playing episode&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Episode&lt;br /&gt;
|  Episode number of the currently playing episode&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Genre&lt;br /&gt;
|  Genre(s) of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Director&lt;br /&gt;
|  Director of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Country&lt;br /&gt;
|  Production country of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Year&lt;br /&gt;
|  Year of release of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Rating&lt;br /&gt;
|  IMDb user rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Votes&lt;br /&gt;
|  IMDb votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.RatingAndVotes&lt;br /&gt;
|  IMDb user rating and votes of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.mpaa&lt;br /&gt;
|  MPAA rating of current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistPosition&lt;br /&gt;
|  Position of the current song in the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlaylistLength&lt;br /&gt;
|  Total size of the current video playlist&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cast&lt;br /&gt;
|  A concatenated string of cast members of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.CastAndRole&lt;br /&gt;
|  A concatenated string of cast members and roles of the current movie, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Album&lt;br /&gt;
|  Album from which the current Music Video is from, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Artist&lt;br /&gt;
|  Artist(s) of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Studio&lt;br /&gt;
|  Studio of current Music Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Writer&lt;br /&gt;
|  Name of Writer of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Tagline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.PlotOutline&lt;br /&gt;
|  Small Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Plot&lt;br /&gt;
|  Complete Text Summary of current playing Video, if it&#039;s in the database&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.LastPlayed&lt;br /&gt;
|  Last play date of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.PlayCount&lt;br /&gt;
|  Playcount of current playing Video, if it&#039;s in the database&lt;br /&gt;
|- class=&amp;quot;userrow&lt;br /&gt;
|  VideoPlayer.VideoCodec&lt;br /&gt;
|  Shows the video codec of the currently playing video (common values: see ListItem.VideoCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoResolution&lt;br /&gt;
|  Shows the video resolution of the currently playing video (possible values: see ListItem.VideoResolution)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.VideoAspect&lt;br /&gt;
|  Shows the aspect ratio of the currently playing video (possible values: see ListItem.VideoAspect)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioCodec&lt;br /&gt;
|  Shows the audio codec of the currently playing video (common values: see ListItem.AudioCodec)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioChannels&lt;br /&gt;
|  Shows the number of audio channels of the currently playing video (possible values: see ListItem.AudioChannels)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.AudioLanguage&lt;br /&gt;
|  Shows the language of the audio of the currently playing video (possible values: see ListItem.AudioLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubtitlesLanguage&lt;br /&gt;
|  Shows the language of the subtitle of the currently playing video (possible values: see ListItem.SubtitlesLanguage)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.StereoscopicMode&lt;br /&gt;
|  Shows the stereoscopic mode of the currently playing video (possible values: see ListItem.StereoscopicMode)&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.EndTime&lt;br /&gt;
|  End date of the currently playing programme (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextTitle&lt;br /&gt;
|  Title of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextGenre&lt;br /&gt;
|  Genre of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlot&lt;br /&gt;
|  Plot of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextPlotOutline&lt;br /&gt;
|  Plot outline of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextStartTime&lt;br /&gt;
|  Start time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextEndTime&lt;br /&gt;
|  End time of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.NextDuration&lt;br /&gt;
|  Duration of the programme that will be played next (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelName&lt;br /&gt;
|  Name of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumber&lt;br /&gt;
|  Number of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.SubChannelNumber&lt;br /&gt;
|  Subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelNumberLabel&lt;br /&gt;
|  Channel and subchannel number of the tv channel that&#039;s currently playing (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ChannelGroup&lt;br /&gt;
|  Group of the curently tuned channel (PVR).&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.ParentalRating&lt;br /&gt;
|  Parental rating of the currently playing programme (PVR).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Playlist ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Length(media)&lt;br /&gt;
|  Total size of the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Position(media)&lt;br /&gt;
|  Position of the current item in the current playlist. optional parameter media is either video or music.&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Random&lt;br /&gt;
|  Returns string ID&#039;s 590 (Randomize Play Enabled) or 591 (Disabled)&lt;br /&gt;
|-&lt;br /&gt;
|  Playlist.Repeat&lt;br /&gt;
|  Returns string ID&#039;s 592 (Repeat One), 593 (Repeat All), or 594 (Repeat Off)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PVR ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingTitle&lt;br /&gt;
|  Title of the programme being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingDateTime&lt;br /&gt;
|  Start date and time of the current recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannel&lt;br /&gt;
|  Channel number that&#039;s being recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingTitle&lt;br /&gt;
|  Title of the next programme that will be recorded&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingDateTime&lt;br /&gt;
|  Start date and time of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannel&lt;br /&gt;
|  Channel name of the next recording&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendName&lt;br /&gt;
|  Name of the backend being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendVersion&lt;br /&gt;
|  Version of the backend that&#039;s being used&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendHost&lt;br /&gt;
|  Backend hostname&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendDiskSpace&lt;br /&gt;
|  Available diskspace on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendChannels&lt;br /&gt;
|  Number of available channels the backend provides&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendTimers&lt;br /&gt;
|  Number of timers set for the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendRecordings&lt;br /&gt;
|  Number of recording available on the backend&lt;br /&gt;
|- &lt;br /&gt;
|  Pvr.BackendDiskspace&lt;br /&gt;
|  Free diskspace available for recordings on the backend&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.BackendNumber&lt;br /&gt;
|  Backend number&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.TotalDiscSpace&lt;br /&gt;
|  Total diskspace available for recordings&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextTimer&lt;br /&gt;
|  Next timer date&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Duration&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Time&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.Progress&lt;br /&gt;
|  {{?}}&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamClient&lt;br /&gt;
| Stream client name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDevice&lt;br /&gt;
| Stream device name&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamStatus&lt;br /&gt;
| Status of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSignal&lt;br /&gt;
| Signal quality of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamSnr&lt;br /&gt;
| Signal to noise ratio of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamBer&lt;br /&gt;
| Bit error rate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamUnc&lt;br /&gt;
| UNC value of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamVideoBitRate&lt;br /&gt;
| Video bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamAudioBitRate&lt;br /&gt;
| Audio bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamDolbyBitRate&lt;br /&gt;
| Dolby bitrate of the stream&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSignal&lt;br /&gt;
| Signal quality of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamProgrSnr&lt;br /&gt;
| Signal to noise ratio of the programme&lt;br /&gt;
|-&lt;br /&gt;
| Pvr.ActStreamEncryptionName&lt;br /&gt;
| Encryption used on the stream&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Skin ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentTheme&lt;br /&gt;
|  Returns the current selected skin theme.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.CurrentColourTheme&lt;br /&gt;
|  Returns the current selected colour theme of the skin.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-set&amp;lt;/span&amp;gt; skin string, set via the Skin.SetString(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; labels.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.AspectRatio&lt;br /&gt;
|  Returns the closest aspect ratio match using the resolution info from the skin&#039;s addon.xml file.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Slideshow ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-  &lt;br /&gt;
|  Slideshow.Altitude&lt;br /&gt;
|  Shows the altitude in meters where the current picture was taken. This is the value of the EXIF GPSInfo.GPSAltitude tag.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Aperture&lt;br /&gt;
|  Shows the F-stop used to take the current picture. This is the value of the EXIF FNumber tag (hex code 0x829D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Author&lt;br /&gt;
|  Shows the name of the person involved in writing about the current picture. This is the value of the IPTC Writer tag (hex code 0x7A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Byline&lt;br /&gt;
|  Shows the name of the person who created the current picture.  This is the value of the IPTC Byline tag (hex code 0x50).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.BylineTitle&lt;br /&gt;
|  Shows the title of the person who created the current picture. This is the value of the IPTC BylineTitle tag (hex code 0x55).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraMake&lt;br /&gt;
|  Shows the manufacturer of the camera used to take the current picture. This is the value of the EXIF Make tag (hex code 0x010F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CameraModel&lt;br /&gt;
|  Shows the manufacturer&#039;s model name or number of the camera used to take the current picture. This is the value of the EXIF Model tag (hex code 0x0110).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Caption&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the IPTC Caption tag (hex code 0x78).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Category&lt;br /&gt;
|  Shows the subject of the current picture as a category code. This is the value of the IPTC Category tag (hex code 0x0F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CCDWidth&lt;br /&gt;
|  Shows the width of the CCD in the camera used to take the current picture. This is calculated from three EXIF tags (0xA002 * 0xA210 / 0xA20e).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.City&lt;br /&gt;
|  Shows the city where the current picture was taken. This is the value of the IPTC City tag (hex code 0x5A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Colour&lt;br /&gt;
|  Shows whether the current picture is &amp;quot;Colour&amp;quot; or &amp;quot;Black and White&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CopyrightNotice&lt;br /&gt;
|  Shows the copyright notice of the current picture. This is the value of the IPTC Copyright tag (hex code 0x74).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Country&lt;br /&gt;
|  Shows the full name of the country where the current picture was taken. This is the value of the IPTC CountryName tag (hex code 0x65).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.CountryCode&lt;br /&gt;
|  Shows the country code of the country where the current picture was taken. This is the value of the IPTC CountryCode tag (hex code 0x64).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Credit&lt;br /&gt;
|  Shows who provided the current picture. This is the value of the IPTC Credit tag (hex code 0x6E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.DigitalZoom&lt;br /&gt;
|  Shows the digital zoom ratio when the current picture was taken. This is the value of the EXIF .DigitalZoomRatio tag (hex code 0xA404).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.SlideComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDate&lt;br /&gt;
|  Shows the localized date of the current picture. The short form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFDescription&lt;br /&gt;
|  Shows a short description of the current picture. The SlideComment, EXIFComment, or Caption values might contain a longer description. This is the value of the EXIF ImageDescription tag (hex code 0x010E).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFSoftware&lt;br /&gt;
|  Shows the name and version of the firmware used by the camera that took the current picture. This is the value of the EXIF Software tag (hex code 0x0131).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.EXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized short form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Exposure&lt;br /&gt;
|  Shows the class of the program used by the camera to set exposure when the current picture was taken. Values include &amp;quot;Manual&amp;quot;, &amp;quot;Program (Auto)&amp;quot;, &amp;quot;Aperture priority (Semi-Auto)&amp;quot;, &amp;quot;Shutter priority (semi-auto)&amp;quot;, etc. This is the value of the EXIF ExposureProgram tag (hex code 0x8822).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureBias&lt;br /&gt;
|  Shows the exposure bias of the current picture. Typically this is a number between -99.99 and 99.99. This is the value of the EXIF ExposureBiasValue tag (hex code 0x9204).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureMode&lt;br /&gt;
|  Shows the exposure mode of the current picture. The possible values are &amp;quot;Automatic&amp;quot;, &amp;quot;Manual&amp;quot;, and &amp;quot;Auto bracketing&amp;quot;. This is the value of the EXIF ExposureMode tag (hex code 0xA402).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ExposureTime&lt;br /&gt;
|  Shows the exposure time of the current picture, in seconds. This is the value of the EXIF ExposureTime tag (hex code 0x829A). If the ExposureTime tag is not found, the ShutterSpeedValue tag (hex code 0x9201) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filedate&lt;br /&gt;
|  Shows the file date of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filename&lt;br /&gt;
|  Shows the file name of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Filesize&lt;br /&gt;
|  Shows the file size of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FlashUsed&lt;br /&gt;
|  Shows the status of flash when the current picture was taken. The value will be either &amp;quot;Yes&amp;quot; or &amp;quot;No&amp;quot;, and might include additional information. This is the value of the EXIF Flash tag (hex code 0x9209).  &lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocalLength&lt;br /&gt;
|  Shows the focal length of the lens, in mm. This is the value of the EXIF FocalLength tag (hex code 0x920A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.FocusDistance&lt;br /&gt;
|  Shows the distance to the subject, in meters. This is the value of the EXIF SubjectDistance tag (hex code 0x9206).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Headline&lt;br /&gt;
|  Shows a synopsis of the contents of the current picture. This is the value of the IPTC Headline tag (hex code 0x69).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ImageType&lt;br /&gt;
|  Shows the color components of the current picture. This is the value of the IPTC ImageType tag (hex code 0x82).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.IPTCDate&lt;br /&gt;
|  Shows the date when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC DateCreated tag (hex code 0x37).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ISOEquivalence&lt;br /&gt;
|  Shows the ISO speed of the camera when the current picture was taken. This is the value of the EXIF ISOSpeedRatings tag (hex code 0x8827).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Keywords&lt;br /&gt;
|  Shows keywords assigned to the current picture. This is the value of the IPTC Keywords tag (hex code 0x19).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Latitude&lt;br /&gt;
|  Shows the latitude where the current picture was taken (degrees, minutes, seconds North or South). This is the value of the EXIF GPSInfo.GPSLatitude and GPSInfo.GPSLatitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LightSource&lt;br /&gt;
|  Shows the kind of light source when the picture was taken. Possible values include &amp;quot;Daylight&amp;quot;, &amp;quot;Fluorescent&amp;quot;, &amp;quot;Incandescent&amp;quot;, etc. This is the value of the EXIF LightSource tag (hex code 0x9208).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFDate&lt;br /&gt;
|  Shows only the localized date of the current picture. The long form of the date is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. If the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.LongEXIFTime&lt;br /&gt;
|  Shows the date/timestamp of the current picture. The localized long form of the date and time is used. The value of the EXIF DateTimeOriginal tag (hex code 0x9003) is preferred. if the DateTimeOriginal tag is not found, the value of DateTimeDigitized (hex code 0x9004) or of DateTime (hex code 0x0132) might be used.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Longitude&lt;br /&gt;
|  Shows the longitude where the current picture was taken (degrees, minutes, seconds East or West). This is the value of the EXIF GPSInfo.GPSLongitude and GPSInfo.GPSLongitudeRef tags.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.MeteringMode&lt;br /&gt;
|  Shows the metering mode used when the current picture was taken. The possible values are &amp;quot;Center weight&amp;quot;, &amp;quot;Spot&amp;quot;, or &amp;quot;Matrix&amp;quot;. This is the value of the EXIF MeteringMode tag (hex code 0x9207).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ObjectName&lt;br /&gt;
|  Shows a shorthand reference for the current picture. This is the value of the IPTC ObjectName tag (hex code 0x05).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Orientation&lt;br /&gt;
|  Shows the orientation of the current picture. Possible values are &amp;quot;Top Left&amp;quot;, &amp;quot;Top Right&amp;quot;, &amp;quot;Left Top&amp;quot;, &amp;quot;Right Bottom&amp;quot;, etc. This is the value of the EXIF Orientation tag (hex code 0x0112).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Path&lt;br /&gt;
|  Shows the file path of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Process&lt;br /&gt;
|  Shows the process used to compress the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.ReferenceService&lt;br /&gt;
|  Shows the Service Identifier of a prior envelope to which the current picture refers. This is the value of the IPTC ReferenceService tag (hex code 0x2D).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Resolution&lt;br /&gt;
|  Shows the dimensions of the current picture (Width x Height)&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideComment&lt;br /&gt;
|  Shows a description of the current picture. This is the value of the EXIF User Comment tag (hex code 0x9286). This is the same value as Slideshow.EXIFComment.&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SlideIndex&lt;br /&gt;
|  Shows the slide index of the current picture&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Source&lt;br /&gt;
|  Shows the original owner of the current picture. This is the value of the IPTC Source tag (hex code 0x73).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SpecialInstructions&lt;br /&gt;
|  Shows other editorial instructions concerning the use of the current picture. This is the value of the IPTC SpecialInstructions tag (hex code 0x28).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.State&lt;br /&gt;
|  Shows the State/Province where the current picture was taken. This is the value of the IPTC ProvinceState tag (hex code 0x5F).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Sublocation&lt;br /&gt;
|  Shows the location within a city where the current picture was taken - might indicate the nearest landmark. This is the value of the IPTC SubLocation tag (hex code 0x5C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.SupplementalCategories&lt;br /&gt;
|  Shows supplemental category codes to further refine the subject of the current picture. This is the value of the IPTC SuppCategory tag (hex code 0x14).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TimeCreated&lt;br /&gt;
|  Shows the time when the intellectual content of the current picture was created, rather than when the picture was created. This is the value of the IPTC TimeCreated tag (hex code 0x3C).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.TransmissionReference&lt;br /&gt;
|  Shows a code representing the location of original transmission of the current picture. This is the value of the IPTC TransmissionReference tag (hex code 0x67).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.Urgency&lt;br /&gt;
|  Shows the urgency of the current picture. Values are 1-9. The 1 is most urgent. Some image management programs use urgency to indicate picture rating, where urgency 1 is 5 stars and urgency 5 is 1 star. Urgencies 6-9 are not used for rating. This is the value of the IPTC Urgency tag (hex code 0x0A).&lt;br /&gt;
|-&lt;br /&gt;
|  Slideshow.WhiteBalance&lt;br /&gt;
|  Shows the white balance mode set when the current picture was taken. The possible values are &amp;quot;Manual&amp;quot; and &amp;quot;Auto&amp;quot;. This is the value of the EXIF WhiteBalance tag (hex code 0xA403).&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== System ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time&lt;br /&gt;
|  Current time&lt;br /&gt;
|-&lt;br /&gt;
|  System.Time(format)&lt;br /&gt;
|  Shows hours (hh), minutes (mm) or seconds (ss). When 12 hour clock is used (xx) will return AM/PM. Also supported: (hh:mm), (mm:ss), (hh:mm:ss), (hh:mm:ss). (xx) option added after dharma&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date&lt;br /&gt;
|  Current date&lt;br /&gt;
|-&lt;br /&gt;
|  System.Date(format)&lt;br /&gt;
|  Show current date using format, available markings: d (day of month 1-31), dd (day of month 01-31), ddd (short day of the week Mon-Sun), DDD (long day of the week Monday-Sunday), m (month 1-12), mm (month 01-12), mmm (short month name Jan-Dec), MMM (long month name January-December), yy (2-digit year), yyyy (4-digit year). Added after dharma.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AlarmPos&lt;br /&gt;
|  Shutdown Timer position&lt;br /&gt;
|-&lt;br /&gt;
|  System.BatteryLevel&lt;br /&gt;
|  Returns the remaining battery level in range 0-100&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpace&lt;br /&gt;
|  Total Freespace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpace&lt;br /&gt;
|  Total Usedspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalSpace&lt;br /&gt;
|  Totalspace on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.UsedSpacePercent&lt;br /&gt;
|  Total Usedspace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeSpacePercent&lt;br /&gt;
|  Total Freespace Percent on the drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.CPUTemperature&lt;br /&gt;
|  Current CPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuUsage&lt;br /&gt;
|  Displays the cpu usage for each individual cpu core.&lt;br /&gt;
|-&lt;br /&gt;
|  System.CoreUsage(id)&lt;br /&gt;
|  Displays the usage of the cpu core with the given &#039;id&#039;&lt;br /&gt;
|-&lt;br /&gt;
|  System.GPUTemperature&lt;br /&gt;
|  Current GPU temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.FanSpeed&lt;br /&gt;
|  Current fan speed&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildVersion&lt;br /&gt;
|  Version of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.BuildDate&lt;br /&gt;
|  Date of build&lt;br /&gt;
|-&lt;br /&gt;
|  System.FriendlyName&lt;br /&gt;
|  Returns the xbmc instance name. It will auto append (%hostname%) in case the device name was not changed. eg. &amp;quot;XBMC (htpc)&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  System.FPS&lt;br /&gt;
|  Current rendering speed (frames per second)&lt;br /&gt;
|-&lt;br /&gt;
|  System.FreeMemory&lt;br /&gt;
|  Amount of free memory in Mb&lt;br /&gt;
|-&lt;br /&gt;
|  System.Memory(format)&lt;br /&gt;
|  Available formats: used, used.percent, free, free.percent, total&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenMode&lt;br /&gt;
|  Screenmode (eg windowed / fullscreen)&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenWidth&lt;br /&gt;
|  Width of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenHeight&lt;br /&gt;
|  Height of screen in pixels&lt;br /&gt;
|-&lt;br /&gt;
|  System.StartupWindow&lt;br /&gt;
|  The Window Kodi will load on startup&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentWindow&lt;br /&gt;
|  Current Window we are in&lt;br /&gt;
|-&lt;br /&gt;
|  System.CurrentControl&lt;br /&gt;
|  Current focused control&lt;br /&gt;
|-&lt;br /&gt;
|  System.DVDLabel&lt;br /&gt;
|  Label of the disk in the &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;DVD-ROM&amp;lt;/span&amp;gt; drive&lt;br /&gt;
|-&lt;br /&gt;
|  System.HddTemperature&lt;br /&gt;
|  Hdd temperature&lt;br /&gt;
|-&lt;br /&gt;
|  System.KernelVersion&lt;br /&gt;
|  System kernel version&lt;br /&gt;
|-&lt;br /&gt;
|  System.Uptime&lt;br /&gt;
|  System current uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.TotalUptime&lt;br /&gt;
|  System total uptime&lt;br /&gt;
|-&lt;br /&gt;
|  System.CpuFrequency&lt;br /&gt;
|  System cpu frequency&lt;br /&gt;
|-&lt;br /&gt;
|  System.ScreenResolution&lt;br /&gt;
|  Screen resolution&lt;br /&gt;
|-&lt;br /&gt;
|  System.VideoEncoderInfo&lt;br /&gt;
|  Video encoder info&lt;br /&gt;
|-&lt;br /&gt;
|  System.InternetState&lt;br /&gt;
|  Will return the internet state, connected or not connected&lt;br /&gt;
and for Conditional use: Connected-&amp;gt;TRUE, not Connected-&amp;gt;FALSE, do not use to check status in a pythonscript since it is threaded.&lt;br /&gt;
|-&lt;br /&gt;
|  System.Language&lt;br /&gt;
|  Shows the current language&lt;br /&gt;
|-&lt;br /&gt;
|  System.GetBool(boolean)&lt;br /&gt;
|  Returns the value of any standard system boolean setting.  Will not work with settings in advancedsettings.xml&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileName&lt;br /&gt;
|  Shows the User name of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileCount&lt;br /&gt;
|  Shows the number of defined profiles&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileAutoLogin&lt;br /&gt;
|  The profile Kodi will auto login to&lt;br /&gt;
|-&lt;br /&gt;
|  System.StereoscopicMode&lt;br /&gt;
|  The prefered stereoscopic mode (settings &amp;gt; video &amp;gt; playback)&lt;br /&gt;
|-&lt;br /&gt;
|  System.TemperatureUnits&lt;br /&gt;
|  Shows Celsius or Fahrenheit symbol&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonTitle(id)&lt;br /&gt;
|  Returns the title of the addon with the given id&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonVersion(id)&lt;br /&gt;
|  Returns the version of the addon with the given id&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Visualisation ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Preset&lt;br /&gt;
|  Shows the current preset of the visualisation.&lt;br /&gt;
|-&lt;br /&gt;
|  Visualisation.Name&lt;br /&gt;
|  Shows the name of the visualisation.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Weather labels ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Current weather conditions – this is looked up in a background process.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Temperature&lt;br /&gt;
|  Current weather temperature&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Location&lt;br /&gt;
|  City/town which the above two items are for&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.fanartcode&lt;br /&gt;
|  Current weather fanartcode.&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.plugin&lt;br /&gt;
|  Current weather plugin.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Window ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window.Property(xmlfile)&lt;br /&gt;
|  Displays the name of the xml file currently shown&lt;br /&gt;
|-&lt;br /&gt;
|  Window(AddonBrowser).Property(Updated)&lt;br /&gt;
|  Shows the date and time the addon repo was last checked for updates&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Home).Property(key)&lt;br /&gt;
|  The home window has the following info labels.&lt;br /&gt;
Movies.Count, Movies.Watched, Movies.UnWatched, TVShows.Count, TVShows.Watched, TVShows.UnWatched, Episodes.Count, Episodes.Watched, Episodes.UnWatched, MusicVideos.Count, MusicVideos.Watched, MusicVideos.UnWatched, Music.SongsCount, Music.AlbumsCount, Music.ArtistsCount&lt;br /&gt;
&lt;br /&gt;
LatestMovie.[1-10].Title, LatestMovie.[1-10].Year, LatestMovie.[1-10].RunningTime, LatestMovie.[1-10].Rating, LatestMovie.[1-10].Plot, LatestMovie.[1-10].Trailer, LatestMovie.[1-10].Thumb, LatestMovie.[1-10].Fanart, LatestMovie.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestEpisode.[1-10].ShowTitle, LatestEpisode.[1-10].EpisodeTitle, LatestEpisode.[1-10].EpisodeNo, LatestEpisode.[1-10].EpisodeSeason, LatestEpisode.[1-10].EpisodeNumber, LatestEpisode.[1-10].Rating, LatestEpisode.[1-10].Plot, LatestEpisode.[1-10].Thumb, LatestEpisode.[1-10].ShowThumb, LatestEpisode.[1-10].SeasonThumb, LatestEpisode.[1-10].Fanart, LatestEpisode.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestMusicVideo.[1-10].Title, LatestMusicVideo.[1-10].Thumb, LatestMusicVideo.[1-10].Year, LatestMusicVideo.[1-10].Plot, LatestMusicVideo.[1-10].RunningTime, LatestMusicVideo.[1-10].Path, LatestMusicVideo.[1-10].Artist, LatestMusicVideo.[1-10].Fanart&lt;br /&gt;
&lt;br /&gt;
LatestSong.[1-10].Title, LatestSong.[1-10].Artist, LatestSong.[1-10].Album, LatestSong.[1-10].Year, LatestSong.[1-10].Rating, LatestSong.[1-10].Thumb, LatestSong.[1-10].Fanart, LatestSong.[1-10].Path&lt;br /&gt;
&lt;br /&gt;
LatestAlbum.[1-10].Title, LatestAlbum.[1-10].Artist, LatestAlbum.[1-10].Year, LatestAlbum.[1-10].Rating, LatestAlbum.[1-10].Thumb, LatestAlbum.[1-10].Fanart, LatestAlbum.[1-10].Path&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info labels.&lt;br /&gt;
Location, Updated, Current.Condition, Current.Temperature, Current.FeelsLike, Current.UVIndex, Current.Wind (From &amp;lt;wind dir.&amp;gt; at &amp;lt;speed&amp;gt; &amp;lt;unit&amp;gt;), Current.WindSpeed, Current.WindDirection, Current.DewPoint, Current.Humidity, Day[0-6].Title, Day[0-6].HighTemp, Day[0-6].LowTemp, Day[0-6].Outlook, WeatherProvider&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Data set in Current.Temperature, Current.FeelsLike, Day[0-6].HighTemp, Day[0-6].LowTemp should be provided in Celsius, and will be autoconverted according to System.TemperatureUnits&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Images Available in Kodi ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
! InfoLabels&lt;br /&gt;
! style=&amp;quot;80%&amp;quot; | Definition&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(tvshow.fanart)&lt;br /&gt;
|  Fanart Image of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(season.poster)&lt;br /&gt;
|  Thumbnail Image of the parent season&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.fanart)&lt;br /&gt;
|  Fanart Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Container.Art(artist.thumb)&lt;br /&gt;
|  Thumbnail Image of the parent album artist&lt;br /&gt;
|-&lt;br /&gt;
|  Fanart.Image&lt;br /&gt;
|  Fanart image for the parent TV Show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Thumb&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. Note: Deprecated but still available, returns the same as ListItem.Art(thumb).&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Icon&lt;br /&gt;
|  Shows the thumbnail (if it exists) of the currently selected item in a list or thumb control. If no thumbnail image exists, it will show the icon.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.ActualIcon&lt;br /&gt;
|  Shows the icon of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearart)&lt;br /&gt;
|  Returns the clearart (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(clearlogo)&lt;br /&gt;
|  Returns the clearlogo (if it exists) of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently selected movie or tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(banner)&lt;br /&gt;
|  Returns the banner of the currently selected tv show.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected item.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the parent container.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.poster)&lt;br /&gt;
|  Returns the season poster of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.banner)&lt;br /&gt;
|  Returns the season banner of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Art(season.fanart)&lt;br /&gt;
|  Returns the fanart image of the currently selected season. (Only available in DialogVideoInfo.xml)&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Overlay&lt;br /&gt;
|  Shows the Overlay Icon status (compressed file [OverlayRAR.png], Trainer [OverlayTrainer.png], watched [OverlayWatched.png], unwatched [OverlayUnwatched.png], locked [OverlayLocked.png]) of the currently selected item in a list or thumb control.&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(ArtistThumb)&lt;br /&gt;
|  Thumbnail Image of the parent artist, for use in dialogalbuminfo.xml and dialogsonginfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Addon.StarRating)&lt;br /&gt;
|  Returns a value of rating0.png to rating5.png for the currently selected addon&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(Fanart_Image)&lt;br /&gt;
|  Fanart Image currently selected item or of the parent TV show&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(SeasonThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show season, for use in dialogvideoinfo.xml&lt;br /&gt;
|-&lt;br /&gt;
|  ListItem.Property(TVShowThumb)&lt;br /&gt;
|  Thumbnail Image of the parent TV show, for use in dialogvideoinfo.xml (available anywhere)&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Cover&lt;br /&gt;
|  Cover of currently playing album&lt;br /&gt;
|-&lt;br /&gt;
|  MusicPlayer.Property(Fanart_Image)&lt;br /&gt;
|  Fanart image of the currently playing artist&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(fanart)&lt;br /&gt;
|  Fanart Image of the currently playing episode&#039;s parent TV show &lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(thumb)&lt;br /&gt;
|  Returns the thumbnail image of the currently playing item.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(poster)&lt;br /&gt;
|  Returns the poster of the currently playing movie.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.poster)&lt;br /&gt;
|  Returns the tv show poster of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.Art(tvshow.banner)&lt;br /&gt;
|  Returns the tv show banner of the currently playing episode&#039;s parent TV show.&lt;br /&gt;
|-&lt;br /&gt;
|  Player.StarRating&lt;br /&gt;
|  Returns a value of 0 to 5 as a graphical display from images named rating0.png to rating5.png of the skin&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NowRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme currently being recorded.&lt;br /&gt;
|-&lt;br /&gt;
|  Pvr.NextRecordingChannelIcon&lt;br /&gt;
|  Channel icon of the programme that will be recorded next.&lt;br /&gt;
|-&lt;br /&gt;
|  Skin.String(name)&lt;br /&gt;
| Returns the image or image folder set by the user via a Skin.SetPath(name) or Skin.SetImage(name) &#039;&#039;&#039;[[List of Built In Functions]]&#039;&#039;&#039;. Allows skinners to have &amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;user-customisable&amp;lt;/span&amp;gt; images and multiimages.&lt;br /&gt;
|-&lt;br /&gt;
|  System.AddonIcon(id)&lt;br /&gt;
|  Returns the Icon of the specified addon. Instead of specifying the id directly, one can also use an infolabel (eg. $INFO[Skin.String(Foo)])&lt;br /&gt;
|-&lt;br /&gt;
|  System.ProfileThumb&lt;br /&gt;
|  Shows the Thumbnail image of the currently logged in Kodi user&lt;br /&gt;
|-&lt;br /&gt;
|  VideoPlayer.Cover&lt;br /&gt;
|  Cover of currently playing movie&lt;br /&gt;
|-&lt;br /&gt;
|  Weather.Conditions&lt;br /&gt;
|  Image of current weather conditions (NOTE: Can be used to load/refresh weather conditions)&lt;br /&gt;
|-&lt;br /&gt;
|  Window([window]).Property(key)&lt;br /&gt;
|  Window property. (key can be any value, optional window can be id or name)&lt;br /&gt;
|-&lt;br /&gt;
|  Window(Weather).Property(key)&lt;br /&gt;
|  The weather window has the following info images.&lt;br /&gt;
Current.ConditionIcon, Day[0-6].OutlookIcon, Current.FanartCode, Day[0-6].FanartCode, WeatherProviderLogo&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&#039;&#039;&#039;Development:&#039;&#039;&#039;&lt;br /&gt;
* [[Add-on development]]&lt;br /&gt;
* [[Skinning]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Skin development]]&lt;br /&gt;
[[Category:Add-on development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Window_IDs&amp;diff=88931</id>
		<title>Window IDs</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Window_IDs&amp;diff=88931"/>
		<updated>2015-04-12T19:21:30Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]}}&lt;br /&gt;
{{see also|Opening Windows and Dialogs|Python development|Skinning}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
This table cross-references Window names, Window definitions, Window ID, and the delta Window ID&#039;s (this is the delta from the home window.) The code that performs the cross-reference is found in [https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk/xbmc/ButtonTranslator.cpp?view=markup ButtonTranslator.cpp].&lt;br /&gt;
&lt;br /&gt;
* [[keymap.xml]] uses the Window name.&lt;br /&gt;
* Kodi&#039;s C++ code uses the Window definitions and Window ID&#039;s.&lt;br /&gt;
* ActivateWindow() should use the Window name.&lt;br /&gt;
* sounds.xml should use the window name&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You can use secondary parameters with all media windows, as can be seen here:&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[[Opening Windows and Dialogs]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
* You want a button in your skin or on your remote taking you directly to the movie listing you let that button do&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ActivateWindow(Videos,videodb://movies/titles/)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable sortable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Name !! Definition !! Window ID !! Delta window ID !! source XML file&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;home&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_HOME&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10000&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt;&lt;br /&gt;
| Home.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;programs&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_PROGRAMS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10001&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPrograms.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pictures&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_PICTURES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10002&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPics.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;filemanager&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_FILES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10003&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt;&lt;br /&gt;
| FileManager.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;settings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10004&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;&lt;br /&gt;
| Settings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;music&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10005&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;5&amp;lt;/code&amp;gt;&lt;br /&gt;
| None – this is just a wrapper for the current My Music view (who&#039;s IDs are 501 and 502)&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;video&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEOS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10006&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;6&amp;lt;/code&amp;gt;&lt;br /&gt;
| None – this is just a wrapper for the current My Video view (who&#039;s IDs are 21-25) &lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;systeminfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SYSTEM_INFORMATION&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10007&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;7&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsSystemInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;screencalibration&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MOVIE_CALIBRATION&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10011&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;11&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsScreenCalibration.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;picturessettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYPICTURES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10012&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;programssettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYPROGRAMS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10013&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;13&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;weathersettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYWEATHER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10014&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;14&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYMUSIC&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10015&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;15&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;systemsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_SYSTEM&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10016&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;16&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videossettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYVIDEOS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10017&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;17&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;servicesettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_SERVICE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10018&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;18&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;appearancesettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_APPEARANCE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10019&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;19&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;scripts&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SCRIPTS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10020&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;20&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyScripts.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pvrsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYPVR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10021&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;21&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videolibrary&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_NAV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10025&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;25&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyVideoNav.xml - Replaces the following .XML files: MyVideoGenre (WINDOW_VIDEO_GENRE), MyVideoActors (WINDOW_VIDEO_ACTOR), MyVideoYear (WINDOW_VIDEO_YEAR), MyVideoTitle (WINDOW_VIDEO_TITLE)&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videoplaylist&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_PLAYLIST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10028&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;28&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyVideoPlaylist.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;loginscreen&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_LOGINSCREEN&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10029&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;29&amp;lt;/code&amp;gt;&lt;br /&gt;
| LoginScreen.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;profiles&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_PROFILES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10034&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;34&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsProfile.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;addonbrowser&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_ADDON_BROWSER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10040&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;40&amp;lt;/code&amp;gt;&lt;br /&gt;
| AddonBrowser.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;yesnodialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_YES_NO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10100&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;100&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogYesNo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;progressdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PROGRESS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10101&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;101&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogProgress.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;virtualkeyboard&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KEYBOARD&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10103&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;103&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKeyboard.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;volumebar&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VOLUME_BAR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10104&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;104&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogVolumeBar.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;contextmenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_CONTEXT_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10106&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;106&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogContextMenu.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;infodialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KAI_TOAST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10107&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;107&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKaiToast.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;numericinput&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_NUMERIC&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10109&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;109&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogNumeric.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;shutdownmenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_BUTTON_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10111&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;111&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogButtonMenu.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;mutebug&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MUTE_BUG&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10113&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;113&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogMuteBug.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;playercontrols&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PLAYER_CONTROLS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10114&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;114&amp;lt;/code&amp;gt;&lt;br /&gt;
| PlayerControls.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;seekbar&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SEEK_BAR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10115&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;115&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSeekBar.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicosd&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MUSIC_OSD&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10120&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;120&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicOSD.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;visualisationpresetlist&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VIS_PRESET_LIST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10122&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;122&amp;lt;/code&amp;gt;&lt;br /&gt;
| VisualizationPresetList.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;osdvideosettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VIDEO_OSD_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10123&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;123&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSDSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;osdaudiosettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_AUDIO_OSD_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10124&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;124&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSDSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videobookmarks&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VIDEO_BOOKMARKS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10125&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;125&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSDBookmarks.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;filebrowser&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FILE_BROWSER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10126&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;126&amp;lt;/code&amp;gt;&lt;br /&gt;
| FileBrowser.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;networksetup&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_NETWORK_SETUP&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10128&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;128&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogNetworkSetup.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;mediasource&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MEDIA_SOURCE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10129&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;129&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogMediaSource.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;profilesettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_PROFILE_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10130&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;130&amp;lt;/code&amp;gt;&lt;br /&gt;
| ProfileSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;locksettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_LOCK_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10131&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;131&amp;lt;/code&amp;gt;&lt;br /&gt;
| LockSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;contentsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_CONTENT_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10132&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;132&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogContentSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;favourites&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FAVOURITES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10134&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;134&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogFavourites.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;songinformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SONG_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10135&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;135&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSongInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;smartplaylisteditor&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SMART_PLAYLIST_EDITOR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10136&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;136&amp;lt;/code&amp;gt;&lt;br /&gt;
| SmartPlaylistEditor.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;smartplaylistrule&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SMART_PLAYLIST_RULE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10137&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;137&amp;lt;/code&amp;gt;&lt;br /&gt;
| SmartPlaylistRule.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;busydialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_BUSY&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10138&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;138&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogBusy.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pictureinfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PICTURE_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10139&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;139&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPictureInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;addonsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_ADDON_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10140&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;140&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAddonSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;accesspoints&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_ACCESS_POINTS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10141&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;141&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAccessPoints.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;fullscreeninfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FULLSCREEN_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10142&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;142&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogFullScreenInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;karaokeselector&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KARAOKE_SONGSELECT&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10143&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;143&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKaraokeSongSelector.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;karaokelargeselector&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KARAOKE_SELECTOR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10144&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;144&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKaraokeSongSelectorLarge.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;sliderdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SLIDER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10145&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;145&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSlider.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;addoninformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_ADDON_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10146&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;146&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAddonInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;textviewer&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_TEXT_VIEWER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10147&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;147&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogTextViewer.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;peripherals&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PERIPHERAL_MANAGER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10149&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;149&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPeripheralManager.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;peripheralsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PERIPHERAL_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10150&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;150&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPeripheralSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;extendedprogressdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_EXT_PROGRESS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10151&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;151&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogExtendedProgressBar.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;mediafilter&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MEDIA_FILTER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10152&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;152&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogMediaFilter.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;subtitlesearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SUBTITLES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10153&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;153&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSubtitles.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicplaylist&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_PLAYLIST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10500&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;500&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicPlaylist.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicfiles&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_FILES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10501&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;501&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicSongs.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musiclibrary&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_NAV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10502&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;502&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicNav.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicplaylisteditor&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_PLAYLIST_EDITOR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10503&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;503&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicPlaylistEditor.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;FullscreenLiveTV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_FULLSCREEN_LIVETV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10614&amp;lt;/code&amp;gt;&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvchannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_CHANNELS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10615&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;615&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRChannels.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvrecordings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_RECORDINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10616&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;616&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRRecordings.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvguide&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_GUIDE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10617&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;617&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRGuide.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvtimers&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_TIMERS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10618&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;618&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRTimers.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvsearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_SEARCH&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10619&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;619&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRSearch.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiochannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_CHANNELS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10620&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;620&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRChannels.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiorecordings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_RECORDINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10621&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;621&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRRecordings.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radioguide&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_GUIDE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10622&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;622&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRGuide.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiotimers&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_TIMERS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10623&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;623&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRTimers.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiosearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_SEARCH&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10624&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;624&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRSearch.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrguideinfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_GUIDE_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10602&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;602&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGuideInfo.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrrecordinginfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_RECORDING_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10603&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;603&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRRecordingInfo.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrtimersetting&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_TIMER_SETTING&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10604&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;604&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRTimerSettings.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrgroupmanager&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_GROUP_MANAGER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10605&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;605&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGroupManager.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrchannelmanager&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_CHANNEL_MANAGER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10606&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;606&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRChannelManager.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrguidesearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_GUIDE_SEARCH&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10607&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;607&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGuideSearch.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrosdchannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_OSD_CHANNELS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10610&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;610&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRChannelsOSD.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrosdguide&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_OSD_GUIDE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10611&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;611&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGuideOSD.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;Custom Skin Windows&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;1100–1199 &amp;lt;/code&amp;gt;&lt;br /&gt;
| custom*.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;selectdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SELECT&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12000&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2000&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSelect.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicinformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12001&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2001&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAlbumInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;okdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_OK&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12002&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2002&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogOK.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;movieinformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12003&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2003&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogVideoInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;fullscreenvideo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_FULLSCREEN_VIDEO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12005&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2005&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoFullScreen.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;visualisation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VISUALISATION&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12006&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2006&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicVisualisation.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;slideshow&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SLIDESHOW&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12007&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2007&amp;lt;/code&amp;gt;&lt;br /&gt;
| SlideShow.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;filestackingdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FILESTACKING&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12008&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2008&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogFileStacking.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;karaoke&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_KARAOKELYRICS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12009&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2009&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicKaraokeLyrics.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;weather&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_WEATHER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12600&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2600&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyWeather.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;screensaver&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SCREENSAVER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12900&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2900&amp;lt;/code&amp;gt;&lt;br /&gt;
| none&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videoosd&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_OSD&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12901&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2901&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSD.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videomenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MEDIA_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12902&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2902&amp;lt;/code&amp;gt;&lt;br /&gt;
| none&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;startup&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_STARTUP_ANIM&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12999&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2999&amp;lt;/code&amp;gt;&lt;br /&gt;
| startup.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;skinsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| SkinSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;startwindow&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| shortcut to the current startwindow&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;5&amp;quot; bgcolor=&amp;quot;#ffffff&amp;quot; | In addition, there are the following &amp;quot;special&amp;quot; windows whose id is not really a concern (and you&#039;ll notice isn&#039;t unique)&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pointer&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;105 &amp;lt;/code&amp;gt;&lt;br /&gt;
| Pointer.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicoverlay&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_OVERLAY&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12903&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2903&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicOverlay.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videooverlay&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_OVERLAY&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12904&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2904&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOverlay.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;(Python Windows)&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;30&amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;00–309&amp;lt;/span&amp;gt;9 &amp;lt;/code&amp;gt;&lt;br /&gt;
| none &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;addon&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;40&amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;00–409&amp;lt;/span&amp;gt;9 &amp;lt;/code&amp;gt;&lt;br /&gt;
| none &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
== Removed window IDs ==&lt;br /&gt;
* &amp;lt;code&amp;gt;networksettings&amp;lt;/code&amp;gt; - Removed in v12 Frodo&lt;br /&gt;
* &amp;lt;code&amp;gt;musicscan&amp;lt;/code&amp;gt; - Removed in v12 Frodo&lt;br /&gt;
* &amp;lt;code&amp;gt;videoscan&amp;lt;/code&amp;gt; - Removed in v12 Frodo&lt;br /&gt;
* &amp;lt;code&amp;gt;videofiles&amp;lt;/code&amp;gt; - Removed in v13 Gotham&lt;br /&gt;
* &amp;lt;code&amp;gt;pvr&amp;lt;/code&amp;gt; - Replaced in v14 Helix with more specific PVR windows&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Keymaps]]&lt;br /&gt;
* [[Action IDs]]&lt;br /&gt;
* [[Built-in scripting]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{helix updated}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Add-on development]]&lt;br /&gt;
[[Category:Skin development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Window_IDs&amp;diff=88930</id>
		<title>Window IDs</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Window_IDs&amp;diff=88930"/>
		<updated>2015-04-12T16:37:46Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: Added tvsettings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{mininav|[[Development]]|[[Add-on development]]}}&lt;br /&gt;
{{see also|Opening Windows and Dialogs|Python development|Skinning}}&lt;br /&gt;
&amp;lt;section begin=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
This table cross-references Window names, Window definitions, Window ID, and the delta Window ID&#039;s (this is the delta from the home window.) The code that performs the cross-reference is found in [https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk/xbmc/ButtonTranslator.cpp?view=markup ButtonTranslator.cpp].&lt;br /&gt;
&lt;br /&gt;
* [[keymap.xml]] uses the Window name.&lt;br /&gt;
* Kodi&#039;s C++ code uses the Window definitions and Window ID&#039;s.&lt;br /&gt;
* ActivateWindow() should use the Window name.&lt;br /&gt;
* sounds.xml should use the window name&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You can use secondary parameters with all media windows, as can be seen here:&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[[Opening Windows and Dialogs]]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&lt;br /&gt;
* You want a button in your skin or on your remote taking you directly to the movie listing you let that button do&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;ActivateWindow(Videos,videodb://movies/titles/)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;prettytable sortable&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
! Name !! Definition !! Window ID !! Delta window ID !! source XML file&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;home&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_HOME&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10000&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt;&lt;br /&gt;
| Home.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;programs&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_PROGRAMS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10001&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPrograms.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pictures&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_PICTURES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10002&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPics.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;filemanager&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_FILES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10003&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt;&lt;br /&gt;
| FileManager.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;settings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10004&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;&lt;br /&gt;
| Settings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;music&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10005&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;5&amp;lt;/code&amp;gt;&lt;br /&gt;
| None – this is just a wrapper for the current My Music view (who&#039;s IDs are 501 and 502)&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;video&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEOS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10006&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;6&amp;lt;/code&amp;gt;&lt;br /&gt;
| None – this is just a wrapper for the current My Video view (who&#039;s IDs are 21-25) &lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;systeminfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SYSTEM_INFORMATION&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10007&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;7&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsSystemInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;screencalibration&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MOVIE_CALIBRATION&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10011&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;11&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsScreenCalibration.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;picturessettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYPICTURES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10012&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;programssettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYPROGRAMS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10013&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;13&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;weathersettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYWEATHER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10014&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;14&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYMUSIC&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10015&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;15&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;systemsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_SYSTEM&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10016&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;16&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videossettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYVIDEOS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10017&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;17&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;servicesettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_SERVICE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10018&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;18&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;appearancesettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_APPEARANCE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10019&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;19&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;scripts&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SCRIPTS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10020&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;20&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyScripts.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;tvsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_MYPVR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10021&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;21&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsCategory.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videolibrary&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_NAV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10025&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;25&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyVideoNav.xml - Replaces the following .XML files: MyVideoGenre (WINDOW_VIDEO_GENRE), MyVideoActors (WINDOW_VIDEO_ACTOR), MyVideoYear (WINDOW_VIDEO_YEAR), MyVideoTitle (WINDOW_VIDEO_TITLE)&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videoplaylist&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_PLAYLIST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10028&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;28&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyVideoPlaylist.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;loginscreen&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_LOGINSCREEN&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10029&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;29&amp;lt;/code&amp;gt;&lt;br /&gt;
| LoginScreen.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;profiles&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SETTINGS_PROFILES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10034&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;34&amp;lt;/code&amp;gt;&lt;br /&gt;
| SettingsProfile.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;addonbrowser&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_ADDON_BROWSER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10040&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;40&amp;lt;/code&amp;gt;&lt;br /&gt;
| AddonBrowser.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;yesnodialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_YES_NO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10100&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;100&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogYesNo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;progressdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PROGRESS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10101&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;101&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogProgress.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;virtualkeyboard&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KEYBOARD&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10103&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;103&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKeyboard.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;volumebar&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VOLUME_BAR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10104&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;104&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogVolumeBar.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;contextmenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_CONTEXT_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10106&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;106&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogContextMenu.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;infodialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KAI_TOAST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10107&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;107&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKaiToast.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;numericinput&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_NUMERIC&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10109&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;109&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogNumeric.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;shutdownmenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_BUTTON_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10111&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;111&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogButtonMenu.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;mutebug&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MUTE_BUG&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10113&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;113&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogMuteBug.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;playercontrols&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PLAYER_CONTROLS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10114&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;114&amp;lt;/code&amp;gt;&lt;br /&gt;
| PlayerControls.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;seekbar&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SEEK_BAR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10115&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;115&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSeekBar.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicosd&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MUSIC_OSD&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10120&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;120&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicOSD.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;visualisationpresetlist&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VIS_PRESET_LIST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10122&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;122&amp;lt;/code&amp;gt;&lt;br /&gt;
| VisualizationPresetList.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;osdvideosettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VIDEO_OSD_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10123&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;123&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSDSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;osdaudiosettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_AUDIO_OSD_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10124&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;124&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSDSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videobookmarks&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_VIDEO_BOOKMARKS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10125&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;125&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSDBookmarks.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;filebrowser&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FILE_BROWSER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10126&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;126&amp;lt;/code&amp;gt;&lt;br /&gt;
| FileBrowser.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;networksetup&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_NETWORK_SETUP&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10128&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;128&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogNetworkSetup.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;mediasource&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MEDIA_SOURCE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10129&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;129&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogMediaSource.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;profilesettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_PROFILE_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10130&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;130&amp;lt;/code&amp;gt;&lt;br /&gt;
| ProfileSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;locksettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_LOCK_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10131&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;131&amp;lt;/code&amp;gt;&lt;br /&gt;
| LockSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;contentsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_CONTENT_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10132&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;132&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogContentSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;favourites&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FAVOURITES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10134&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;134&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogFavourites.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;songinformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SONG_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10135&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;135&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSongInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;smartplaylisteditor&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SMART_PLAYLIST_EDITOR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10136&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;136&amp;lt;/code&amp;gt;&lt;br /&gt;
| SmartPlaylistEditor.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;smartplaylistrule&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SMART_PLAYLIST_RULE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10137&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;137&amp;lt;/code&amp;gt;&lt;br /&gt;
| SmartPlaylistRule.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;busydialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_BUSY&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10138&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;138&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogBusy.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pictureinfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PICTURE_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10139&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;139&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPictureInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;addonsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_ADDON_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10140&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;140&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAddonSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;accesspoints&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_ACCESS_POINTS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10141&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;141&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAccessPoints.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;fullscreeninfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FULLSCREEN_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10142&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;142&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogFullScreenInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;karaokeselector&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KARAOKE_SONGSELECT&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10143&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;143&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKaraokeSongSelector.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;karaokelargeselector&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_KARAOKE_SELECTOR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10144&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;144&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogKaraokeSongSelectorLarge.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;sliderdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SLIDER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10145&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;145&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSlider.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;addoninformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_ADDON_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10146&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;146&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAddonInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;textviewer&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_TEXT_VIEWER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10147&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;147&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogTextViewer.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;peripherals&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PERIPHERAL_MANAGER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10149&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;149&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPeripheralManager.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;peripheralsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PERIPHERAL_SETTINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10150&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;150&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPeripheralSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;extendedprogressdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_EXT_PROGRESS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10151&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;151&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogExtendedProgressBar.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;mediafilter&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_MEDIA_FILTER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10152&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;152&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogMediaFilter.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;subtitlesearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SUBTITLES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10153&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;153&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSubtitles.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicplaylist&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_PLAYLIST&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10500&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;500&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicPlaylist.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicfiles&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_FILES&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10501&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;501&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicSongs.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musiclibrary&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_NAV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10502&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;502&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicNav.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicplaylisteditor&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_PLAYLIST_EDITOR&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10503&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;503&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyMusicPlaylistEditor.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;FullscreenLiveTV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_FULLSCREEN_LIVETV&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10614&amp;lt;/code&amp;gt;&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvchannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_CHANNELS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10615&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;615&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRChannels.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvrecordings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_RECORDINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10616&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;616&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRRecordings.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvguide&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_GUIDE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10617&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;617&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRGuide.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvtimers&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_TIMERS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10618&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;618&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRTimers.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;tvsearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_TV_SEARCH&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10619&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;619&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRSearch.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiochannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_CHANNELS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10620&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;620&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRChannels.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiorecordings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_RECORDINGS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10621&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;621&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRRecordings.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radioguide&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_GUIDE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10622&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;622&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRGuide.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiotimers&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_TIMERS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10623&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;623&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRTimers.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;radiosearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_RADIO_SEARCH&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10624&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;624&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyPVRSearch.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrguideinfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_GUIDE_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10602&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;602&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGuideInfo.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrrecordinginfo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_RECORDING_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10603&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;603&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRRecordingInfo.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrtimersetting&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_TIMER_SETTING&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10604&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;604&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRTimerSettings.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrgroupmanager&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_GROUP_MANAGER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10605&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;605&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGroupManager.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrchannelmanager&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_CHANNEL_MANAGER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10606&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;606&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRChannelManager.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrguidesearch&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_GUIDE_SEARCH&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10607&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;607&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGuideSearch.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrosdchannels&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_OSD_CHANNELS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10610&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;610&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRChannelsOSD.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;pvrosdguide&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_PVR_OSD_GUIDE&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;10611&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;611&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogPVRGuideOSD.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;Custom Skin Windows&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;1100–1199 &amp;lt;/code&amp;gt;&lt;br /&gt;
| custom*.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;selectdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_SELECT&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12000&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2000&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogSelect.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicinformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12001&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2001&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogAlbumInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;okdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_OK&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12002&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2002&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogOK.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;movieinformation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_INFO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12003&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2003&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogVideoInfo.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;fullscreenvideo&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_FULLSCREEN_VIDEO&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12005&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2005&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoFullScreen.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;visualisation&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VISUALISATION&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12006&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2006&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicVisualisation.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;slideshow&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SLIDESHOW&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12007&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2007&amp;lt;/code&amp;gt;&lt;br /&gt;
| SlideShow.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;filestackingdialog&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_DIALOG_FILESTACKING&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12008&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2008&amp;lt;/code&amp;gt;&lt;br /&gt;
| DialogFileStacking.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;karaoke&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_KARAOKELYRICS&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12009&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2009&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicKaraokeLyrics.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;weather&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_WEATHER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12600&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2600&amp;lt;/code&amp;gt;&lt;br /&gt;
| MyWeather.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;screensaver&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_SCREENSAVER&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12900&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2900&amp;lt;/code&amp;gt;&lt;br /&gt;
| none&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videoosd&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_OSD&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12901&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2901&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOSD.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videomenu&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MEDIA_MENU&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12902&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2902&amp;lt;/code&amp;gt;&lt;br /&gt;
| none&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;startup&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_STARTUP_ANIM&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12999&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2999&amp;lt;/code&amp;gt;&lt;br /&gt;
| startup.xml&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;skinsettings&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| SkinSettings.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;startwindow&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt;&lt;br /&gt;
| shortcut to the current startwindow&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;5&amp;quot; bgcolor=&amp;quot;#ffffff&amp;quot; | In addition, there are the following &amp;quot;special&amp;quot; windows whose id is not really a concern (and you&#039;ll notice isn&#039;t unique)&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;pointer&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;105 &amp;lt;/code&amp;gt;&lt;br /&gt;
| Pointer.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;musicoverlay&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_MUSIC_OVERLAY&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12903&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2903&amp;lt;/code&amp;gt;&lt;br /&gt;
| MusicOverlay.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;videooverlay&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;WINDOW_VIDEO_OVERLAY&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;12904&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;2904&amp;lt;/code&amp;gt;&lt;br /&gt;
| VideoOverlay.xml&lt;br /&gt;
|- &lt;br /&gt;
| &amp;lt;code&amp;gt;(Python Windows)&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;30&amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;00–309&amp;lt;/span&amp;gt;9 &amp;lt;/code&amp;gt;&lt;br /&gt;
| none &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;addon&amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;- &amp;lt;/code&amp;gt;&lt;br /&gt;
| &amp;lt;code&amp;gt;40&amp;lt;span class=&amp;quot;nobr&amp;quot;&amp;gt;00–409&amp;lt;/span&amp;gt;9 &amp;lt;/code&amp;gt;&lt;br /&gt;
| none &lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;section end=&amp;quot;main content&amp;quot; /&amp;gt;&lt;br /&gt;
== Removed window IDs ==&lt;br /&gt;
* &amp;lt;code&amp;gt;networksettings&amp;lt;/code&amp;gt; - Removed in v12 Frodo&lt;br /&gt;
* &amp;lt;code&amp;gt;musicscan&amp;lt;/code&amp;gt; - Removed in v12 Frodo&lt;br /&gt;
* &amp;lt;code&amp;gt;videoscan&amp;lt;/code&amp;gt; - Removed in v12 Frodo&lt;br /&gt;
* &amp;lt;code&amp;gt;videofiles&amp;lt;/code&amp;gt; - Removed in v13 Gotham&lt;br /&gt;
* &amp;lt;code&amp;gt;pvr&amp;lt;/code&amp;gt; - Replaced in v14 Helix with more specific PVR windows&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Keymaps]]&lt;br /&gt;
* [[Action IDs]]&lt;br /&gt;
* [[Built-in scripting]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{helix updated}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Add-on development]]&lt;br /&gt;
[[Category:Skin development]]&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82482</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82482"/>
		<updated>2014-12-20T08:14:50Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82481</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82481"/>
		<updated>2014-12-20T08:13:29Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82480</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82480"/>
		<updated>2014-12-20T08:11:04Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82479</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82479"/>
		<updated>2014-12-20T08:10:30Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82478</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82478"/>
		<updated>2014-12-20T08:07:29Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:mimic001.jpg&lt;br /&gt;
File:mimic002.jpg&lt;br /&gt;
File:mimic003.jpg&lt;br /&gt;
File:mimic004.jpg&lt;br /&gt;
File:mimic005.jpg&lt;br /&gt;
File:mimic006.jpg&lt;br /&gt;
File:mimic007.jpg&lt;br /&gt;
File:mimic008.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic008.jpg&amp;diff=82477</id>
		<title>File:Mimic008.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic008.jpg&amp;diff=82477"/>
		<updated>2014-12-20T08:06:32Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic007.jpg&amp;diff=82476</id>
		<title>File:Mimic007.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic007.jpg&amp;diff=82476"/>
		<updated>2014-12-20T08:06:31Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic006.jpg&amp;diff=82475</id>
		<title>File:Mimic006.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic006.jpg&amp;diff=82475"/>
		<updated>2014-12-20T08:06:30Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic005.jpg&amp;diff=82474</id>
		<title>File:Mimic005.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic005.jpg&amp;diff=82474"/>
		<updated>2014-12-20T08:06:28Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic004.jpg&amp;diff=82473</id>
		<title>File:Mimic004.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic004.jpg&amp;diff=82473"/>
		<updated>2014-12-20T08:06:28Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic003.jpg&amp;diff=82472</id>
		<title>File:Mimic003.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic003.jpg&amp;diff=82472"/>
		<updated>2014-12-20T08:06:26Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic002.jpg&amp;diff=82471</id>
		<title>File:Mimic002.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic002.jpg&amp;diff=82471"/>
		<updated>2014-12-20T08:06:25Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=File:Mimic001.jpg&amp;diff=82470</id>
		<title>File:Mimic001.jpg</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=File:Mimic001.jpg&amp;diff=82470"/>
		<updated>2014-12-20T08:06:23Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: MsUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MsUpload&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82469</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82469"/>
		<updated>2014-12-20T08:04:27Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: /* Screenshots */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:screenshot009.jpg|Caption1&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82468</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82468"/>
		<updated>2014-12-20T08:03:43Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:screenshot001.jpg|Caption1&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82467</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82467"/>
		<updated>2014-12-20T08:01:52Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Example.jpg|Caption1&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82466</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82466"/>
		<updated>2014-12-20T07:54:48Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;br /&gt;
===== Can I customize the home screen? =====&lt;br /&gt;
Yes, there are skin settings to turn on/off the home screen fanart overlay, top bar, and now playing widgets.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Screenshot001.jpg|Caption1&lt;br /&gt;
File:Example.jpg|Caption2&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82465</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82465"/>
		<updated>2014-12-20T07:46:14Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Questions or comments? Visit the support forum at... http://forum.kodi.tv/showthread.php?tid=210552&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will be installed automatically when installing Mimic from the repository.&lt;br /&gt;
* [http://mirrors.xbmc.org/addons/frodo/script.grab.fanart/ script.grab.fanart]&lt;br /&gt;
* [[Add-on:Skin_Shortcuts|script.skinshortcuts]]&lt;br /&gt;
* [[Add-on:Library_Data_Provider|service.library.data.provider]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* [[Add-on:Artwork_Downloader|Artwork Downloader]]&lt;br /&gt;
* [[Add-on:Artist_Slideshow|Artist Slideshow]]&lt;br /&gt;
* [[Add-on:TV_Show_-_Next_Aired|TV Next Aired]]&lt;br /&gt;
* [[Add-on:Global_Search|Global Search]]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=207110 OpenWeatherMap Extended]&lt;br /&gt;
* [http://forum.kodi.tv/showthread.php?tid=107331 Rating Update]&lt;br /&gt;
* [[Add-on:CU_LRC_Lyrics|CU LRC Lyrics]]&lt;br /&gt;
* [[Add-on:RSS_Editor|RSS Editor]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
	<entry>
		<id>https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82464</id>
		<title>Add-on:Mimic</title>
		<link rel="alternate" type="text/html" href="https://kodi.wiki/index.php?title=Add-on:Mimic&amp;diff=82464"/>
		<updated>2014-12-20T05:37:50Z</updated>

		<summary type="html">&lt;p&gt;Bryanbrazil: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Addon &lt;br /&gt;
|Name=Mimic&lt;br /&gt;
|provider-name=bryanbrazil&lt;br /&gt;
|ID=skin.mimic&lt;br /&gt;
|latest-version=1.0.0&lt;br /&gt;
|extension point=xbmc.gui.skin&lt;br /&gt;
|provides=&lt;br /&gt;
|Summary=Mimic by bryanbrazil&lt;br /&gt;
|Description=Mimic: A Kodi skin with touches of reFocus and Aeon Nox. Many thanks to BigNoid and Jeroen.&lt;br /&gt;
|Platform=all&lt;br /&gt;
|Language=&lt;br /&gt;
|License=&lt;br /&gt;
|Forum=&lt;br /&gt;
|Website=&lt;br /&gt;
|Source=&lt;br /&gt;
|Email=&lt;br /&gt;
|broken=&lt;br /&gt;
|icon url=http://mirrors.xbmc.org/addons/helix/skin.mimic/icon.png}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Helix add-on repository]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&amp;lt;big&amp;gt;mim·ic&amp;lt;/big&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
1. To imitate&amp;lt;br /&amp;gt;&lt;br /&gt;
Synonyms: resemble, look like, have the appearance of&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Users of this skin will quickly see the resemblance to two of my favorite skins, Aeon Nox and reFocus. Even as Mimic borrows from both of these skins, my hope is that it will develop into its own style over time. Many thanks to BigNoid for his work on Aeon Nox, on which this skin is based. I&#039;ve used many of the available skins since discovering XBMC/Kodi, but always returned to one of the Nox variations for its feature set and clear navigation. Also thank you to Jeroen, creator of reFocus, whose clean design and attention to detail were an inspiration for this skin. Mimic also borrows some of the great views from reFocus such as Gallery and BigList.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Required Addons ==&lt;br /&gt;
These addons will automatically install when installing Mimic from the repository.&lt;br /&gt;
* script.grab.fanart&lt;br /&gt;
* script.skinshortcuts&lt;br /&gt;
* service.library.data.provider&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Supported Addons ==&lt;br /&gt;
* Artwork Downloader&lt;br /&gt;
* Artist Slideshow&lt;br /&gt;
* TV Next Aired&lt;br /&gt;
* Global Search&lt;br /&gt;
* OpenWeatherMap Extended&lt;br /&gt;
* Rating Update&lt;br /&gt;
* CU LRC Lyrics&lt;br /&gt;
* RSS Editor&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== Frequently asked questions ==&lt;br /&gt;
&lt;br /&gt;
===== What color themes does come with Mimic? =====&lt;br /&gt;
Mimic includes the following colors: Blue, Brown, Mauve, Purple, Grey/Orange, Green/Yellow, Black/Red, and Black/Blue. Additional color themes can be created with just a color.xml.&lt;/div&gt;</summary>
		<author><name>Bryanbrazil</name></author>
	</entry>
</feed>