Kodi Community Forum

Full Version: Which XML?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, lovin the night skin for about 4 months now. I was wanting to know which xml file(s) I would need to edit to change (remove) some of the text on the PAUSED screen.

Movies-
I would like to remove the movie title, year and studio from the left and the current time/finish time from the middle bottom. I would still leave the vignette texture.

TV Show -
Same as above. However I do use clearart for all tv shows so I would only like to make the edits if it doesn't brake the clearart.

Movie Info - (while movie is playing)
I would like to remove the same as above but keep the actual synopsis.
Pause= dialogpausebar.xml

Movie Info - (while movie is playing) = dialogfullscreeninfo.xml

Side note - Open up addon.xml, turn debugging to "true" and it'll tell you what window you're in, except for pause and movie info actually. Seems it show the parent window though...
I have found the dialogfullscreen xml and got it the way I want it. However, I cannot find the dialogpausebar xml. I do not have that in my 720p folder.
dialogseekbar, actually
dsimages Wrote:I have found the dialogfullscreen xml and got it the way I want it. However, I cannot find the dialogpausebar xml. I do not have that in my 720p folder.

You're searching for:

DialogSeekBar.xml
Just wanted to check and see if I am doing this correctly.
The code below is from the dialogseekbar xml and displays the Movie title when paused.
I want to know if there is a better/easier way to remove this. I found out that removing the code complete will make the seekbar not work at all.

I have removed the <textcolor>mainblue<textcolor> from the code.


PHP Code:
<control type="label">
            <
posx>0</posx>
            <
posy>0</posy>
            <
width>900</width
            <
height>25</height
            <
label>$INFO[VideoPlayer.Title]</label>
            <
align>left</align
            <
aligny>center</aligny
            <
font>DejaVuSans_Bold_32</font>
            <
textcolor> [b]I removed "mainblue" from here[/b]</textcolor>
            <
visible>!VideoPlayer.Content(episodes)</visible>
        </
control
ok, got everything working just by removing the textcolor. thanks for your help.
I am going to start a new MOD thread with screenshots and file download.
The text is still going to be there, just with the default color. You are better off removing the whole section from <control type="label"> to </control>, including those labels.
That was my first approach but I couldn't get either xml to work correctly. Thats probably because I only know enough to be dangerous.