(2021-07-12, 16:50)bsoriano Wrote: (2021-07-11, 20:48)abidm8 Wrote: Hello everyone,
I decided to switch to Amber from Confluence,
for testing purposes, I adjusted confluence skin to be able to display an overlay while the video is playing, added a code in videofullscreen.xml and a logo.png in media folder.
Amber has much better widgets option, but the process above to show overlay was not as simple as I thought,
at the moment I use the Amber skin, and I love it.
any suggestions ?
please see attached image
thank you
@abidm8 , you can certainly add a logo to videofullscreen.xml in Amber, just do it at the end, after line 447. Add a new image control, and position it as needed (top or bottom tag, left or right tag). Just make sure that you give it an id, since all controls in videofullscreen.xml need to have an id or they will not display.
So, it could be something like this:
xml:
<control type="image" id="25">
<right>60</right>
<top>80</top>
<width>516</width>
<height>200</height>
<texture>mylogo.png</texture>
<aspectratio align="center" aligny="center">keep</aspectratio>
</control>
Regards,
Bart
Thank you Bart,
This is great,
Still haven't tested yet,
But yesterday I for it to work by adjusting DialogSeekBar.xml , I added png and changed the visibility,
clearly this means I had to say goodbye to the seekbar.
Your method is much much better, I will try it.
I would like to take this opportunity to ask another question, I hope you don't mind,
I have been trying to achieve what's in below image,
To have the subtitles background to appear as lines rather than a box,
Keeping in mind the subtitles can be one line or two, and clearly the subtitles need to be on top of the background
when I tried to use graphic background it appeared on top of the subtitles , clearly because I added the background as an overlay.
I was wondering, is the idea doable at all in Kodi?