XBMC Community Forum
Make a new menu (Cusom item), with 2 favourites? - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Alaska (/forumdisplay.php?fid=126)
+---- Thread: Make a new menu (Cusom item), with 2 favourites? (/showthread.php?tid=113178)



Make a new menu (Custom item), with 2 favourites? - rasmuskarlsen - 2011-10-25 00:06

Hey..!

I have posted some threads here about this subject, but now i have learned that it's possible to add custom items (New menus in the home menu). I'm trying to make a menu in XBMC -which is close to what i can find in Mediaportal. It can be illustreated by the following screen:

[Image: unledwsw.jpg]



So when i select "Movies" from the home menu, then i can choose between "All movies" (Title), "Genres", and maybe others... (Customized either in the GUI, or by changing the XML files).


[Image: unledsmo.jpg]



How can i make such a menu?

Until now i have "hacked" the skin, to show de favourites menu, as "Movies" in the home menu.. But i'm not happy with this solution, because it still says "favourites" in the top left corner..


- rasmuskarlsen - 2011-10-26 09:36

Nobody have an update regrding this?


- rasmuskarlsen - 2011-10-28 10:16

?


- Hitcher - 2011-10-28 10:28

Edit IncludesHomeDefault.xml

Replace -

Code:
<onclick>ActivateWindow(MyVideoLibrary,movietitles,return)</onclick>

Code:
<onclick>ActivateWindow(MyVideoLibrary,movietitles)</onclick>

with -

Code:
<onclick>ActivateWindow(Videos,Movies,return)</onclick>

Code:
<onclick>ActivateWindow(Videos,Movies)</onclick>



- rasmuskarlsen - 2011-10-29 21:33

Hitcher Wrote:Edit IncludesHomeDefault.xml

Replace -

Code:
<onclick>ActivateWindow(MyVideoLibrary,movietitles,return)</onclick>

with -

Code:
<onclick>ActivateWindow(MyVideoLibrary,return)</onclick>

Thanks for your reply.

I cannot see this change is changing anything? :/


- Hitcher - 2011-10-29 22:00

Edited my post.


- rasmuskarlsen - 2011-10-29 22:44

Hitcher Wrote:Edited my post.

Beautiful Smile It's working just like it should!

Do you know which file contains the Genre, Title, Year, Actor etc links? I wan't to re-arrange them, so Title is the first slection on the list.


- Hitcher - 2011-10-29 22:51

You can't change the order as that's handled by XBMC and not the skin.


- rasmuskarlsen - 2011-10-29 22:54

Hitcher Wrote:You can't change the order as that's handled by XBMC and not the skin.

Allright thank you. I will try to post in another forum then. It must be possible to change the order for theese items.