How to add MPAA ratings on any view
#1
Question 
Hopefully someone can assist me on this. I am trying to find a way to remove the topbar with the home icon, the breadcrumbs I believe it is called. I want it removed from the "Thumbnail" view under movies, but I want to be able to have displayed instead the topbar with the search option. Is this even possible to do?

Also, because I have kids I would like to know if there is a way to add the "MPAA" ratings similiar to the qualar mod to the "Thumbnail" view.

Your assistance would be greatly appreciated.

Cheers!
Shedrock
Reply
#2
*bump*
Reply
#3
*bump*
Reply
#4
*bump*
Reply
#5
Here is the code for anyone who would like to have the MPAA ratings (in any view) eg: Wall, Icon, Thumbs Info etc. This is especially handy for those with kids.


File to edit is located in skin.rapier/720p.
Filename to edit is: includes_InfoPane.xml

search for:
Code:
    <include name="InfoPaneMediaFlag">
        <control type="grouplist">
            <description>Media Flags Area</description>
            <posx>690</posx>
            <posy>3</posy>
            <width>560</width>
            <height>35</height>
            <itemgap>5</itemgap>
            <align>right</align>
            <usecontrolcoords>true</usecontrolcoords>
            <orientation>horizontal</orientation>
            <include>InfoPaneElementOpenCloseAnim</include>
            <include>MediaFlagFadeAnim</include>
            <include>VideoSourceMediaFlags</include>
            <include>VideoCodecMediaFlags</include>
            <include>AudioMediaFlags</include>
            <include>AspectMediaFlags</include>
        </control>
    </include>

replace with:
Code:
    <include name="InfoPaneMediaFlag">
        <control type="grouplist">
            <description>Media Flags Area</description>
            <posx>590</posx>
            <posy>3</posy>
            <width>660</width>
            <height>35</height>
            <itemgap>5</itemgap>
            <align>right</align>
            <usecontrolcoords>true</usecontrolcoords>
            <orientation>horizontal</orientation>
            <include>InfoPaneElementOpenCloseAnim</include>
            <include>MediaFlagFadeAnim</include>
            <include>VideoSourceMediaFlags</include>
            <include>VideoCodecMediaFlags</include>
            <include>AudioMediaFlags</include>
            <include>AspectMediaFlags</include>
            <include>RatingMediaFlags</include>
        </control>
    </include>
Reply

Logout Mark Read Team Forum Stats Members Help
How to add MPAA ratings on any view1