Change Default View (MyVideoNav.xml) in reFocus
#1
Hi dudes,

I loved reFocus, but i want to change default View Mode for my Videos.

I tried to mod MyVideoNav.xml with no sucess (it worked in other skin).

I want view_BigList, instead view_List.

I tried:

<defaultcontrol always="true">50</defaultcontrol>
to
<defaultcontrol always="true">51</defaultcontrol>

and

<views>50,51,52,521,522,53,531,54,541,57,571,572,574,575,58</views>
to
<views>51,50,52,521,522,53,531,54,541,57,571,572,574,575,58</views>

But it didnt work.

My goal is to see the movies rating in the list, once list_view doesnt show it.


Help me PLS.
Reply
#2
If you want to change the order of views, you must change the Id in menu.xml ( see line 390 )
Reply
#3
(2014-07-27, 19:59)Reynald Wrote: If you want to change the order of views, you must change the Id in menu.xml ( see line 390 )

Tks for reply me,

The line 390 of my version 1.3.3 is not the right one i guess.

Which version did you refer?
Reply
#4
you must look this part and change the order of Id


PHP Code:
<!--viewtypes-->
            <
control type="group">    
                <
control type="grouplist" id="4000">
                    <include>
menu_SubContainerCommons</include>
                    <
control type="label" id="401">
                        <
label>$LOCALIZE[31100]</label>
                        <include>
menu_Header</include>
                    </
control>
                    <!--list-->
                    <
control type="button" id="402">
                        <
label>$LOCALIZE[535]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(50)</onclick>
                    </
control>
                    <!--
big list-->
                    <
control type="button" id="403">
                        <
label>$LOCALIZE[537]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(51)</onclick>
                        <
visible>Container.Content(movies) | Container.Content(tvshows) | Container.Content(episodes)</visible>
                    </
control>
                    <!--
slide portrait-->
                    <
control type="button" id="404">
                        <
label>$LOCALIZE[31112]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(52)</onclick>
                        <
visible>[Container.Content(movies) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(sets)]</visible>
                    </
control>
                    <!--
slide landscape-->
                    <
control type="button" id="405">
                        <
label>$LOCALIZE[31112]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(521)</onclick>
                        <
visible>Container.Content(episodes) | Container.Content(musicvideos) | [Container.Content(files) + Container.HasFiles + !SubString(Container.FolderPath,plugin://)]</visible>
                    
</control>
                    <!--
slide square-->
                    <
control type="button" id="406">
                        <
label>$LOCALIZE[31112]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(522)</onclick>
                        <
visible>Container.Content(addons)</visible>
                    </
control>
                    <!--
thumbnails portrait-->
                    <
control type="button" id="407">
                        <
label>$LOCALIZE[31113]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(57)</onclick>
                        <
visible>Container.Content(movies) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(sets) | Container.Content(actors) | Container.Content(artists)</visible>
                    </
control>
                    <!--
thumbnails landscape-->
                    <
control type="button" id="408">
                        <
label>$LOCALIZE[31113]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(575)</onclick>
                        <
visible>Container.Content(episodes) | Container.Content(musicvideos) | [Container.Content(files) + Container.HasFiles]</visible>
                    </
control>
                    <!--
thumbnails square-->
                    <
control type="button" id="409">
                        <
label>$LOCALIZE[31113]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(572)</onclick>
                        <
visible>[Container.Content(addons) | [Container.Content(files) + !Container.HasFiles SubString(Container.FolderPath,plugin://)]]</visible>
                    
</control>
                    <!--
banners-->
                    <
control type="button" id="410">
                        <
label>$LOCALIZE[31110]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(541)</onclick>
                        <
visible>[Container.Content(tvshows) | [Container.Content(movies) + Skin.HasSetting(banner.movies.enable)]] + !SubString(Container.FolderPath,plugin://)</visible>
                    
</control>
                    <!--
gallery-->
                    <
control type="button" id="411">
                        <
label>$LOCALIZE[31111]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(53)</onclick>
                        <
visible>[Container.Content(tvshows) | Container.Content(movies)] + !SubString(Container.FolderPath,plugin://)</visible>
                    
</control>
                    <!--
tiles-->
                    <
control type="button" id="412">
                        <
label>$LOCALIZE[31109]</label>
                        <include>
menu_Button</include>
                        <
onclick>Container.SetViewMode(58)</onclick>
                        <
visible>Container.Content(addons) | SubString(Container.FolderPath,addons://sources/) | SubString(Container.FolderPath,plugin://) | [Container.Content(files) + !SubString(Container.FolderPath,plugin://)]</visible>
                    
</control>
                </
control>
            </
control
Reply

Logout Mark Read Team Forum Stats Members Help
Change Default View (MyVideoNav.xml) in reFocus0