Kodi Community Forum

Full Version: MQ6 - Movie info screen
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys

I have the Default select action for movies set to "Show information".
When the information window opens, the "Resume" button is marked as default.
Is it possible to change this? I would like the "Play" button to be the default choice.
Also is it possible in general to change the information window? Make fanart more visible etc.?

Image


When pressing "Play" this context menu opens up.

Image

Is it possible to change this menu? Let's say I only want the "Resume" and "Start From Beginning" buttons.

Thanks

David
+1

Would also like to know How to make the Play button default.

Don't Understand why the Resume button is Default, Seems odd to me.
Hi David & Trotter

If you open the file DialogVideoInfo.xml and search for word resume or go to line 643

Code:
<item id="2"><!-- Resume -->
<label>13404</label>
<onclick>SendClick(2003,9)</onclick>
</item>
    
<item id="1"><!-- Refresh -->
<label>31695</label>
<onclick>SendClick(2003,6)</onclick>
<visible>!Skin.HasSetting(kioskininfo)</visible>
</item>

<item id="3"><!-- Start -->
<label>31700</label>
<onclick>SendClick(2003,8)</onclick>
</item>

You will see 3 labels (Resume, refresh and start). Start is the play button.

So its just a matter of placing the start (play) item above the resume icon and so forth for the rest to rearrange the order.

Hope this helps.
Hi the_bo


Just tried the above and it worked. Big Grin


Thank you very much.
the_bo

That worked perfectly Smile
Thank you so much mate!
It's been like this since at least MQ5.

Boggles the mind.....