s01e01 back on the pause screen - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Amber (https://forum.kodi.tv/forumdisplay.php?fid=203) +---- Thread: s01e01 back on the pause screen (/showthread.php?tid=309592) |
s01e01 back on the pause screen - Merwenus - 2017-03-14 Hello Can someone tell me how can I put the series and episode number back in the pause screen? In previous version I could easily see what I watch without moving the mouse and just pressing the pause/play button on my remote. But it is missing in Krypton, but there is place for it on the left side, thank you! RE: s01e01 back on the pause screen - Merwenus - 2017-03-15 Anyone? It really buggs me I just want to see the series number and episode number here. RE: s01e01 back on the pause screen - degeneration - 2017-03-18 I think that's S08 E01 if I recall correctly!! ;-) Sorry. RE: s01e01 back on the pause screen - Merwenus - 2017-03-18 (2017-03-18, 11:11)degeneration Wrote: I think that's S08 E01 if I recall correctly!! See? You proved my point, it took you 4 days!! With the last version it would be only 2 seconds max I need it back there, someone please help! RE: s01e01 back on the pause screen - nickr - 2017-03-18 Why don't you compare the code in the previous version to the new version and what has changed. If the skin is on github it will be easy. RE: s01e01 back on the pause screen - Merwenus - 2017-03-19 Because I have no idea what files should I check, and the "previous" version is for Jarvis, and it was a year ago. If you tell me what file should I search for for the pause screen, I will try to find out. RE: s01e01 back on the pause screen - Merwenus - 2017-03-21 Oh C'mon, it can't be that hard...what file should I check? RE: s01e01 back on the pause screen - nickr - 2017-03-21 1. Your tone is out of line with what we expect here. 2. I am not a skinner, merely suggesting you use normal development tools to check. 3. I believe it is 1080i/VideoOSD.xml, but I am not a skinner. RE: s01e01 back on the pause screen - joethepartylion - 2017-03-22 Hi, Amber has a slightly strange setup so you will need to check 1080i/DialogSeekbar.xml Lines 71-80 contain the area where you can see blank text (because you have no chapters in your file). You could change this to show VideoPlayer.Title for example. RE: s01e01 back on the pause screen - Merwenus - 2017-03-23 (2017-03-22, 12:54)joethepartylion Wrote: Amber has a slightly strange setup so you will need to check 1080i/DialogSeekbar.xml Thanks, copied back the previous version, now its the same as before, thank you ! Edit.: I was wrong, sadly the old config file only show the episode number under seekbar when I move the mouse, it only says PAUSE when I pause. Too bad, but thanks for the info. Edit2: That PAUSE word is pretty aggressive. When I pause the series it shows up and overwrite the series number. When I rename the DialogSeekBar.xml, the PAUSE word still stays there on the bottom of the screen. RE: s01e01 back on the pause screen - Merwenus - 2017-03-23 Took way more time than expected, but at least it now shows the info. DialogSeekBar.xml Code: <control type="label" description="Player Status label"> I just have one more question. How can I make (VideoPlayer.Season) and (VideoPlayer.Episode) 2 digits? s01e01 instead of default s1e1? RE: s01e01 back on the pause screen - joethepartylion - 2017-03-23 (2017-03-23, 18:56)Merwenus Wrote: I just have one more question. How can I make (VideoPlayer.Season) and (VideoPlayer.Episode) 2 digits? s01e01 instead of default s1e1? Glad you got there. I don't think you can do the double digits directly; it may be possible, but I haven't tried, to have variables saying something like: <variable name="2DigitSeason"> <value condition="Integer.IsEqual(VideoPlayer.Season,1)>01</value> <value condition="Integer.IsEqual(VideoPlayer.Season,2)>02</value> ... <value condition="Integer.IsEqual(VideoPlayer.Season,9)>09</value> <value>$INFO[VideoPlayer.Season]</value> </variable> and then call $VAR[2DigitSeason] instead of $INFO[VideoPlayer.Season]. Let me know if it works for you. RE: s01e01 back on the pause screen - Merwenus - 2017-03-24 Code: <variable name="2DigitSeason"> Code: <label>$INFO[VideoPlayer.TVShowTitle,,[COLOR=Highlight] • [/COLOR]] $VAR[2DigitSeason] [COLOR=Highlight],[/COLOR]]$INFO[VideoPlayer.Episode,E[COLOR=Highlight],[/COLOR][COLOR=Highlight] • [/COLOR]]$INFO[VideoPlayer.ChannelNumberLabel,,.]$INFO[VideoPlayer.ChannelName,,: ]$INFO[VideoPlayer.Artist,, - ]$INFO[VideoPlayer.Album,, - ]$INFO[VideoPlayer.Title]</label> With this setup the panel disappears totally. Also tried $VAR[2DigitSeason,S,] |