2018-05-20, 00:19
Hello, new user to the Estuary skin. I want to make a few simple edits, and am lost when it comes to locating code for this skin.
What is the .xml that displays information on screen when i(info) is pressed? I have edited the keyboard.xml to easily turn on the onscreen debugging and such. it clearly says that VideoFullScreen.xml is the main skin, and then VideoOSD.xml is the one that is displayed if the mouse is moved. Neither of these skins see to have what I am looking for. I am looking specifically for the code that displays the current playing movie poster.
I used to use !transparency, (No longer supported by Kodi for the latest releases). In that skin I edited the "DialogFullScreenInfo.xml" file to dispkay the disk image hanging out of the DVD cover. If the movie was playing, and info was pressed, it would rotate the disk as the movie played. When the movie was paused, the disk animation would stop.
Here is what it looked like in the Transparency Skin: (The disk is sideways, as it was spinning while the movie was playing)
This is the code I used to display, and spin the disk image:
What is the .xml that displays information on screen when i(info) is pressed? I have edited the keyboard.xml to easily turn on the onscreen debugging and such. it clearly says that VideoFullScreen.xml is the main skin, and then VideoOSD.xml is the one that is displayed if the mouse is moved. Neither of these skins see to have what I am looking for. I am looking specifically for the code that displays the current playing movie poster.
I used to use !transparency, (No longer supported by Kodi for the latest releases). In that skin I edited the "DialogFullScreenInfo.xml" file to dispkay the disk image hanging out of the DVD cover. If the movie was playing, and info was pressed, it would rotate the disk as the movie played. When the movie was paused, the disk animation would stop.
Here is what it looked like in the Transparency Skin: (The disk is sideways, as it was spinning while the movie was playing)
This is the code I used to display, and spin the disk image:
Code:
<control type="image">
<description>cover image</description>
<posx>160</posx>
<posy>20</posy>
<width>206</width>
<height>206</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[Player.Folderpath]disc.png</texture>
<animation effect="rotate" start="0" end="-360" condition="true" center="auto" time="1500" loop="true">Conditional</animation>
<visible>VideoPlayer.Content(Movies) + ![SubString(Player.FileNameAndPath,http,left) | SubString(Player.FileNameAndPath,mms,left) | SubString(Player.FileNameAndPath,rtmp,left)]</visible>
</control>