Switch paths

This commit is contained in:
croneter 2018-09-16 14:00:52 +02:00
parent 1a4135c6a4
commit 4cf191cbb4
312 changed files with 1840 additions and 1788 deletions

View file

@ -228,8 +228,11 @@ def _sign_in_with_pin():
"""
Returns the user xml answer from plex.tv or None if unsuccessful
"""
from .windows import signin
back = signin.Background.create()
from .windows import signin, background
background.setSplash(False)
back = background.Background.create()
try:
pre = signin.PreSignInWindow.open()
try:

View file

@ -56,7 +56,18 @@ def garbageCollect():
def setGlobalProperty(key, val):
xbmcgui.Window(10000).setProperty('script.plex.{0}'.format(key), val)
xbmcgui.Window(10000).setProperty(
'plugin.video.plexkodiconnect.{0}'.format(key), val)
def setGlobalBoolProperty(key, boolean):
xbmcgui.Window(10000).setProperty(
'plugin.video.plexkodiconnect.{0}'.format(key), boolean and '1' or '')
def getGlobalProperty(key):
return xbmc.getInfoLabel(
'Window(10000).Property(plugin.video.plexkodiconnect.{0})'.format(key))
def reboot_kodi(message=None):

View file

@ -0,0 +1,38 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, unicode_literals
from . import kodigui
from .. import utils, variables as v
utils.setGlobalProperty('background.busy', '')
utils.setGlobalProperty('background.shutdown', '')
utils.setGlobalProperty('background.splash', '')
class BackgroundWindow(kodigui.BaseWindow):
xmlFile = 'script-plex-background.xml'
path = v.ADDON_PATH
theme = 'Main'
res = '1080i'
width = 1920
height = 1080
def __init__(self, *args, **kwargs):
kodigui.BaseWindow.__init__(self, *args, **kwargs)
self.function = kwargs.get('function')
def onFirstInit(self):
self.function()
self.doClose()
def setBusy(on=True):
utils.setGlobalProperty('background.busy', on and '1' or '')
def setSplash(on=True):
utils.setGlobalProperty('background.splash', on and '1' or '')
def setShutdown(on=True):
utils.setGlobalProperty('background.shutdown', on and '1' or '')

View file

@ -104,10 +104,10 @@ class PinLoginWindow(kodigui.BaseWindow):
kodigui.BaseWindow.__init__(self, *args, **kwargs)
def setPin(self, pin):
self.setProperty('pin.image.0', 'script.plex/sign_in/digits/{0}.png'.format(pin[0].upper()))
self.setProperty('pin.image.1', 'script.plex/sign_in/digits/{0}.png'.format(pin[1].upper()))
self.setProperty('pin.image.2', 'script.plex/sign_in/digits/{0}.png'.format(pin[2].upper()))
self.setProperty('pin.image.3', 'script.plex/sign_in/digits/{0}.png'.format(pin[3].upper()))
self.setProperty('pin.image.0', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[0].upper()))
self.setProperty('pin.image.1', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[1].upper()))
self.setProperty('pin.image.2', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[2].upper()))
self.setProperty('pin.image.3', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[3].upper()))
def setLinking(self):
self.setProperty('linking', '1')

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -89,8 +89,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -102,8 +102,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -115,8 +115,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -133,7 +133,7 @@
<posy>0</posy>
<width>1380</width>
<height>945</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="list" id="101">
@ -156,7 +156,7 @@
<posx>120</posx>
<posy>24</posy>
<control type="label">
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>0</posy>
<width>50</width>
@ -168,12 +168,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>21</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="group">
@ -208,7 +208,7 @@
<posy>73</posy>
<width>930</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -237,7 +237,7 @@
<posx>120</posx>
<posy>24</posy>
<control type="label">
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>0</posy>
<width>50</width>
@ -249,12 +249,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>21</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="group">
@ -289,7 +289,7 @@
<posy>73</posy>
<width>930</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -303,18 +303,18 @@
<posy>-40</posy>
<width>1130</width>
<height>156</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>1044</width>
<height>76</height>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="label">
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>48</posx>
<posy>0</posy>
<width>50</width>
@ -326,12 +326,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>48</posx>
<posy>21</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="group">
@ -386,9 +386,9 @@
<height>874</height>
<onleft>101</onleft>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -412,7 +412,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -436,8 +436,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -463,8 +463,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -486,7 +486,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -557,9 +557,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -581,7 +581,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -594,7 +594,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -609,7 +609,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -54,8 +54,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/info.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/info.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -67,8 +67,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -80,8 +80,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -93,8 +93,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -109,7 +109,7 @@
<posy>0</posy>
<width>519</width>
<height>519</height>
<texture background="true" fallback="script.plex/thumb_fallbacks/music.png">$INFO[Window.Property(thumb)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/music.png">$INFO[Window.Property(thumb)]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="label">
@ -159,7 +159,7 @@
<posy>0</posy>
<width>1920</width>
<height>360</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="list" id="101">
@ -239,7 +239,7 @@
<posy>-40</posy>
<width>295</width>
<height>295</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -288,7 +288,7 @@
<posy>-5</posy>
<width>225</width>
<height>225</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -311,7 +311,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -335,8 +335,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -362,8 +362,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -385,7 +385,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -456,9 +456,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -480,7 +480,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -493,7 +493,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -508,7 +508,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -9,29 +9,29 @@
<backgroundcolor>0xff111111</backgroundcolor>
<controls>
<control type="image">
<visible>!String.IsEmpty(Window(10000).Property(script.plex.background.splash))</visible>
<visible>!String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.background.splash))</visible>
<posx>710</posx>
<posy>459</posy>
<width>500</width>
<height>162</height>
<texture>script.plex/splash.png</texture>
<texture>plugin.video.plexkodiconnect/splash.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(Window(10000).Property(script.plex.background.busy))</visible>
<visible>!String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.background.busy))</visible>
<control type="image">
<posx>812</posx>
<posy>135</posy>
<width>300</width>
<height>97</height>
<texture>script.plex/user_select/plex.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/plex.png</texture>
</control>
<control type="image">
<posx>840</posx>
<posy>465</posy>
<width>240</width>
<height>150</height>
<texture>script.plex/busy-back.png</texture>
<texture>plugin.video.plexkodiconnect/busy-back.png</texture>
<colordiffuse>A0FFFFFF</colordiffuse>
</control>
<control type="image">
@ -39,18 +39,18 @@
<posy>521</posy>
<width>90</width>
<height>38</height>
<texture diffuse="script.plex/busy-diffuse.png">script.plex/busy.gif</texture>
<texture diffuse="plugin.video.plexkodiconnect/busy-diffuse.png">plugin.video.plexkodiconnect/busy.gif</texture>
</control>
</control>
<control type="group">
<visible>!String.IsEmpty(Window(10000).Property(script.plex.background.shutdown))</visible>
<visible>!String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.background.shutdown))</visible>
<control type="image">
<posx>840</posx>
<posy>465</posy>
<width>240</width>
<height>150</height>
<texture>script.plex/busy-back.png</texture>
<texture>plugin.video.plexkodiconnect/busy-back.png</texture>
<colordiffuse>A0FFFFFF</colordiffuse>
</control>
<control type="image">
@ -58,7 +58,7 @@
<posy>521</posy>
<width>90</width>
<height>38</height>
<texture diffuse="script.plex/busy-diffuse.png">script.plex/busy.gif</texture>
<texture diffuse="plugin.video.plexkodiconnect/busy-diffuse.png">plugin.video.plexkodiconnect/busy.gif</texture>
</control>
</control>
</controls>

View file

@ -13,7 +13,7 @@
<posy>465</posy>
<width>240</width>
<height>150</height>
<texture>script.plex/busy-back.png</texture>
<texture>plugin.video.plexkodiconnect/busy-back.png</texture>
<colordiffuse>A0FFFFFF</colordiffuse>
</control>
<control type="image">
@ -21,7 +21,7 @@
<posy>521</posy>
<width>90</width>
<height>38</height>
<texture diffuse="script.plex/busy-diffuse.png">script.plex/busy.gif</texture>
<texture diffuse="plugin.video.plexkodiconnect/busy-diffuse.png">plugin.video.plexkodiconnect/busy.gif</texture>
</control>
</control>
</controls>

View file

@ -27,7 +27,7 @@
<posy>-40</posy>
<width>380</width>
<height>146</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="list" id="250">
<posx>0</posx>
@ -50,7 +50,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture colordiffuse="FF323232" border="10">script.plex/white-square-top-rounded.png</texture>
<texture colordiffuse="FF323232" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))</visible>
@ -58,7 +58,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture colordiffuse="FF323232">script.plex/white-square.png</texture>
<texture colordiffuse="FF323232">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(last))</visible>
@ -66,7 +66,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture flipy="true" colordiffuse="FF323232" border="10">script.plex/white-square-top-rounded.png</texture>
<texture flipy="true" colordiffuse="FF323232" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(only))</visible>
@ -74,7 +74,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture colordiffuse="FF323232" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FF323232" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(with.indicator))</visible>
@ -116,7 +116,7 @@
<posy>64</posy>
<width>300</width>
<height>2</height>
<texture colordiffuse="FF000000">script.plex/white-square.png</texture>
<texture colordiffuse="FF000000">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</itemlayout>
<focusedlayout height="66">
@ -126,7 +126,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-top-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))</visible>
@ -134,7 +134,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture colordiffuse="FFE5A00D">script.plex/white-square.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(last))</visible>
@ -142,7 +142,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture flipy="true" colordiffuse="FFE5A00D" border="10">script.plex/white-square-top-rounded.png</texture>
<texture flipy="true" colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(only))</visible>
@ -150,7 +150,7 @@
<posy>0</posy>
<width>300</width>
<height>66</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(with.indicator))</visible>
@ -192,10 +192,10 @@
<posy>64</posy>
<width>300</width>
<height>2</height>
<texture colordiffuse="FF000000">script.plex/white-square.png</texture>
<texture colordiffuse="FF000000">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</focusedlayout>
</control>
</control>
</controls>
</window>
</window>

View file

@ -26,7 +26,7 @@
<posy>-106</posy>
<width>720</width>
<height>146</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(Window.Property(header))</visible>
@ -37,7 +37,7 @@
<posy>0</posy>
<width>640</width>
<height>132</height>
<texture colordiffuse="FF000000" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FF000000" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>20</posx>
@ -72,7 +72,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture colordiffuse="FF323232" border="10">script.plex/white-square-top-rounded.png</texture>
<texture colordiffuse="FF323232" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))</visible>
@ -80,7 +80,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture colordiffuse="FF323232">script.plex/white-square.png</texture>
<texture colordiffuse="FF323232">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(last))</visible>
@ -88,7 +88,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture flipy="true" colordiffuse="FF323232" border="10">script.plex/white-square-top-rounded.png</texture>
<texture flipy="true" colordiffuse="FF323232" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(only))</visible>
@ -96,7 +96,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture colordiffuse="FF323232" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FF323232" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(with.indicator))</visible>
@ -138,7 +138,7 @@
<posy>64</posy>
<width>600</width>
<height>2</height>
<texture colordiffuse="FF000000">script.plex/white-square.png</texture>
<texture colordiffuse="FF000000">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</itemlayout>
<focusedlayout height="66">
@ -148,7 +148,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-top-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))</visible>
@ -156,7 +156,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture colordiffuse="FFE5A00D">script.plex/white-square.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(last))</visible>
@ -164,7 +164,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture flipy="true" colordiffuse="FFE5A00D" border="10">script.plex/white-square-top-rounded.png</texture>
<texture flipy="true" colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(only))</visible>
@ -172,7 +172,7 @@
<posy>0</posy>
<width>600</width>
<height>66</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(with.indicator))</visible>
@ -214,10 +214,10 @@
<posy>64</posy>
<width>600</width>
<height>2</height>
<texture colordiffuse="FF000000">script.plex/white-square.png</texture>
<texture colordiffuse="FF000000">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</focusedlayout>
</control>
</control>
</controls>
</window>
</window>

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -67,8 +67,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/info.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/info.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="301">
@ -80,8 +80,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="305">
@ -93,8 +93,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/settings-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/settings.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/settings-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/settings.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -106,8 +106,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -119,8 +119,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
</control>
@ -136,7 +136,7 @@
<posy>0</posy>
<width>657</width>
<height>393</height>
<texture background="true">script.plex/thumb_fallbacks/show.png</texture>
<texture background="true">plugin.video.plexkodiconnect/thumb_fallbacks/show.png</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="image">
@ -153,7 +153,7 @@
<posy>0</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
</control>
@ -207,9 +207,9 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="FFAC3223" border="12">script.plex/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="FFAC3223" border="12">script.plex/white-square-rounded.png</texturenofocus>
<label>$ADDON[script.plex 32312]</label>
<texturefocus colordiffuse="FFAC3223" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="FFAC3223" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturenofocus>
<label>$ADDON[plugin.video.plexkodiconnect 32312]</label>
</control>
</control>
@ -244,7 +244,7 @@
<posy>6</posy>
<width>134</width>
<height>22</height>
<texture>script.plex/stars/$INFO[Container(400).ListItem.Property(rating.stars)].png</texture>
<texture>plugin.video.plexkodiconnect/stars/$INFO[Container(400).ListItem.Property(rating.stars)].png</texture>
</control>
<control type="button">
<visible>!String.IsEmpty(Container(400).ListItem.Property(video.res))</visible>
@ -257,8 +257,8 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<texturefocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>$INFO[Container(400).ListItem.Property(video.res)]$INFO[Container(400).ListItem.Property(audio.codec), &#8226; ]$INFO[Container(400).ListItem.Property(audio.channels), &#8226; ]</label>
</control>
</control>
@ -277,7 +277,7 @@
<posy>2</posy>
<width>63</width>
<height>30</height>
<texture fallback="script.plex/ratings/other/image.rating.png">$INFO[Container(400).ListItem.Property(rating.image)]</texture>
<texture fallback="plugin.video.plexkodiconnect/ratings/other/image.rating.png">$INFO[Container(400).ListItem.Property(rating.image)]</texture>
<aspectratio align="right">keep</aspectratio>
</control>
<control type="label">
@ -326,9 +326,9 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[script.plex 32395][/UPPERCASE]</label>
<texturefocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32395][/UPPERCASE]</label>
</control>
<control type="label">
<width>auto</width>
@ -350,9 +350,9 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="12">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="12">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[script.plex 32396][/UPPERCASE]</label>
<texturefocus colordiffuse="40000000" border="12">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="12">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32396][/UPPERCASE]</label>
</control>
<control type="label">
<visible>!String.IsEmpty(Container(400).ListItem.Property(subtitles))</visible>
@ -382,7 +382,7 @@
<posy>557</posy>
<width>1</width>
<height>8</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="image">
@ -391,7 +391,7 @@
<posy>565</posy>
<width>1920</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
</control>
@ -414,7 +414,7 @@
<posy>0</posy>
<width>1920</width>
<height>360</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="label">
@ -471,7 +471,7 @@
<posy>0</posy>
<width>299</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -489,7 +489,7 @@
<posy>0</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="label">
<scroll>false</scroll>
@ -533,7 +533,7 @@
<posy>-40</posy>
<width>389</width>
<height>258</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -563,7 +563,7 @@
<posy>0</posy>
<width>299</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -581,7 +581,7 @@
<posy>0</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>Control.HasFocus(400)</visible>
@ -640,7 +640,7 @@
<posy>0</posy>
<width>309</width>
<height>178</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -739,7 +739,7 @@
<posy>-40</posy>
<width>389</width>
<height>258</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -791,7 +791,7 @@
<posy>0</posy>
<width>309</width>
<height>178</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -810,7 +810,7 @@
<posy>0</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -866,7 +866,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -909,7 +909,7 @@
<posy>-40</posy>
<width>324</width>
<height>441</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -938,7 +938,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -968,7 +968,7 @@
<posy>0</posy>
<width>254</width>
<height>371</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -987,7 +987,7 @@
<posy>20</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -999,7 +999,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32419][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32419][/UPPERCASE]</label>
</control>
<control type="list" id="403">
<posx>0</posx>
@ -1024,14 +1024,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="group">
@ -1080,7 +1080,7 @@
<posy>-40</posy>
<width>334</width>
<height>334</height>
<texture border="42">script.plex/buttons/role-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/buttons/role-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -1090,14 +1090,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="group">
@ -1133,7 +1133,7 @@
<posy>0</posy>
<width>254</width>
<height>254</height>
<texture>script.plex/buttons/role-selected.png</texture>
<texture>plugin.video.plexkodiconnect/buttons/role-selected.png</texture>
</control>
</control>
</control>
@ -1157,7 +1157,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -1181,8 +1181,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -1199,8 +1199,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -1222,7 +1222,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -1293,9 +1293,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -1317,7 +1317,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -1330,7 +1330,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -1345,7 +1345,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

File diff suppressed because it is too large Load diff

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -130,9 +130,9 @@
<width>6</width>
<height>718</height>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -167,7 +167,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -238,9 +238,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -262,7 +262,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<width>1920</width>
<height>1080</height>
<fadetime>1000</fadetime>
<texture fallback="script.plex/home/background-fallback.png" background="true">$INFO[Window.Property(background)]</texture>
<texture fallback="plugin.video.plexkodiconnect/home/background-fallback.png" background="true">$INFO[Window.Property(background)]</texture>
</control>
<control type="group" id="50">
@ -34,7 +34,7 @@
<posy>0</posy>
<width>1170</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="wraplist" id="101">
@ -63,7 +63,7 @@
<posy>-3</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -74,7 +74,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -110,7 +110,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -130,7 +130,7 @@
<posy>-2</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -141,7 +141,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -177,7 +177,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -191,14 +191,14 @@
<posy>-40</posy>
<width>1085</width>
<height>156</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>1005</width>
<height>76</height>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
@ -209,7 +209,7 @@
<posy>0</posy>
<width>48</width>
<height>48</height>
<texture>script.plex/indicators/unwatched-rounded.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched-rounded.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -221,7 +221,7 @@
<posy>0</posy>
<width>57</width>
<height>46</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -257,7 +257,7 @@
</control>
<control type="scrollbar" id="152">
<visible>!StringCompare(Window(10000).Property(script.plex.item.type),episode)</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),episode)</visible>
<hitrect x="1108" y="33" w="90" h="879" />
<left>1128</left>
<top>33</top>
@ -266,9 +266,9 @@
<onleft>101</onleft>
<onright>951</onright>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -277,7 +277,7 @@
<onleft>151</onleft>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.item.type),episode)</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),episode)</visible>
<left>1128</left>
<top>33</top>
<width>10</width>
@ -287,7 +287,7 @@
<posy>0</posy>
<width>10</width>
<height>879</height>
<texture colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="group" id="950">
<posx>0</posx>
@ -298,7 +298,7 @@
<posy>0</posy>
<width>10</width>
<height>10</height>
<texture colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image" id="953">
<visible>Control.HasFocus(951) | !String.IsEmpty(Window.Property(dragging))</visible>
@ -306,7 +306,7 @@
<posy>0</posy>
<width>10</width>
<height>10</height>
<texture colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
</control>
<control type="button" id="951">
@ -329,7 +329,7 @@
<width>1920</width>
<height>1080</height>
<fadetime>1000</fadetime>
<texture fallback="script.plex/home/background-fallback.png" background="true" diffuse="script.plex/masks/listview-16x9-backgroundmask.png">$INFO[Window.Property(background)]</texture>
<texture fallback="plugin.video.plexkodiconnect/home/background-fallback.png" background="true" diffuse="plugin.video.plexkodiconnect/masks/listview-16x9-backgroundmask.png">$INFO[Window.Property(background)]</texture>
</control>
<control type="grouplist" id="300">
@ -355,8 +355,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -368,8 +368,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -382,8 +382,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -395,8 +395,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/chapters.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/chapters.png</texturenofocus>
<label> </label>
</control>
</control>
@ -412,7 +412,7 @@
<width>630</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/movie.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/movie.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="image">
@ -422,7 +422,7 @@
<width>630</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/show.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/show.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="label">
@ -452,7 +452,7 @@
<posy>435</posy>
<width>630</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="textbox">
@ -468,7 +468,7 @@
</control>
<control type="group" id="150">
<visible>StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<defaultcontrol>151</defaultcontrol>
<posx>1830</posx>
<posy>150</posy>
@ -492,7 +492,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -504,14 +504,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -538,7 +538,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -550,14 +550,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -584,7 +584,7 @@
<width>34</width>
<height>34</height>
<colordiffuse>FFE5A00D</colordiffuse>
<texture border="12">script.plex/white-outline-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-outline-rounded.png</texture>
</control>
</control>
</control>
@ -619,8 +619,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -646,8 +646,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -670,7 +670,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -741,9 +741,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -786,7 +786,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -819,7 +819,7 @@
<disabledcolor>FFFFFFFF</disabledcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -833,7 +833,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -856,7 +856,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -869,7 +869,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -884,7 +884,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -36,7 +36,7 @@
<width>630</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/movie.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/movie.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="image">
@ -46,7 +46,7 @@
<width>630</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/show.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/show.png">$INFO[Container(101).ListItem.Property(art)]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="label">
@ -76,7 +76,7 @@
<posy>435</posy>
<width>630</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="textbox">
@ -119,8 +119,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -132,8 +132,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -146,8 +146,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -159,8 +159,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/chapters.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/chapters.png</texturenofocus>
<label> </label>
</control>
</control>
@ -177,7 +177,7 @@
<posy>0</posy>
<width>1170</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="list" id="101">
@ -205,7 +205,7 @@
<posy>-3</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -216,7 +216,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -252,7 +252,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -272,7 +272,7 @@
<posy>-2</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -283,7 +283,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -319,7 +319,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -333,14 +333,14 @@
<posy>-40</posy>
<width>1085</width>
<height>156</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>1005</width>
<height>76</height>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
@ -351,7 +351,7 @@
<posy>0</posy>
<width>48</width>
<height>48</height>
<texture>script.plex/indicators/unwatched-rounded.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched-rounded.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -363,7 +363,7 @@
<posy>0</posy>
<width>57</width>
<height>46</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -406,9 +406,9 @@
<height>879</height>
<onleft>101</onleft>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -420,7 +420,7 @@
</control>
<control type="group" id="150">
<visible>StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<defaultcontrol>151</defaultcontrol>
<posx>1830</posx>
<posy>150</posy>
@ -444,7 +444,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -456,14 +456,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -490,7 +490,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -502,14 +502,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -536,7 +536,7 @@
<width>34</width>
<height>34</height>
<colordiffuse>FFE5A00D</colordiffuse>
<texture border="12">script.plex/white-outline-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-outline-rounded.png</texture>
</control>
</control>
</control>
@ -571,8 +571,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -598,8 +598,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -622,7 +622,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -693,9 +693,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -738,7 +738,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -771,7 +771,7 @@
<disabledcolor>FFFFFFFF</disabledcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -785,7 +785,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -808,7 +808,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -821,7 +821,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -836,7 +836,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<width>1920</width>
<height>1080</height>
<fadetime>1000</fadetime>
<texture fallback="script.plex/home/background-fallback.png" background="true">$INFO[Window.Property(background)]</texture>
<texture fallback="plugin.video.plexkodiconnect/home/background-fallback.png" background="true">$INFO[Window.Property(background)]</texture>
</control>
<control type="group" id="50">
@ -34,7 +34,7 @@
<posy>0</posy>
<width>1170</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="wraplist" id="101">
@ -63,7 +63,7 @@
<posy>-3</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -74,7 +74,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -123,7 +123,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -143,7 +143,7 @@
<posy>-2</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -154,7 +154,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -207,7 +207,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -221,14 +221,14 @@
<posy>-40</posy>
<width>1085</width>
<height>156</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>1005</width>
<height>76</height>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
@ -239,7 +239,7 @@
<posy>0</posy>
<width>48</width>
<height>48</height>
<texture>script.plex/indicators/unwatched-rounded.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched-rounded.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -251,7 +251,7 @@
<posy>0</posy>
<width>57</width>
<height>46</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -300,7 +300,7 @@
</control>
<control type="scrollbar" id="152">
<visible>!StringCompare(Window(10000).Property(script.plex.item.type),album)</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),album)</visible>
<hitrect x="1108" y="33" w="90" h="879" />
<left>1128</left>
<top>33</top>
@ -309,9 +309,9 @@
<onleft>101</onleft>
<onright>951</onright>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -320,7 +320,7 @@
<onleft>151</onleft>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.item.type),album)</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),album)</visible>
<left>1128</left>
<top>33</top>
<width>10</width>
@ -330,7 +330,7 @@
<posy>0</posy>
<width>10</width>
<height>879</height>
<texture colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="group" id="950">
<posx>0</posx>
@ -341,7 +341,7 @@
<posy>0</posy>
<width>10</width>
<height>10</height>
<texture colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image" id="953">
<visible>Control.HasFocus(951) | !String.IsEmpty(Window.Property(dragging))</visible>
@ -349,7 +349,7 @@
<posy>0</posy>
<width>10</width>
<height>10</height>
<texture colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
</control>
<control type="button" id="951">
@ -372,7 +372,7 @@
<width>1920</width>
<height>1080</height>
<fadetime>1000</fadetime>
<texture fallback="script.plex/home/background-fallback.png" background="true" diffuse="script.plex/masks/listview-16x9-backgroundmask.png">$INFO[Window.Property(background)]</texture>
<texture fallback="plugin.video.plexkodiconnect/home/background-fallback.png" background="true" diffuse="plugin.video.plexkodiconnect/masks/listview-16x9-backgroundmask.png">$INFO[Window.Property(background)]</texture>
</control>
<control type="grouplist" id="300">
@ -397,8 +397,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -410,8 +410,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -424,8 +424,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -438,8 +438,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/chapters.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/chapters.png</texturenofocus>
<label> </label>
</control>
</control>
@ -455,7 +455,7 @@
<posy>0</posy>
<width>630</width>
<height>355</height>
<texture colordiffuse="A0000000">script.plex/white-square.png</texture>
<texture colordiffuse="A0000000">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -463,7 +463,7 @@
<width>630</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/photo.png">$INFO[Container(101).ListItem.Thumb]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/photo.png">$INFO[Container(101).ListItem.Thumb]</texture>
<aspectratio>keep</aspectratio>
</control>
</control>
@ -474,7 +474,7 @@
<width>355</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/music.png">$INFO[Container(101).ListItem.Thumb]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/music.png">$INFO[Container(101).ListItem.Thumb]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="group">
@ -521,7 +521,7 @@
<posy>435</posy>
<width>630</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="textbox">
@ -537,7 +537,7 @@
</control>
<control type="group" id="150">
<visible>StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<defaultcontrol>151</defaultcontrol>
<posx>1830</posx>
<posy>150</posy>
@ -561,7 +561,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -573,14 +573,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -607,7 +607,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -619,14 +619,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -653,7 +653,7 @@
<width>34</width>
<height>34</height>
<colordiffuse>FFE5A00D</colordiffuse>
<texture border="12">script.plex/white-outline-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-outline-rounded.png</texture>
</control>
</control>
</control>
@ -688,8 +688,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -715,8 +715,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -739,7 +739,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -810,9 +810,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -855,7 +855,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -888,7 +888,7 @@
<disabledcolor>FFFFFFFF</disabledcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -902,7 +902,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -925,7 +925,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -938,7 +938,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -953,7 +953,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -36,7 +36,7 @@
<posy>0</posy>
<width>630</width>
<height>355</height>
<texture colordiffuse="A0000000">script.plex/white-square.png</texture>
<texture colordiffuse="A0000000">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -44,7 +44,7 @@
<width>630</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/photo.png">$INFO[Container(101).ListItem.Thumb]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/photo.png">$INFO[Container(101).ListItem.Thumb]</texture>
<aspectratio>keep</aspectratio>
</control>
</control>
@ -55,7 +55,7 @@
<width>355</width>
<height>355</height>
<fadetime>500</fadetime>
<texture background="true" fallback="script.plex/thumb_fallbacks/music.png">$INFO[Container(101).ListItem.Thumb]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/thumb_fallbacks/music.png">$INFO[Container(101).ListItem.Thumb]</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="group">
@ -102,7 +102,7 @@
<posy>435</posy>
<width>630</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="textbox">
@ -144,8 +144,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -157,8 +157,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -171,8 +171,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -185,8 +185,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/chapters.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/chapters.png</texturenofocus>
<label> </label>
</control>
</control>
@ -203,7 +203,7 @@
<posy>0</posy>
<width>1170</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="list" id="101">
@ -231,7 +231,7 @@
<posy>-3</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -242,7 +242,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -291,7 +291,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -311,7 +311,7 @@
<posy>-2</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -322,7 +322,7 @@
<posy>0</posy>
<width>54</width>
<height>42</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -375,7 +375,7 @@
<posy>72</posy>
<width>915</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -389,14 +389,14 @@
<posy>-40</posy>
<width>1085</width>
<height>156</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>1005</width>
<height>76</height>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
@ -407,7 +407,7 @@
<posy>0</posy>
<width>48</width>
<height>48</height>
<texture>script.plex/indicators/unwatched-rounded.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched-rounded.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -419,7 +419,7 @@
<posy>0</posy>
<width>57</width>
<height>46</height>
<texture colordiffuse="FFCC7B19">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -475,9 +475,9 @@
<height>879</height>
<onleft>101</onleft>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -489,7 +489,7 @@
</control>
<control type="group" id="150">
<visible>StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<defaultcontrol>151</defaultcontrol>
<posx>1830</posx>
<posy>150</posy>
@ -513,7 +513,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -525,14 +525,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -559,7 +559,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -571,14 +571,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -605,7 +605,7 @@
<width>34</width>
<height>34</height>
<colordiffuse>FFE5A00D</colordiffuse>
<texture border="12">script.plex/white-outline-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-outline-rounded.png</texture>
</control>
</control>
</control>
@ -640,8 +640,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -667,8 +667,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -691,7 +691,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -762,9 +762,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -807,7 +807,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -840,7 +840,7 @@
<disabledcolor>FFFFFFFF</disabledcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -854,7 +854,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -877,7 +877,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -890,7 +890,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -905,7 +905,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="group">
<visible>false</visible>
@ -31,7 +31,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>D0404040</colordiffuse>
</control>
</control>
@ -58,7 +58,7 @@
<posy>75</posy>
<width>669</width>
<height>669</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20FFFFFF</colordiffuse>
</control>
<control type="image">
@ -127,7 +127,7 @@
<posy>0</posy>
<width>1101</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="list" id="101">
@ -148,7 +148,7 @@
<posx>120</posx>
<posy>24</posy>
<control type="label">
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>0</posy>
<width>50</width>
@ -160,12 +160,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="image">
@ -219,7 +219,7 @@
<posy>97</posy>
<width>861</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -233,7 +233,7 @@
<posx>120</posx>
<posy>24</posy>
<control type="label">
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>0</posy>
<width>50</width>
@ -245,12 +245,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="image">
@ -304,7 +304,7 @@
<posy>97</posy>
<width>861</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -318,18 +318,18 @@
<posy>-40</posy>
<width>1055</width>
<height>180</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>975</width>
<height>100</height>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="label">
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>48</posx>
<posy>0</posy>
<width>50</width>
@ -341,12 +341,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>48</posx>
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -408,9 +408,9 @@
<height>1014</height>
<onleft>101</onleft>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -463,7 +463,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/repeat.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/repeat.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))</visible>
@ -471,7 +471,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeatOne</visible>
@ -479,7 +479,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-one.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-one.png</texture>
</control>
</control>
<control type="group">
@ -490,7 +490,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/repeat-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))</visible>
@ -498,7 +498,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeatOne</visible>
@ -506,7 +506,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-one-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-one-focus.png</texture>
</control>
</control>
</control>
@ -519,11 +519,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<usealttexture>Playlist.IsRandom</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle.png</alttexturenofocus>
<onclick>PlayerControl(RandomOn)</onclick>
<altclick>PlayerControl(RandomOff)</altclick>
<label> </label>
@ -557,7 +557,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(422)</visible>
@ -565,7 +565,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texture>
</control>
</control>
<control type="group">
@ -576,7 +576,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/shuffle.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(422)</visible>
@ -584,7 +584,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/shuffle-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texture>
</control>
</control>
</control>
@ -597,8 +597,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="togglebutton" id="406">
@ -608,11 +608,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/pause-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pause.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pause-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pause.png</texturenofocus>
<usealttexture>Player.Paused | Player.Forwarding | Player.Rewinding</usealttexture>
<alttexturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</alttexturenofocus>
<!-- <enable>Player.PauseEnabled</enable> -->
<onclick>PlayerControl(Play)</onclick>
<label> </label>
@ -624,8 +624,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/stop.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/stop.png</texturenofocus>
<onclick>PlayerControl(Stop)</onclick>
<label> </label>
</control>
@ -637,8 +637,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
@ -649,8 +649,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pqueue.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pqueue.png</texturenofocus>
<label> </label>
<onclick>Close</onclick>
</control>
@ -661,8 +661,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -679,8 +679,8 @@
<height>10</height>
<onup>100</onup>
<ondown>400</ondown>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image" id="510">
@ -690,7 +690,7 @@
<posy>1</posy>
<width>1</width>
<height>8</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="progress">
@ -700,9 +700,9 @@
<posy>2</posy>
<width>819</width>
<height>6</height>
<texturebg>script.plex/transparent-6px.png</texturebg>
<texturebg>plugin.video.plexkodiconnect/transparent-6px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-6px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-6px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -714,9 +714,9 @@
<posy>2</posy>
<width>819</width>
<height>6</height>
<texturebg>script.plex/transparent-6px.png</texturebg>
<texturebg>plugin.video.plexkodiconnect/transparent-6px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFAC5B00">script.plex/white-square-6px.png</midtexture>
<midtexture colordiffuse="FFAC5B00">plugin.video.plexkodiconnect/white-square-6px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -730,7 +730,7 @@
<height>6</height>
<visible>true</visible>
<texturesliderbar>-</texturesliderbar>
<textureslidernib colordiffuse="FFE5A00D">script.plex/white-square-6px.png</textureslidernib>
<textureslidernib colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/white-square-6px.png</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<action>seek</action>
</control> -->
@ -742,7 +742,7 @@
<posy>942</posy>
<width>1</width>
<height>6</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control> -->
@ -759,7 +759,7 @@
<posy>0</posy>
<width>101</width>
<height>39</height>
<texture>script.plex/indicators/player-selection-time_box.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/player-selection-time_box.png</texture>
<colordiffuse>D0000000</colordiffuse>
</control>
<control type="label">
@ -780,7 +780,7 @@
<posy>39</posy>
<width>15</width>
<height>7</height>
<texture>script.plex/indicators/player-selection-time_arrow.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png</texture>
<colordiffuse>D0000000</colordiffuse>
</control>
</control>

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="group">
<visible>false</visible>
@ -31,7 +31,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>D0404040</colordiffuse>
</control>
</control>
@ -50,7 +50,7 @@
<posy>75</posy>
<width>786</width>
<height>786</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20FFFFFF</colordiffuse>
</control>
<control type="image">
@ -142,7 +142,7 @@
<posy>0</posy>
<width>1920</width>
<height>140</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
@ -154,7 +154,7 @@
<posy>0</posy>
<width>1920</width>
<height>140</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
</control>
@ -238,7 +238,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/repeat.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/repeat.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))</visible>
@ -246,7 +246,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeatOne</visible>
@ -254,7 +254,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-one.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-one.png</texture>
</control>
</control>
<control type="group">
@ -265,7 +265,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/repeat-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))</visible>
@ -273,7 +273,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeatOne</visible>
@ -281,7 +281,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-one-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-one-focus.png</texture>
</control>
</control>
</control>
@ -296,11 +296,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<usealttexture>Playlist.IsRandom</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle.png</alttexturenofocus>
<onclick>PlayerControl(RandomOn)</onclick>
<altclick>PlayerControl(RandomOff)</altclick>
<label> </label>
@ -334,7 +334,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(422)</visible>
@ -342,7 +342,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texture>
</control>
</control>
<control type="group">
@ -353,7 +353,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/shuffle.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(422)</visible>
@ -361,7 +361,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/shuffle-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texture>
</control>
</control>
</control>
@ -376,8 +376,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="togglebutton" id="406">
@ -389,11 +389,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/pause-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pause.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pause-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pause.png</texturenofocus>
<usealttexture>Player.Paused | Player.Forwarding | Player.Rewinding</usealttexture>
<alttexturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</alttexturenofocus>
<!-- <enable>Player.PauseEnabled</enable> -->
<onclick>PlayerControl(Play)</onclick>
<label> </label>
@ -407,8 +407,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/stop.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/stop.png</texturenofocus>
<onclick>PlayerControl(Stop)</onclick>
<label> </label>
</control>
@ -422,8 +422,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
@ -437,8 +437,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pqueue.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pqueue.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="411">
@ -450,8 +450,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -467,8 +467,8 @@
<width>1920</width>
<height>10</height>
<ondown>400</ondown>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image" id="200">
@ -478,7 +478,7 @@
<posy>1</posy>
<width>1</width>
<height>8</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="progress">
@ -488,9 +488,9 @@
<posy>2</posy>
<width>1920</width>
<height>6</height>
<texturebg>script.plex/transparent-6px.png</texturebg>
<texturebg>plugin.video.plexkodiconnect/transparent-6px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-6px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-6px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -502,9 +502,9 @@
<posy>2</posy>
<width>1920</width>
<height>6</height>
<texturebg>script.plex/transparent-6px.png</texturebg>
<texturebg>plugin.video.plexkodiconnect/transparent-6px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFAC5B00">script.plex/white-square-6px.png</midtexture>
<midtexture colordiffuse="FFAC5B00">plugin.video.plexkodiconnect/white-square-6px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -518,7 +518,7 @@
<height>6</height>
<visible>true</visible>
<texturesliderbar>-</texturesliderbar>
<textureslidernib colordiffuse="FFE5A00D">script.plex/white-square-6px.png</textureslidernib>
<textureslidernib colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/white-square-6px.png</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<action>seek</action>
</control> -->
@ -530,7 +530,7 @@
<posy>942</posy>
<width>1</width>
<height>6</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control> -->
@ -547,7 +547,7 @@
<posy>0</posy>
<width>101</width>
<height>39</height>
<texture>script.plex/indicators/player-selection-time_box.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/player-selection-time_box.png</texture>
<colordiffuse>D0000000</colordiffuse>
</control>
<control type="label">
@ -568,7 +568,7 @@
<posy>39</posy>
<width>15</width>
<height>7</height>
<texture>script.plex/indicators/player-selection-time_arrow.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png</texture>
<colordiffuse>D0000000</colordiffuse>
</control>
</control>

View file

@ -11,7 +11,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060" border="10">script.plex/white-square.png</texture>
<texture colordiffuse="99606060" border="10">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(Window.Property(initialized))</visible>
@ -22,21 +22,21 @@
<posy>-40</posy>
<width>830</width>
<height>440</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>750</width>
<height>360</height>
<texture colordiffuse="EE323232" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="EE323232" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>750</width>
<height>80</height>
<texture colordiffuse="99000000" border="10">script.plex/white-square-top-rounded.png</texture>
<texture colordiffuse="99000000" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
</control>
<control type="image">
@ -44,7 +44,7 @@
<posy>31</posy>
<width>19</width>
<height>19</height>
<texture colordiffuse="FFE5A00D">script.plex/indicators/circle-19.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/indicators/circle-19.png</texture>
</control>
<control type="label">
@ -90,8 +90,8 @@
<width min="120">auto</width>
<height>143</height>
<font>font10</font>
<texturefocus colordiffuse="FFE5A00D" border="50">script.plex/buttons/blank-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF" border="50">script.plex/buttons/blank.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D" border="50">plugin.video.plexkodiconnect/buttons/blank-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF" border="50">plugin.video.plexkodiconnect/buttons/blank.png</texturenofocus>
<textoffsetx>70</textoffsetx>
<textcolor>FF000000</textcolor>
<focusedcolor>FF000000</focusedcolor>
@ -106,8 +106,8 @@
<width min="120">auto</width>
<height>143</height>
<font>font10</font>
<texturefocus colordiffuse="FFE5A00D" border="50">script.plex/buttons/blank-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF" border="50">script.plex/buttons/blank.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D" border="50">plugin.video.plexkodiconnect/buttons/blank-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF" border="50">plugin.video.plexkodiconnect/buttons/blank.png</texturenofocus>
<textoffsetx>70</textoffsetx>
<textcolor>FF000000</textcolor>
<focusedcolor>FF000000</focusedcolor>
@ -122,8 +122,8 @@
<width min="120">auto</width>
<height>143</height>
<font>font10</font>
<texturefocus colordiffuse="FFE5A00D" border="50">script.plex/buttons/blank-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF" border="50">script.plex/buttons/blank.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D" border="50">plugin.video.plexkodiconnect/buttons/blank-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF" border="50">plugin.video.plexkodiconnect/buttons/blank.png</texturenofocus>
<textoffsetx>70</textoffsetx>
<textcolor>FF000000</textcolor>
<focusedcolor>FF000000</focusedcolor>
@ -133,4 +133,4 @@
</control>
</controls>
</window>
</window>

View file

@ -7,7 +7,7 @@
</coordinates>
<defaultcontrol>250</defaultcontrol>
<zorder>100</zorder>
<onload>SetProperty(photo,script.plex/home/background-fallback.png)</onload>
<onload>SetProperty(photo,plugin.video.plexkodiconnect/home/background-fallback.png)</onload>
<controls>
<control type="group">
<control type="image">
@ -15,7 +15,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -38,7 +38,7 @@
<width>1920</width>
<height>1080</height>
<fadetime>200</fadetime>
<texture fallback="script.plex/thumb_fallbacks/broken-photo.png" background="true">$INFO[Window.Property(photo)]</texture>
<texture fallback="plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo.png" background="true">$INFO[Window.Property(photo)]</texture>
<aspectratio>keep</aspectratio>
</control>
</control>
@ -72,7 +72,7 @@
<posy>940</posy>
<width>1920</width>
<height>140</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="grouplist" id="400">
@ -103,11 +103,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/repeat-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/repeat.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/repeat.png</texturenofocus>
<usealttexture>!String.IsEmpty(Window.Property(pq.repeat))</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/repeat-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/repeat.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat.png</alttexturenofocus>
<label> </label>
</control>
<control type="button" id="421">
@ -118,8 +118,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="40FFFFFF">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
@ -133,11 +133,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<usealttexture>!String.IsEmpty(Window.Property(pq.shuffled))</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle.png</alttexturenofocus>
<label> </label>
</control>
<control type="button" id="422">
@ -148,8 +148,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="40FFFFFF">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
@ -162,8 +162,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/rotate-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/rotate.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/rotate-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/rotate.png</texturenofocus>
<label> </label>
</control>
@ -178,8 +178,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="424">
@ -190,8 +190,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="40FFFFFF">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="40FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="togglebutton" id="406">
@ -203,11 +203,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<usealttexture>!String.IsEmpty(Window.Property(playing))</usealttexture>
<alttexturefocus colordiffuse="FFE5A00D">script.plex/buttons/pause-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pause.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pause-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pause.png</alttexturenofocus>
<label> </label>
</control>
<control type="button" id="407">
@ -219,8 +219,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/stop.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/stop.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="409">
@ -233,8 +233,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="419">
@ -244,8 +244,8 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texturefocus colordiffuse="40FFFFFF">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
@ -259,11 +259,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/square2x2-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/square2x2.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/square2x2-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/square2x2.png</texturenofocus>
<usealttexture>!String.IsEmpty(Window.Property(show.pqueue))</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/square2x2-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/square2x2-focus.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/square2x2-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/square2x2-focus.png</alttexturenofocus>
<onclick>SetProperty(show.pqueue,1)</onclick>
<altclick>SetProperty(show.pqueue,)</altclick>
<label> </label>
@ -277,11 +277,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/info.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/info.png</texturenofocus>
<usealttexture>!String.IsEmpty(Window.Property(show.info))</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/info-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/info-focus.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/info-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/info-focus.png</alttexturenofocus>
<onclick>SetProperty(show.info,1)</onclick>
<altclick>SetProperty(show.info,)</altclick>
<label> </label>
@ -296,8 +296,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/tags-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/tags.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/tags-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/tags.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="411">
@ -310,8 +310,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -337,7 +337,7 @@
<posy>1080</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="fixedlist" id="500">
@ -364,14 +364,14 @@
<posy>0</posy>
<width>123</width>
<height>123</height>
<texture>script.plex/thumb_fallbacks/photo.png</texture>
<texture>plugin.video.plexkodiconnect/thumb_fallbacks/photo.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>123</width>
<height>123</height>
<texture fallback="script.plex/thumb_fallbacks/broken-photo-thumb.png" background="true">$INFO[ListItem.Thumb]</texture>
<texture fallback="plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo-thumb.png" background="true">$INFO[ListItem.Thumb]</texture>
<aspectratio>scale</aspectratio>
</control>
</control>
@ -391,14 +391,14 @@
<posy>0</posy>
<width>123</width>
<height>123</height>
<texture>script.plex/thumb_fallbacks/photo.png</texture>
<texture>plugin.video.plexkodiconnect/thumb_fallbacks/photo.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>123</width>
<height>123</height>
<texture fallback="script.plex/thumb_fallbacks/broken-photo-thumb.png" background="true">$INFO[ListItem.Thumb]</texture>
<texture fallback="plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo-thumb.png" background="true">$INFO[ListItem.Thumb]</texture>
<aspectratio>scale</aspectratio>
</control>
</control>
@ -410,7 +410,7 @@
<posy>1080</posy>
<width>135</width>
<height>135</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
@ -426,7 +426,7 @@
<posy>0</posy>
<width>450</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>4C000000</colordiffuse>
</control>
<control type="grouplist">
@ -449,8 +449,8 @@
<control type="button" id="650">
<width>450</width>
<height>37</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>00000000</colordiffuse>
<align>left</align>
<align>center</align>
@ -461,8 +461,8 @@
<control type="button" id="659">
<width>450</width>
<height>37</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>00000000</colordiffuse>
<align>left</align>
<align>center</align>
@ -484,8 +484,8 @@
<!-- margin -->
<width>450</width>
<height>21</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<label> </label>
</control>
@ -498,8 +498,8 @@
<posy>0</posy>
<width>450</width>
<height>37</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<align>left</align>
<align>center</align>
@ -512,7 +512,7 @@
<posy>6</posy>
<width>29</width>
<height>24</height>
<texture>script.plex/indicators/camera.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/camera.png</texture>
<colordiffuse>A0FFFFFF</colordiffuse>
</control>
</control>
@ -520,8 +520,8 @@
<visible>!String.IsEmpty(Window.Property(camera.lens))</visible>
<width>450</width>
<height>37</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<align>left</align>
<align>center</align>
@ -540,8 +540,8 @@
<posy>0</posy>
<width>450</width>
<height>37</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<align>left</align>
<align>center</align>
@ -567,8 +567,8 @@
<textcolor>FF000000</textcolor>
<textoffsetx>5</textoffsetx>
<textoffsety>-3</textoffsety>
<texturefocus colordiffuse="A0FFFFFF" border="12">script.plex/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="A0FFFFFF" border="12">script.plex/white-square-rounded.png</texturenofocus>
<texturefocus colordiffuse="A0FFFFFF" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="A0FFFFFF" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturenofocus>
<label>[UPPERCASE]$INFO[Window.Property(photo.container)][/UPPERCASE]</label>
</control>
</control>
@ -577,8 +577,8 @@
<!-- margin -->
<width>450</width>
<height>21</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<label> </label>
</control>
@ -592,7 +592,7 @@
<posy>0</posy>
<width>450</width>
<height>1</height>
<texture border="30,0,30,0">script.plex/indicators/info-sep.png</texture>
<texture border="30,0,30,0">plugin.video.plexkodiconnect/indicators/info-sep.png</texture>
<colordiffuse>99000000</colordiffuse>
</control>
<control type="image">
@ -600,7 +600,7 @@
<posy>0</posy>
<width>394</width>
<height>1</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>999B9B9B</colordiffuse>
</control>
<control type="button">
@ -609,8 +609,8 @@
<posy>1</posy>
<width>450</width>
<height>21</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<label> </label>
</control>
@ -619,8 +619,8 @@
<posy>22</posy>
<width>450</width>
<height>37</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<align>left</align>
<align>center</align>
@ -634,8 +634,8 @@
<posy>59</posy>
<width>450</width>
<height>21</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>99000000</colordiffuse>
<label> </label>
</control>
@ -650,7 +650,7 @@
<posy>0</posy>
<width>450</width>
<height>152</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>661F1F1F</colordiffuse>
</control>
<control type="textbox">
@ -668,16 +668,16 @@
<!-- <control type="button">
<width>450</width>
<height>147</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>66000000</colordiffuse>
<font>font12</font>
</control>
<control type="button">
<width>450</width>
<height>150</height>
<texturefocus>script.plex/white-square.png</texturefocus>
<texturenofocus>script.plex/white-square.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<colordiffuse>661F1F1F</colordiffuse>
<font>font12</font>
</control> -->

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/pin-display.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/pin-display.jpg</texture>
</control>
<control type="image">
<visible>String.IsEmpty(Window.Property(pin.image.0)) + String.IsEmpty(Window.Property(linking))</visible>
@ -22,7 +22,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/generating-code.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/generating-code.jpg</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(Window.Property(linking))</visible>
@ -30,7 +30,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/linking-account.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/linking-account.jpg</texture>
</control>
<control type="label">

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -89,8 +89,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -102,8 +102,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -116,8 +116,8 @@
<width>174</width>
<height>139</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -134,7 +134,7 @@
<posy>0</posy>
<width>1170</width>
<height>1080</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>20000000</colordiffuse>
</control>
<control type="list" id="101">
@ -155,7 +155,7 @@
<posx>120</posx>
<posy>24</posy>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>0</posy>
<width>50</width>
@ -167,12 +167,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="group">
@ -228,7 +228,7 @@
<posy>-1</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<posx>226</posx>
@ -274,7 +274,7 @@
<posy>97</posy>
<width>930</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -288,7 +288,7 @@
<posx>120</posx>
<posy>24</posy>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>0</posy>
<width>50</width>
@ -300,12 +300,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>0</posx>
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="group">
@ -361,7 +361,7 @@
<posy>-1</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<posx>226</posx>
@ -407,7 +407,7 @@
<posy>97</posy>
<width>930</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -421,14 +421,14 @@
<posy>-40</posy>
<width>1124</width>
<height>180</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>999</width>
<height>100</height>
<texture border="12">script.plex/white-square-left-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-left-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="image">
@ -436,11 +436,11 @@
<posy>0</posy>
<width>45</width>
<height>100</height>
<texture>script.plex/buttons/more-vertical.png</texture>
<texture>plugin.video.plexkodiconnect/buttons/more-vertical.png</texture>
<colordiffuse>99FFFFFF</colordiffuse>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>48</posx>
<posy>0</posy>
<width>50</width>
@ -452,12 +452,12 @@
<label>[B]$INFO[ListItem.Property(track.number)][/B]</label>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))</visible>
<visible>!String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))</visible>
<posx>48</posx>
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="group">
@ -514,7 +514,7 @@
<posy>0</posy>
<width>48</width>
<height>48</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<posx>313</posx>
@ -568,9 +568,9 @@
<height>879</height>
<onleft>101</onleft>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -594,7 +594,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -618,8 +618,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -630,7 +630,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32333][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32333][/UPPERCASE]</label>
</control>
<control type="group">
<width>40</width>
@ -645,8 +645,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -668,7 +668,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -739,9 +739,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -763,7 +763,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -776,7 +776,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -791,7 +791,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -47,7 +47,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32048][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32048][/UPPERCASE]</label>
</control>
<control type="list" id="101">
<posx>0</posx>
@ -123,7 +123,7 @@
<posy>-19</posy>
<width>318</width>
<height>318</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>21</posx>
@ -171,7 +171,7 @@
<posy>16</posy>
<width>248</width>
<height>248</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -193,7 +193,7 @@
<posy>0</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>661F1F1F</colordiffuse>
</control>
<control type="label">
@ -205,7 +205,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32053][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32053][/UPPERCASE]</label>
</control>
<control type="list" id="301">
<posx>-21.5</posx>
@ -280,7 +280,7 @@
<posy>-15.5</posy>
<width>617</width>
<height>383</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>41.5</posx>
@ -328,7 +328,7 @@
<posy>20.5</posy>
<width>547</width>
<height>313</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -351,7 +351,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -375,8 +375,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -387,7 +387,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32333][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32333][/UPPERCASE]</label>
</control>
<control type="group">
<width>40</width>
@ -402,8 +402,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -425,7 +425,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -496,9 +496,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -520,7 +520,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -533,7 +533,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -548,7 +548,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/plexpass.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/plexpass.jpg</texture>
</control>
<control type="button" id="100">

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -55,8 +55,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -68,8 +68,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -82,8 +82,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -95,8 +95,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/chapters.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/chapters.png</texturenofocus>
<label> </label>
</control>
</control>
@ -152,7 +152,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -171,7 +171,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -180,7 +180,7 @@
<posy>0</posy>
<width>51</width>
<height>39</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -188,7 +188,7 @@
<posy>0</posy>
<width>50</width>
<height>38</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="label">
@ -235,7 +235,7 @@
<posy>-40</posy>
<width>334</width>
<height>451</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -264,7 +264,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -283,7 +283,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(ListItem.Property(unwatched.count))</visible>
@ -292,7 +292,7 @@
<posy>0</posy>
<width>51</width>
<height>39</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -300,7 +300,7 @@
<posy>0</posy>
<width>50</width>
<height>38</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="label">
@ -334,7 +334,7 @@
<posy>0</posy>
<width>254</width>
<height>371</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -345,7 +345,7 @@
</control>
<control type="group" id="150">
<visible>StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<defaultcontrol>151</defaultcontrol>
<posx>1780</posx>
<posy>150</posy>
@ -369,7 +369,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -381,14 +381,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -415,7 +415,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -427,14 +427,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -461,7 +461,7 @@
<width>34</width>
<height>34</height>
<colordiffuse>FFE5A00D</colordiffuse>
<texture border="12">script.plex/white-outline-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-outline-rounded.png</texture>
</control>
</control>
</control>
@ -476,9 +476,9 @@
<width>12</width>
<height>910</height>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -502,7 +502,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -526,8 +526,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -553,8 +553,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -577,7 +577,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -648,9 +648,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -692,7 +692,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -725,7 +725,7 @@
<disabledcolor>FFFFFFFF</disabledcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -739,7 +739,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -762,7 +762,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -779,7 +779,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFFFFFFF</textcolor>
<label>[B]$ADDON[script.plex 32452][/B]</label>
<label>[B]$ADDON[plugin.video.plexkodiconnect 32452][/B]</label>
</control>
<control type="label">
<scroll>false</scroll>
@ -790,7 +790,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFCCCCCC</textcolor>
<label>$ADDON[script.plex 32453]</label>
<label>$ADDON[plugin.video.plexkodiconnect 32453]</label>
</control>
</control>
@ -807,7 +807,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFFFFFFF</textcolor>
<label>[B]$ADDON[script.plex 32454][/B]</label>
<label>[B]$ADDON[plugin.video.plexkodiconnect 32454][/B]</label>
</control>
<control type="label">
<scroll>false</scroll>
@ -818,7 +818,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFCCCCCC</textcolor>
<label>$ADDON[script.plex 32455]</label>
<label>$ADDON[plugin.video.plexkodiconnect 32455]</label>
</control>
</control>
@ -831,7 +831,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -846,7 +846,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -62,12 +62,12 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/info.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/info.png</texturenofocus>
<label> </label>
</control>
<!-- <control type="button" id="301">
<visible>String.IsEmpty(Window(10000).Property(script.plex.hide.resume))</visible>
<visible>String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.hide.resume))</visible>
<animation effect="zoom" start="100" end="143" time="100" center="63,50" reversible="false">Focus</animation>
<animation effect="zoom" start="143" end="100" time="100" center="63,50" reversible="false">UnFocus</animation>
<posx>0</posx>
@ -75,8 +75,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/resume-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/resume.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/resume-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/resume.png</texturenofocus>
<label> </label>
</control> -->
<control type="button" id="302">
@ -88,8 +88,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -102,8 +102,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/trailer-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/trailer.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/trailer-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/trailer.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="305">
@ -115,8 +115,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/settings-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/settings.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/settings-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/settings.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="306">
@ -128,8 +128,8 @@
<width>176</width>
<height>140</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -146,7 +146,7 @@
<posy>0</posy>
<width>347</width>
<height>518</height>
<texture background="true">script.plex/thumb_fallbacks/movie.png</texture>
<texture background="true">plugin.video.plexkodiconnect/thumb_fallbacks/movie.png</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="image">
@ -168,7 +168,7 @@
<posy>0</posy>
<width>347</width>
<height>315</height>
<texture background="true">script.plex/thumb_fallbacks/show.png</texture>
<texture background="true">plugin.video.plexkodiconnect/thumb_fallbacks/show.png</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="image">
@ -176,7 +176,7 @@
<posy>323</posy>
<width>347</width>
<height>195</height>
<texture colordiffuse="FF111111">script.plex/white-square.png</texture>
<texture colordiffuse="FF111111">plugin.video.plexkodiconnect/white-square.png</texture>
<aspectratio>scale</aspectratio>
</control>
@ -238,7 +238,7 @@
<posy>6</posy>
<width>134</width>
<height>22</height>
<texture>script.plex/stars/$INFO[Window.Property(rating.stars)].png</texture>
<texture>plugin.video.plexkodiconnect/stars/$INFO[Window.Property(rating.stars)].png</texture>
</control>
<control type="button">
<visible>!String.IsEmpty(Window.Property(video.res))</visible>
@ -251,8 +251,8 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<texturefocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>$INFO[Window.Property(video.res)]$INFO[Window.Property(audio.codec), &#8226; ]$INFO[Window.Property(audio.channels), &#8226; ]</label>
</control>
<control type="button">
@ -266,9 +266,9 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="FFAC3223" border="8">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="FFAC3223" border="8">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<label>$ADDON[script.plex 32312]</label>
<texturefocus colordiffuse="FFAC3223" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="FFAC3223" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>$ADDON[plugin.video.plexkodiconnect 32312]</label>
</control>
</control>
@ -286,7 +286,7 @@
<posy>2</posy>
<width>63</width>
<height>30</height>
<texture fallback="script.plex/ratings/other/image.rating.png">$INFO[Window.Property(rating.image)]</texture>
<texture fallback="plugin.video.plexkodiconnect/ratings/other/image.rating.png">$INFO[Window.Property(rating.image)]</texture>
<aspectratio align="right">keep</aspectratio>
</control>
<control type="label">
@ -356,9 +356,9 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[script.plex 32048][/UPPERCASE]</label>
<texturefocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32048][/UPPERCASE]</label>
</control>
<control type="label">
<width>auto</width>
@ -380,9 +380,9 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">script.plex/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[script.plex 32396][/UPPERCASE]</label>
<texturefocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="8">plugin.video.plexkodiconnect/white-square-rounded-top-padded.png</texturenofocus>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32396][/UPPERCASE]</label>
</control>
<control type="label">
<visible>!String.IsEmpty(Window.Property(subtitles))</visible>
@ -411,7 +411,7 @@
<posy>557</posy>
<width>1</width>
<height>8</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="image">
@ -420,7 +420,7 @@
<posy>565</posy>
<width>1920</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
</control>
@ -443,7 +443,7 @@
<posy>0</posy>
<width>1920</width>
<height>360</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="label">
@ -455,7 +455,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32305][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32305][/UPPERCASE]</label>
</control>
<control type="list" id="400">
<posx>0</posx>
@ -521,7 +521,7 @@
<posy>-40</posy>
<width>389</width>
<height>258</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -559,7 +559,7 @@
<posy>0</posy>
<width>309</width>
<height>178</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -578,7 +578,7 @@
<posy>0</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -634,7 +634,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -677,7 +677,7 @@
<posy>-40</posy>
<width>324</width>
<height>441</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -706,7 +706,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -736,7 +736,7 @@
<posy>0</posy>
<width>254</width>
<height>371</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -755,7 +755,7 @@
<posy>20</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -767,7 +767,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32419][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32419][/UPPERCASE]</label>
</control>
<control type="list" id="403">
<posx>0</posx>
@ -792,14 +792,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="group">
@ -848,7 +848,7 @@
<posy>-40</posy>
<width>334</width>
<height>334</height>
<texture border="42">script.plex/buttons/role-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/buttons/role-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -858,14 +858,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="group">
@ -901,7 +901,7 @@
<posy>0</posy>
<width>254</width>
<height>254</height>
<texture>script.plex/buttons/role-selected.png</texture>
<texture>plugin.video.plexkodiconnect/buttons/role-selected.png</texture>
</control>
</control>
</control>
@ -925,7 +925,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -949,8 +949,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -967,8 +967,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -990,7 +990,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -1061,9 +1061,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -1085,7 +1085,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -1098,7 +1098,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -1113,7 +1113,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/pre-signin.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/pre-signin.jpg</texture>
</control>
<control type="button" id="100">

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/refresh-code.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/refresh-code.jpg</texture>
</control>
<control type="button" id="100">

File diff suppressed because it is too large Load diff

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -65,8 +65,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/info.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/info-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/info.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -77,8 +77,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -89,8 +89,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -101,8 +101,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
</control>
@ -117,7 +117,7 @@
<posy>0</posy>
<width>347</width>
<height>518</height>
<texture background="true">script.plex/thumb_fallbacks/movie.png</texture>
<texture background="true">plugin.video.plexkodiconnect/thumb_fallbacks/movie.png</texture>
<aspectratio>scale</aspectratio>
</control>
<control type="image">
@ -170,7 +170,7 @@
<posy>4</posy>
<width>134</width>
<height>22</height>
<texture>script.plex/stars/$INFO[Window.Property(rating.stars)].png</texture>
<texture>plugin.video.plexkodiconnect/stars/$INFO[Window.Property(rating.stars)].png</texture>
</control>
</control>
@ -188,7 +188,7 @@
<posy>2</posy>
<width>63</width>
<height>30</height>
<texture fallback="script.plex/ratings/other/image.rating.png">$INFO[Window.Property(rating.image)]</texture>
<texture fallback="plugin.video.plexkodiconnect/ratings/other/image.rating.png">$INFO[Window.Property(rating.image)]</texture>
<aspectratio align="right">keep</aspectratio>
</control>
<control type="label">
@ -259,8 +259,8 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="12">script.plex/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="12">script.plex/white-square-rounded.png</texturenofocus>
<texturefocus colordiffuse="40000000" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturenofocus>
<label>AUDIO</label>
</control>
<control type="label">
@ -283,8 +283,8 @@
<focusedcolor>FFFFFFFF</focusedcolor>
<textcolor>FFFFFFFF</textcolor>
<textoffsetx>15</textoffsetx>
<texturefocus colordiffuse="40000000" border="12">script.plex/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="12">script.plex/white-square-rounded.png</texturenofocus>
<texturefocus colordiffuse="40000000" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus colordiffuse="40000000" border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texturenofocus>
<label>SUBTITLES</label>
</control>
<control type="label">
@ -324,7 +324,7 @@
<posy>557</posy>
<width>1</width>
<height>8</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="image">
@ -333,7 +333,7 @@
<posy>565</posy>
<width>1920</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
</control>
@ -356,7 +356,7 @@
<posy>0</posy>
<width>1920</width>
<height>360</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="list" id="400">
@ -399,7 +399,7 @@
<posy>0</posy>
<width>45</width>
<height>40</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -407,7 +407,7 @@
<posy>0</posy>
<width>44</width>
<height>39</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="label">
@ -453,7 +453,7 @@
<posy>-40</posy>
<width>248</width>
<height>326</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -480,7 +480,7 @@
<posy>0</posy>
<width>45</width>
<height>40</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -488,7 +488,7 @@
<posy>0</posy>
<width>44</width>
<height>39</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="label">
@ -521,7 +521,7 @@
<posy>0</posy>
<width>168</width>
<height>246</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -620,7 +620,7 @@
<posy>-40</posy>
<width>389</width>
<height>258</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -672,7 +672,7 @@
<posy>0</posy>
<width>309</width>
<height>178</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -691,7 +691,7 @@
<posy>0</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -747,7 +747,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -790,7 +790,7 @@
<posy>-40</posy>
<width>324</width>
<height>441</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -819,7 +819,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -849,7 +849,7 @@
<posy>0</posy>
<width>254</width>
<height>371</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -868,7 +868,7 @@
<posy>20</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -880,7 +880,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32419][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32419][/UPPERCASE]</label>
</control>
<control type="list" id="403">
<posx>0</posx>
@ -905,14 +905,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="textbox">
@ -945,7 +945,7 @@
<posy>-40</posy>
<width>334</width>
<height>334</height>
<texture border="42">script.plex/buttons/role-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/buttons/role-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -955,14 +955,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="textbox">
@ -982,7 +982,7 @@
<posy>0</posy>
<width>254</width>
<height>254</height>
<texture>script.plex/buttons/role-selected.png</texture>
<texture>plugin.video.plexkodiconnect/buttons/role-selected.png</texture>
</control>
</control>
</control>
@ -1006,7 +1006,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -1030,8 +1030,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -1048,8 +1048,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -1071,7 +1071,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -1142,9 +1142,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -1166,7 +1166,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -1179,7 +1179,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -1194,7 +1194,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -32,7 +32,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/player-fade.png</texture>
<texture>plugin.video.plexkodiconnect/player-fade.png</texture>
<colordiffuse>FF080808</colordiffuse>
</control>
</control>
@ -45,7 +45,7 @@
<posy>0</posy>
<width>1920</width>
<height>140</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image">
@ -53,7 +53,7 @@
<posy>940</posy>
<width>1920</width>
<height>140</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
</control>
@ -145,7 +145,7 @@
<align>center</align>
<aligny>center</aligny>
<textcolor>FFCC7B19</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32436][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32436][/UPPERCASE]</label>
</control>
</control>
@ -157,7 +157,7 @@
<posy>0</posy>
<width>1920</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image" id="200">
@ -166,7 +166,7 @@
<posy>1</posy>
<width>1</width>
<height>8</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="image" id="201">
@ -174,7 +174,7 @@
<posy>2</posy>
<width>1</width>
<height>6</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FFAC5B00</colordiffuse>
</control>
</control>
@ -192,7 +192,7 @@
<posy>0</posy>
<width>324</width>
<height>184</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -246,7 +246,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/repeat.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/repeat.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))</visible>
@ -254,7 +254,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeatOne | !String.IsEmpty(Window.Property(pq.repeat.one))</visible>
@ -262,7 +262,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-one.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-one.png</texture>
</control>
</control>
<control type="group">
@ -273,7 +273,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/repeat-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))</visible>
@ -281,7 +281,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-focus.png</texture>
</control>
<control type="image">
<visible>Playlist.IsRepeatOne | !String.IsEmpty(Window.Property(pq.repeat.one))</visible>
@ -289,7 +289,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFCC7B19">script.plex/buttons/repeat-one-focus.png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/repeat-one-focus.png</texture>
</control>
</control>
</control>
@ -304,11 +304,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<usealttexture>!String.IsEmpty(Window.Property(pq.shuffled))</usealttexture>
<alttexturefocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">script.plex/buttons/shuffle.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/buttons/shuffle.png</alttexturenofocus>
<label> </label>
</control>
<control type="button" id="422">
@ -319,8 +319,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="40FFFFFF">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
@ -333,8 +333,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/settings-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/settings.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/settings-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/settings.png</texturenofocus>
<label> </label>
</control>
@ -349,8 +349,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="424">
@ -361,8 +361,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="40FFFFFF">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="40FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="405">
@ -374,8 +374,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="FFE5A00D">script.plex/buttons/skip-forward-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">script.plex/buttons/skip-forward.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/skip-forward-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/skip-forward.png</texturenofocus>
<label> </label>
</control>
@ -407,7 +407,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/pause.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pause.png</texture>
</control>
<control type="image">
<visible>Player.Paused | Player.Forwarding | Player.Rewinding</visible>
@ -415,7 +415,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="99FFFFFF">script.plex/buttons/play.png</texture>
<texture colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texture>
</control>
</control>
<control type="group">
@ -426,7 +426,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/pause-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pause-focus.png</texture>
</control>
<control type="image">
<visible>Player.Paused | Player.Forwarding | Player.Rewinding</visible>
@ -434,7 +434,7 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texture colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texture>
</control>
</control>
</control>
@ -448,8 +448,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/stop.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/stop.png</texturenofocus>
<onclick>PlayerControl(Stop)</onclick>
<label> </label>
</control>
@ -462,8 +462,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/skip-forward-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/skip-forward.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/skip-forward-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/skip-forward.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="409">
@ -476,8 +476,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="419">
@ -487,8 +487,8 @@
<posy>0</posy>
<width>125</width>
<height>101</height>
<texturefocus colordiffuse="40FFFFFF">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<label> </label>
</control>
@ -503,8 +503,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pqueue.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pqueue.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="430">
@ -518,8 +518,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="40FFFFFF">script.plex/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">script.plex/buttons/pqueue.png</texturenofocus>
<texturefocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/pqueue-focus.png</texturefocus>
<texturenofocus colordiffuse="40FFFFFF">plugin.video.plexkodiconnect/buttons/pqueue.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="412">
@ -532,8 +532,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/subtitle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/subtitle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/subtitle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/subtitle.png</texturenofocus>
<label> </label>
</control>
</control>
@ -564,7 +564,7 @@
<posy>5</posy>
<width>2320</width>
<height>6</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="list" id="501">
@ -585,7 +585,7 @@
<posy>0</posy>
<width>16</width>
<height>16</height>
<texture>script.plex/indicators/seek-selection-marker.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/seek-selection-marker.png</texture>
<colordiffuse>FF606060</colordiffuse>
</control>
</itemlayout>
@ -598,7 +598,7 @@
<posy>0</posy>
<width>16</width>
<height>16</height>
<texture>script.plex/indicators/seek-selection-marker.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/seek-selection-marker.png</texture>
<colordiffuse>FF606060</colordiffuse>
</control>
<control type="image">
@ -607,7 +607,7 @@
<posy>0</posy>
<width>16</width>
<height>16</height>
<texture>script.plex/indicators/seek-selection-marker.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/seek-selection-marker.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
</focusedlayout>
@ -627,7 +627,7 @@
<posy>0</posy>
<width>101</width>
<height>39</height>
<texture>script.plex/indicators/player-selection-time_box.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/player-selection-time_box.png</texture>
<colordiffuse>D0000000</colordiffuse>
</control>
<control type="label">
@ -648,7 +648,7 @@
<posy>39</posy>
<width>15</width>
<height>7</height>
<texture>script.plex/indicators/player-selection-time_arrow.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png</texture>
<colordiffuse>D0000000</colordiffuse>
</control>
</control>

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -36,7 +36,7 @@
<posy>135</posy>
<width>1077</width>
<height>945</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>32111111</colordiffuse>
</control>
<control type="image">
@ -44,7 +44,7 @@
<posy>810</posy>
<width>1920</width>
<height>270</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>32000000</colordiffuse>
</control>
</control>
@ -53,7 +53,7 @@
<posy>810</posy>
<width>780</width>
<height>270</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>32111111</colordiffuse>
</control>
<control type="image">
@ -62,7 +62,7 @@
<posy>135</posy>
<width>879</width>
<height>945</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>66111111</colordiffuse>
</control>
</control>
@ -114,7 +114,7 @@
<posy>75</posy>
<width>414</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>661F1F1F</colordiffuse>
</control>
</control>
@ -127,7 +127,7 @@
<posy>0</posy>
<width>590</width>
<height>155</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(75)</visible>
@ -135,7 +135,7 @@
<posy>40</posy>
<width>510</width>
<height>75</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image">
<visible>!Control.HasFocus(75)</visible>
@ -143,7 +143,7 @@
<posy>40</posy>
<width>510</width>
<height>75</height>
<texture colordiffuse="FFCC7B19" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image">
<visible>!Control.HasFocus(75)</visible>
@ -151,7 +151,7 @@
<posy>66</posy>
<width>16</width>
<height>23</height>
<texture>script.plex/settings/expanded.png</texture>
<texture>plugin.video.plexkodiconnect/settings/expanded.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="label">
@ -227,7 +227,7 @@
<posy>75</posy>
<width>600</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>661F1F1F</colordiffuse>
</control>
</control>
@ -240,7 +240,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture colordiffuse="EE000000" border="10">script.plex/settings/checkbox.png</texture>
<texture colordiffuse="EE000000" border="10">plugin.video.plexkodiconnect/settings/checkbox.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(checkbox.checked))</visible>
@ -248,7 +248,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture>script.plex/settings/checkmark.png</texture>
<texture>plugin.video.plexkodiconnect/settings/checkmark.png</texture>
</control>
</control>
</itemlayout>
@ -260,7 +260,7 @@
<posy>0</posy>
<width>776</width>
<height>155</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<visible>!Control.HasFocus(125)</visible>
@ -268,7 +268,7 @@
<posy>40</posy>
<width>696</width>
<height>75</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(125)</visible>
@ -276,7 +276,7 @@
<posy>40</posy>
<width>696</width>
<height>75</height>
<texture colordiffuse="FFCC7B19" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(125)</visible>
@ -284,7 +284,7 @@
<posy>66</posy>
<width>16</width>
<height>23</height>
<texture>script.plex/settings/expanded.png</texture>
<texture>plugin.video.plexkodiconnect/settings/expanded.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="group">
@ -345,7 +345,7 @@
<posy>75</posy>
<width>600</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>661F1F1F</colordiffuse>
</control>
</control>
@ -358,7 +358,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture colordiffuse="EE000000" border="10">script.plex/settings/checkbox.png</texture>
<texture colordiffuse="EE000000" border="10">plugin.video.plexkodiconnect/settings/checkbox.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(checkbox.checked))</visible>
@ -366,7 +366,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture>script.plex/settings/checkmark.png</texture>
<texture>plugin.video.plexkodiconnect/settings/checkmark.png</texture>
</control>
</control>
</focusedlayout>
@ -379,9 +379,9 @@
<width>9</width>
<height>525</height>
<visible>true</visible>
<texturesliderbackground colordiffuse="66000000" border="4">script.plex/white-square-rounded-4r.png</texturesliderbackground>
<texturesliderbar colordiffuse="66FFFFFF" border="4">script.plex/white-square-rounded-4r.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="4">script.plex/white-square-rounded-4r.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="66000000" border="4">plugin.video.plexkodiconnect/white-square-rounded-4r.png</texturesliderbackground>
<texturesliderbar colordiffuse="66FFFFFF" border="4">plugin.video.plexkodiconnect/white-square-rounded-4r.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="4">plugin.video.plexkodiconnect/white-square-rounded-4r.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -439,7 +439,7 @@
<posy>75</posy>
<width>594</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>661F1F1F</colordiffuse>
</control>
</control>
@ -452,7 +452,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture>script.plex/settings/checkmark.png</texture>
<texture>plugin.video.plexkodiconnect/settings/checkmark.png</texture>
</control>
</control>
</itemlayout>
@ -462,14 +462,14 @@
<posy>0</posy>
<width>610</width>
<height>155</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<posx>40</posx>
<posy>40</posy>
<width>690</width>
<height>75</height>
<texture colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="group">
<posx>88</posx>
@ -495,7 +495,7 @@
<posy>0</posy>
<width>45</width>
<height>45</height>
<texture>script.plex/settings/checkmark.png</texture>
<texture>plugin.video.plexkodiconnect/settings/checkmark.png</texture>
</control>
</control>
</focusedlayout>
@ -508,9 +508,9 @@
<width>9</width>
<height>525</height>
<visible>true</visible>
<texturesliderbackground colordiffuse="66000000" border="4">script.plex/white-square-rounded-4r.png</texturesliderbackground>
<texturesliderbar colordiffuse="66FFFFFF" border="4">script.plex/white-square-rounded-4r.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="4">script.plex/white-square-rounded-4r.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="66000000" border="4">plugin.video.plexkodiconnect/white-square-rounded-4r.png</texturesliderbackground>
<texturesliderbar colordiffuse="66FFFFFF" border="4">plugin.video.plexkodiconnect/white-square-rounded-4r.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="4">plugin.video.plexkodiconnect/white-square-rounded-4r.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -534,7 +534,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -558,8 +558,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -590,7 +590,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -661,9 +661,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -685,7 +685,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>

View file

@ -15,14 +15,14 @@
<posy>-40</posy>
<width>680</width>
<height>870</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>600</width>
<height>80</height>
<texture border="10">script.plex/white-square-top-rounded.png</texture>
<texture border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
<colordiffuse>F21F1F1F</colordiffuse>
</control>
<control type="image">
@ -30,7 +30,7 @@
<posy>80</posy>
<width>600</width>
<height>710</height>
<texture flipy="true" border="10">script.plex/white-square-top-rounded.png</texture>
<texture flipy="true" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
<colordiffuse>F2606060</colordiffuse>
</control>
<control type="label">
@ -73,7 +73,7 @@
<posy>0</posy>
<width>600</width>
<height>100</height>
<texture colordiffuse="FFE5A00D">script.plex/white-square.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="label">
<posx>20</posx>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/back.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/back.jpg</texture>
</control>
</controls>

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/sign_in/back.jpg</texture>
<texture>plugin.video.plexkodiconnect/sign_in/back.jpg</texture>
</control>
<control type="textbox">

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -56,8 +56,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="302">
@ -69,8 +69,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/shuffle.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/shuffle-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/shuffle.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="303">
@ -83,8 +83,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/more.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/more-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/more.png</texturenofocus>
<label> </label>
</control>
<control type="button" id="304">
@ -97,8 +97,8 @@
<width>126</width>
<height>100</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/chapters.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/chapters-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/chapters.png</texturenofocus>
<label> </label>
</control>
</control>
@ -151,7 +151,7 @@
<posy>244</posy>
<width>244</width>
<height>40</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>80000000</colordiffuse>
</control>
<control type="label">
@ -188,7 +188,7 @@
<posy>-40</posy>
<width>334</width>
<height>334</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(is.folder))</visible>
@ -196,7 +196,7 @@
<posy>-40</posy>
<width>334</width>
<height>374</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
</control>
<control type="group">
@ -223,7 +223,7 @@
<posy>244</posy>
<width>244</width>
<height>40</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>80000000</colordiffuse>
</control>
<control type="label">
@ -247,7 +247,7 @@
<posy>0</posy>
<width>254</width>
<height>254</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
<control type="image">
<visible>!String.IsEmpty(ListItem.Property(is.folder))</visible>
@ -255,7 +255,7 @@
<posy>0</posy>
<width>254</width>
<height>294</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -267,7 +267,7 @@
</control>
<control type="group" id="150">
<visible>StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))</visible>
<defaultcontrol>151</defaultcontrol>
<posx>1780</posx>
<posy>150</posy>
@ -291,7 +291,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -303,14 +303,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -337,7 +337,7 @@
<posx>0</posx>
<posy>0</posy>
<control type="label">
<visible>!StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))</visible>
<visible>!StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))</visible>
<posx>0</posx>
<posy>0</posy>
<width>34</width>
@ -349,14 +349,14 @@
<label>$INFO[ListItem.Label]</label>
</control>
<control type="group">
<visible>StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))</visible>
<visible>StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))</visible>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>34</width>
<height>34</height>
<colordiffuse>99FFFFFF</colordiffuse>
<texture border="12">script.plex/white-square-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="label">
<posx>0</posx>
@ -383,7 +383,7 @@
<width>34</width>
<height>34</height>
<colordiffuse>FFE5A00D</colordiffuse>
<texture border="12">script.plex/white-outline-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-outline-rounded.png</texture>
</control>
</control>
</control>
@ -398,9 +398,9 @@
<width>12</width>
<height>910</height>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>
@ -424,7 +424,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -448,8 +448,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -475,8 +475,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -499,7 +499,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -570,9 +570,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -614,7 +614,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -647,7 +647,7 @@
<disabledcolor>FFFFFFFF</disabledcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -661,7 +661,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>20</textoffsetx>
<textoffsety>0</textoffsety>
@ -684,7 +684,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -701,7 +701,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFFFFFFF</textcolor>
<label>[B]$ADDON[script.plex 32452][/B]</label>
<label>[B]$ADDON[plugin.video.plexkodiconnect 32452][/B]</label>
</control>
<control type="label">
<scroll>false</scroll>
@ -712,7 +712,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFCCCCCC</textcolor>
<label>$ADDON[script.plex 32453]</label>
<label>$ADDON[plugin.video.plexkodiconnect 32453]</label>
</control>
</control>
@ -729,7 +729,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFFFFFFF</textcolor>
<label>[B]$ADDON[script.plex 32454][/B]</label>
<label>[B]$ADDON[plugin.video.plexkodiconnect 32454][/B]</label>
</control>
<control type="label">
<scroll>false</scroll>
@ -740,7 +740,7 @@
<font>font30</font>
<align>center</align>
<textcolor>FFCCCCCC</textcolor>
<label>$ADDON[script.plex 32455]</label>
<label>$ADDON[plugin.video.plexkodiconnect 32455]</label>
</control>
</control>
@ -753,7 +753,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -768,7 +768,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>

View file

@ -13,7 +13,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture background="true" fallback="script.plex/home/background-fallback.png">$INFO[Window.Property(background)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/home/background-fallback.png">$INFO[Window.Property(background)]</texture>
</control>
<control type="image">

View file

@ -14,7 +14,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="80FFFFFF">script.plex/home/background-fallback.png</texture>
<texture colordiffuse="80FFFFFF">plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -102,8 +102,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus flipx="true" colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus flipx="true" colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus flipx="true" colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<onclick>PlayerControl(Previous)</onclick>
<label> </label>
</control>
@ -116,11 +116,11 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/pause-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/pause.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/pause-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/pause.png</texturenofocus>
<usealttexture>Player.Paused | Player.Forwarding | Player.Rewinding</usealttexture>
<alttexturefocus colordiffuse="FFE5A00D">script.plex/buttons/play-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">script.plex/buttons/play.png</alttexturenofocus>
<alttexturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/play-focus.png</alttexturefocus>
<alttexturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/play.png</alttexturenofocus>
<onclick>PlayerControl(Play)</onclick>
<label> </label>
</control>
@ -134,8 +134,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/next.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/next-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/next.png</texturenofocus>
<onclick>PlayerControl(Next)</onclick>
<label> </label>
</control>
@ -148,8 +148,8 @@
<width>125</width>
<height>101</height>
<font>font12</font>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/stop.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/stop-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/stop.png</texturenofocus>
<onclick>PlayerControl(Stop)</onclick>
<label> </label>
</control>
@ -185,9 +185,9 @@
<posy>222</posy>
<width>783</width>
<height>3</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -200,7 +200,7 @@
<posy>275</posy>
<width>380</width>
<height>695</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group" id="100">
@ -233,7 +233,7 @@
<control type="image">
<posx>0</posx>
<posy>0</posy>
<texture diffuse="script.plex/user_select/item-background.png" fallback="script.plex/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<texture diffuse="plugin.video.plexkodiconnect/user_select/item-background.png" fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<colordiffuse>FFA0A0A0</colordiffuse>
</control>
@ -242,7 +242,7 @@
<posy>45</posy>
<width>210</width>
<height>210</height>
<texture>script.plex/user_select/avatar-background.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/avatar-background.png</texture>
<colordiffuse>E0C0C0C0</colordiffuse>
</control>
<control type="image">
@ -250,7 +250,7 @@
<posy>54</posy>
<width>192</width>
<height>192</height>
<texture diffuse="script.plex/user_select/avatar-diffuse.png" fallback="script.plex/gray-square.png">$INFO[ListItem.Thumb]</texture>
<texture diffuse="plugin.video.plexkodiconnect/user_select/avatar-diffuse.png" fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[ListItem.Thumb]</texture>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Thumb)</visible>
@ -274,7 +274,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/protected-back.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/protected-back.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image">
@ -282,7 +282,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/protected-icon.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/protected-icon.png</texture>
</control>
</control>
@ -295,7 +295,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/admin-back.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/admin-back.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image">
@ -303,7 +303,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/admin-icon.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/admin-icon.png</texture>
</control>
</control>
</control>
@ -322,7 +322,7 @@
<posy>-40</posy>
<width>380</width>
<height>455</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(101) | ControlGroup(400).HasFocus(0)</visible>
@ -330,7 +330,7 @@
<posy>0</posy>
<width>300</width>
<height>300</height>
<texture diffuse="script.plex/user_select/item-background-top.png" fallback="script.plex/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<texture diffuse="plugin.video.plexkodiconnect/user_select/item-background-top.png" fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<colordiffuse>FFA0A0A0</colordiffuse>
</control>
<control type="image">
@ -339,7 +339,7 @@
<posy>0</posy>
<width>300</width>
<height>300</height>
<texture diffuse="script.plex/user_select/item-background.png" fallback="script.plex/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<texture diffuse="plugin.video.plexkodiconnect/user_select/item-background.png" fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<colordiffuse>FFA0A0A0</colordiffuse>
</control>
<control type="group">
@ -349,7 +349,7 @@
<posy>300</posy>
<width>300</width>
<height>75</height>
<texture>script.plex/user_select/item-background-bottom.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/item-background-bottom.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -357,7 +357,7 @@
<posy>300</posy>
<width>300</width>
<height>75</height>
<texture diffuse="script.plex/user_select/item-background-bottom.png" fallback="script.plex/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<texture diffuse="plugin.video.plexkodiconnect/user_select/item-background-bottom.png" fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[ListItem.Property(back.image)]</texture>
<aspectratio scalediffuse="false">stretch</aspectratio>
<colordiffuse>40FFFFFF</colordiffuse>
</control>
@ -369,7 +369,7 @@
<posy>45</posy>
<width>210</width>
<height>210</height>
<texture>script.plex/user_select/avatar-background.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/avatar-background.png</texture>
<colordiffuse>E0C0C0C0</colordiffuse>
</control>
<control type="image">
@ -378,7 +378,7 @@
<posy>45</posy>
<width>210</width>
<height>210</height>
<texture>script.plex/user_select/avatar-background.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/avatar-background.png</texture>
<colordiffuse>FFCC7B19</colordiffuse>
</control>
<control type="image">
@ -387,7 +387,7 @@
<posy>45</posy>
<width>210</width>
<height>210</height>
<texture>script.plex/user_select/avatar-background.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/avatar-background.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
@ -396,7 +396,7 @@
<posy>54</posy>
<width>192</width>
<height>192</height>
<texture diffuse="script.plex/user_select/avatar-diffuse.png" fallback="script.plex/gray-square.png">$INFO[ListItem.Thumb]</texture>
<texture diffuse="plugin.video.plexkodiconnect/user_select/avatar-diffuse.png" fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[ListItem.Thumb]</texture>
</control>
<control type="label">
<visible>String.IsEmpty(ListItem.Thumb)</visible>
@ -420,7 +420,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/protected-back.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/protected-back.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image">
@ -428,7 +428,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/protected-icon.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/protected-icon.png</texture>
</control>
</control>
@ -441,7 +441,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/admin-back.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/admin-back.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="image">
@ -449,7 +449,7 @@
<posy>0</posy>
<width>54</width>
<height>54</height>
<texture>script.plex/user_select/admin-icon.png</texture>
<texture>plugin.video.plexkodiconnect/user_select/admin-icon.png</texture>
</control>
</control>
@ -493,7 +493,7 @@
<posy>-75</posy>
<width>300</width>
<height>75</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
@ -501,7 +501,7 @@
<posy>-75</posy>
<width>300</width>
<height>75</height>
<texture fallback="script.plex/gray-square.png">$INFO[Container(101).ListItem.Property(back.image)]</texture>
<texture fallback="plugin.video.plexkodiconnect/gray-square.png">$INFO[Container(101).ListItem.Property(back.image)]</texture>
<colordiffuse>40FFFFFF</colordiffuse>
</control>
<control type="label">
@ -533,7 +533,7 @@
<posy>0</posy>
<width>300</width>
<height>239</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="group" id="300">
@ -553,8 +553,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]1[/B]</label>
@ -573,8 +573,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]2[/B]</label>
@ -593,8 +593,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]3[/B]</label>
@ -612,8 +612,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]4[/B]</label>
@ -632,8 +632,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]5[/B]</label>
@ -652,8 +652,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]6[/B]</label>
@ -671,8 +671,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]7[/B]</label>
@ -691,8 +691,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]8[/B]</label>
@ -711,8 +711,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]9[/B]</label>
@ -730,8 +730,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFCC7B19">script.plex/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">script.plex/white-square.png</texturenofocus>
<texturefocus colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square.png</texturefocus>
<texturenofocus colordiffuse="FF333333">plugin.video.plexkodiconnect/white-square.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label>[B]0[/B]</label>
@ -749,8 +749,8 @@
<focusedcolor>FF000000</focusedcolor>
<align>center</align>
<aligny>center</aligny>
<texturefocus>script.plex/user_select/backspace.png</texturefocus>
<texturenofocus>script.plex/user_select/backspace_nf.png</texturenofocus>
<texturefocus>plugin.video.plexkodiconnect/user_select/backspace.png</texturefocus>
<texturenofocus>plugin.video.plexkodiconnect/user_select/backspace_nf.png</texturenofocus>
<textoffsetx>0</textoffsetx>
<textoffsety>0</textoffsety>
<label> </label>
@ -770,7 +770,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>19000000</colordiffuse>
</control>
@ -808,7 +808,7 @@
<posy>0</posy>
<width>124</width>
<height>66</height>
<texture colordiffuse="FFCC7B19" border="10">script.plex/white-square-rounded.png</texture>
<texture colordiffuse="FFCC7B19" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texture>
</control>
<control type="group">
<posx>27</posx>
@ -819,7 +819,7 @@
<posy>0</posy>
<width>90</width>
<height>90</height>
<texture>script.plex/home/type/home.png</texture>
<texture>plugin.video.plexkodiconnect/home/type/home.png</texture>
</control>
<control type="image">
<visible>Control.HasFocus(500) | !String.IsEmpty(Window.Property(dropdown))</visible>
@ -827,7 +827,7 @@
<posy>-40</posy>
<width>170</width>
<height>170</height>
<texture>script.plex/home/type/home-selected.png</texture>
<texture>plugin.video.plexkodiconnect/home/type/home-selected.png</texture>
</control>
</control>
</control>
@ -860,7 +860,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -871,7 +871,7 @@
<posy>465</posy>
<width>240</width>
<height>150</height>
<texture>script.plex/busy-back.png</texture>
<texture>plugin.video.plexkodiconnect/busy-back.png</texture>
<colordiffuse>A0FFFFFF</colordiffuse>
</control>
<control type="image">
@ -879,7 +879,7 @@
<posy>521</posy>
<width>90</width>
<height>38</height>
<texture diffuse="script.plex/busy-diffuse.png">script.plex/busy.gif</texture>
<texture diffuse="plugin.video.plexkodiconnect/busy-diffuse.png">plugin.video.plexkodiconnect/busy.gif</texture>
</control>
</control>
</controls>

View file

@ -21,7 +21,7 @@
<posy>0</posy>
<width>1170</width>
<height>800</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>B3111111</colordiffuse>
</control>
<control type="list" id="101">
@ -59,7 +59,7 @@
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="group">
@ -115,7 +115,7 @@
<posy>-1</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<posx>226</posx>
@ -161,7 +161,7 @@
<posy>98</posy>
<width>930</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -192,7 +192,7 @@
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="group">
@ -248,7 +248,7 @@
<posy>-1</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<posx>226</posx>
@ -294,7 +294,7 @@
<posy>97</posy>
<width>930</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
</control>
@ -308,14 +308,14 @@
<posy>-40</posy>
<width>1124</width>
<height>180</height>
<texture border="40">script.plex/square-rounded-shadow.png</texture>
<texture border="40">plugin.video.plexkodiconnect/square-rounded-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>999</width>
<height>100</height>
<texture border="12">script.plex/white-square-left-rounded.png</texture>
<texture border="12">plugin.video.plexkodiconnect/white-square-left-rounded.png</texture>
<colordiffuse>FFE5A00D</colordiffuse>
</control>
<control type="image">
@ -323,7 +323,7 @@
<posy>0</posy>
<width>45</width>
<height>100</height>
<texture>script.plex/buttons/more-vertical.png</texture>
<texture>plugin.video.plexkodiconnect/buttons/more-vertical.png</texture>
<colordiffuse>99FFFFFF</colordiffuse>
</control>
<control type="label">
@ -344,7 +344,7 @@
<posy>32.5</posy>
<width>35</width>
<height>35</height>
<texture>script.plex/indicators/playing-circle.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/playing-circle.png</texture>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="group">
@ -401,7 +401,7 @@
<posy>0</posy>
<width>48</width>
<height>48</height>
<texture>script.plex/indicators/unwatched.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/unwatched.png</texture>
</control>
<control type="group">
<posx>313</posx>
@ -455,9 +455,9 @@
<height>734</height>
<onleft>101</onleft>
<visible>true</visible>
<texturesliderbackground colordiffuse="40000000" border="5">script.plex/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">script.plex/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">script.plex/white-square-rounded.png</texturesliderbarfocus>
<texturesliderbackground colordiffuse="40000000" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbackground>
<texturesliderbar colordiffuse="77FFFFFF" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbar>
<texturesliderbarfocus colordiffuse="FFE5A00D" border="5">plugin.video.plexkodiconnect/white-square-rounded.png</texturesliderbarfocus>
<textureslidernib>-</textureslidernib>
<textureslidernibfocus>-</textureslidernibfocus>
<pulseonselect>false</pulseonselect>

View file

@ -12,7 +12,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture background="true" fallback="script.plex/home/background-fallback.png">$INFO[Window.Property(background)]</texture>
<texture background="true" fallback="plugin.video.plexkodiconnect/home/background-fallback.png">$INFO[Window.Property(background)]</texture>
</control>
<control type="group">
<visible>!String.IsEmpty(Window.Property(post.play))</visible>
@ -22,7 +22,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture fallback="script.plex/home/background-fallback.png" background="true">$INFO[Window.Property(post.play.background)]</texture>
<texture fallback="plugin.video.plexkodiconnect/home/background-fallback.png" background="true">$INFO[Window.Property(post.play.background)]</texture>
</control>
</control>
@ -46,7 +46,7 @@
<posy>0</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
@ -60,7 +60,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>A0FFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32438][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32438][/UPPERCASE]</label>
</control>
<control type="group" id="100">
@ -83,7 +83,7 @@
<posy>-45</posy>
<width>552</width>
<height>349</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>0</posx>
@ -112,14 +112,14 @@
<posy>0</posy>
<width>76</width>
<height>76</height>
<texture colordiffuse="99000000">script.plex/indicators/circle-152.png</texture>
<texture colordiffuse="99000000">plugin.video.plexkodiconnect/indicators/circle-152.png</texture>
</control>
<control type="image">
<posx>15</posx>
<posy>15</posy>
<width>46</width>
<height>46</height>
<texture>script.plex/indicators/replay.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/replay.png</texture>
</control>
</control>
<control type="label">
@ -153,7 +153,7 @@
<onup>200</onup>
<ondown>400</ondown>
<onright>102</onright>
<texturefocus border="10">script.plex/home/selected.png</texturefocus>
<texturefocus border="10">plugin.video.plexkodiconnect/home/selected.png</texturefocus>
<texturenofocus>-</texturenofocus>
</control>
</control>
@ -171,7 +171,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32439][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32439][/UPPERCASE]</label>
</control>
<control type="group">
<posx>582</posx>
@ -186,7 +186,7 @@
<posy>-45</posy>
<width>627</width>
<height>393</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>0</posx>
@ -216,21 +216,21 @@
<posy>0</posy>
<width>152</width>
<height>152</height>
<texture colordiffuse="99000000">script.plex/indicators/circle-152.png</texture>
<texture colordiffuse="99000000">plugin.video.plexkodiconnect/indicators/circle-152.png</texture>
</control>
<control type="image">
<posx>8</posx>
<posy>8</posy>
<width>136</width>
<height>136</height>
<texture colordiffuse="FFCC7B19">script.plex/circle-progress/$INFO[Window.Property(countdown)].png</texture>
<texture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/circle-progress/$INFO[Window.Property(countdown)].png</texture>
</control>
<control type="image">
<posx>59.5</posx>
<posy>57</posy>
<width>33</width>
<height>38</height>
<texture>script.plex/indicators/pause.png</texture>
<texture>plugin.video.plexkodiconnect/indicators/pause.png</texture>
</control>
</control>
<control type="label">
@ -264,7 +264,7 @@
<onup>200</onup>
<ondown>400</ondown>
<onleft>101</onleft>
<texturefocus border="10">script.plex/home/selected.png</texturefocus>
<texturefocus border="10">plugin.video.plexkodiconnect/home/selected.png</texturefocus>
<texturenofocus>-</texturenofocus>
</control>
</control>
@ -369,7 +369,7 @@
<posy>0</posy>
<width>1920</width>
<height>360</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>40000000</colordiffuse>
</control>
<control type="label">
@ -381,7 +381,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32440][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32440][/UPPERCASE]</label>
</control>
<control type="list" id="400">
<posx>0</posx>
@ -459,7 +459,7 @@
<posy>-40</posy>
<width>389</width>
<height>258</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -509,7 +509,7 @@
<posy>0</posy>
<width>309</width>
<height>178</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -528,7 +528,7 @@
<posy>0</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -584,7 +584,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -627,7 +627,7 @@
<posy>-40</posy>
<width>324</width>
<height>441</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -656,7 +656,7 @@
<posy>0</posy>
<width>244</width>
<height>10</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="image">
@ -686,7 +686,7 @@
<posy>0</posy>
<width>254</width>
<height>371</height>
<texture border="10">script.plex/home/selected.png</texture>
<texture border="10">plugin.video.plexkodiconnect/home/selected.png</texture>
</control>
</control>
</control>
@ -705,7 +705,7 @@
<posy>20</posy>
<width>1800</width>
<height>2</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>A0000000</colordiffuse>
</control>
<control type="label">
@ -717,7 +717,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32419][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32419][/UPPERCASE]</label>
</control>
<control type="list" id="403">
<posx>0</posx>
@ -742,14 +742,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="textbox">
@ -782,7 +782,7 @@
<posy>-40</posy>
<width>334</width>
<height>334</height>
<texture border="42">script.plex/buttons/role-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/buttons/role-shadow.png</texture>
</control>
<control type="group">
<posx>5</posx>
@ -792,14 +792,14 @@
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture diffuse="script.plex/masks/role.png">script.plex/thumb_fallbacks/role.png</texture>
<texture diffuse="plugin.video.plexkodiconnect/masks/role.png">plugin.video.plexkodiconnect/thumb_fallbacks/role.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>244</width>
<height>244</height>
<texture background="true" diffuse="script.plex/masks/role.png">$INFO[ListItem.Thumb]</texture>
<texture background="true" diffuse="plugin.video.plexkodiconnect/masks/role.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" aligny="top">scale</aspectratio>
</control>
<control type="textbox">
@ -819,7 +819,7 @@
<posy>0</posy>
<width>254</width>
<height>254</height>
<texture>script.plex/buttons/role-selected.png</texture>
<texture>plugin.video.plexkodiconnect/buttons/role-selected.png</texture>
</control>
</control>
</control>
@ -843,7 +843,7 @@
<posy>0</posy>
<width>1920</width>
<height>135</height>
<texture>script.plex/white-square.png</texture>
<texture>plugin.video.plexkodiconnect/white-square.png</texture>
<colordiffuse>C0000000</colordiffuse>
</control>
<control type="grouplist">
@ -867,8 +867,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/home.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/home-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/home.png</texturenofocus>
<label> </label>
</control>
</control>
@ -879,7 +879,7 @@
<align>left</align>
<aligny>center</aligny>
<textcolor>FFFFFFFF</textcolor>
<label>[UPPERCASE]$ADDON[script.plex 32439][/UPPERCASE]</label>
<label>[UPPERCASE]$ADDON[plugin.video.plexkodiconnect 32439][/UPPERCASE]</label>
</control>
<control type="group">
<width>40</width>
@ -894,8 +894,8 @@
<ondown>50</ondown>
<font>font12</font>
<focusedcolor>FF000000</focusedcolor>
<texturefocus colordiffuse="FFE5A00D">script.plex/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">script.plex/buttons/search.png</texturenofocus>
<texturefocus colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/buttons/search-focus.png</texturefocus>
<texturenofocus colordiffuse="99FFFFFF">plugin.video.plexkodiconnect/buttons/search.png</texturenofocus>
<label> </label>
</control>
</control>
@ -917,7 +917,7 @@
<focusedcolor>FF000000</focusedcolor>
<align>right</align>
<aligny>center</aligny>
<texturefocus colordiffuse="FFE5A00D" border="10">script.plex/white-square-rounded.png</texturefocus>
<texturefocus colordiffuse="FFE5A00D" border="10">plugin.video.plexkodiconnect/white-square-rounded.png</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>100</textoffsetx>
<textoffsety>0</textoffsety>
@ -988,9 +988,9 @@
<posy>102</posy>
<width>240</width>
<height>1</height>
<texturebg colordiffuse="9AFFFFFF">script.plex/white-square-1px.png</texturebg>
<texturebg colordiffuse="9AFFFFFF">plugin.video.plexkodiconnect/white-square-1px.png</texturebg>
<lefttexture>-</lefttexture>
<midtexture colordiffuse="FFCC7B19">script.plex/white-square-1px.png</midtexture>
<midtexture colordiffuse="FFCC7B19">plugin.video.plexkodiconnect/white-square-1px.png</midtexture>
<righttexture>-</righttexture>
<overlaytexture>-</overlaytexture>
<info>Player.Progress</info>
@ -1012,7 +1012,7 @@
<posy>54</posy>
<width>93</width>
<height>30</height>
<texture>script.plex/home/plex.png</texture>
<texture>plugin.video.plexkodiconnect/home/plex.png</texture>
</control>
</control>
@ -1025,7 +1025,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/home/background-fallback.png</texture>
<texture>plugin.video.plexkodiconnect/home/background-fallback.png</texture>
</control>
<control type="image">
<posx>0</posx>
@ -1040,7 +1040,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture colordiffuse="99606060">script.plex/white-square.png</texture>
<texture colordiffuse="99606060">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
</control>
</control>

View file

@ -17,7 +17,7 @@
<posy>0</posy>
<width>1920</width>
<height>1080</height>
<texture>script.plex/player-fade.png</texture>
<texture>plugin.video.plexkodiconnect/player-fade.png</texture>
<colordiffuse>FF080808</colordiffuse>
</control>
</control>
@ -30,14 +30,14 @@
<posy>-40</posy>
<width>1080</width>
<height>770</height>
<texture border="42">script.plex/drop-shadow.png</texture>
<texture border="42">plugin.video.plexkodiconnect/drop-shadow.png</texture>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>1000</width>
<height>80</height>
<texture border="10">script.plex/white-square-top-rounded.png</texture>
<texture border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
<colordiffuse>F21F1F1F</colordiffuse>
</control>
<control type="image">
@ -45,7 +45,7 @@
<posy>80</posy>
<width>1000</width>
<height>610</height>
<texture flipy="true" border="10">script.plex/white-square-top-rounded.png</texture>
<texture flipy="true" border="10">plugin.video.plexkodiconnect/white-square-top-rounded.png</texture>
<colordiffuse>F2606060</colordiffuse>
</control>
<control type="image">
@ -53,7 +53,7 @@
<posy>80</posy>
<width>400</width>
<height>610</height>
<texture flipy="true" border="10">script.plex/white-square-tl-rounded.png</texture>
<texture flipy="true" border="10">plugin.video.plexkodiconnect/white-square-tl-rounded.png</texture>
<colordiffuse>30000000</colordiffuse>
</control>
<control type="label">
@ -107,7 +107,7 @@
<posy>0</posy>
<width>1000</width>
<height>100</height>
<texture colordiffuse="FFE5A00D">script.plex/white-square.png</texture>
<texture colordiffuse="FFE5A00D">plugin.video.plexkodiconnect/white-square.png</texture>
</control>
<control type="label">
<posx>20</posx>

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 356 B

View file

Before

Width:  |  Height:  |  Size: 739 B

After

Width:  |  Height:  |  Size: 739 B

View file

Before

Width:  |  Height:  |  Size: 436 B

After

Width:  |  Height:  |  Size: 436 B

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 845 B

After

Width:  |  Height:  |  Size: 845 B

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

Before

Width:  |  Height:  |  Size: 663 B

After

Width:  |  Height:  |  Size: 663 B

View file

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

Before

Width:  |  Height:  |  Size: 923 B

After

Width:  |  Height:  |  Size: 923 B

View file

Before

Width:  |  Height:  |  Size: 493 B

After

Width:  |  Height:  |  Size: 493 B

View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

Before

Width:  |  Height:  |  Size: 910 B

After

Width:  |  Height:  |  Size: 910 B

View file

Before

Width:  |  Height:  |  Size: 868 B

After

Width:  |  Height:  |  Size: 868 B

View file

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

View file

Before

Width:  |  Height:  |  Size: 752 B

After

Width:  |  Height:  |  Size: 752 B

View file

Before

Width:  |  Height:  |  Size: 756 B

After

Width:  |  Height:  |  Size: 756 B

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 861 B

After

Width:  |  Height:  |  Size: 861 B

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 474 B

View file

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Some files were not shown because too many files have changed in this diff Show more