Home Screen Menu

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Montellese Online
Team-XBMC Developer
Posts: 2,790
Joined: Jan 2009
Reputation: 20
Location: Switzerland
Post: #11
As I have never used Alaska Revisited I can't tell you whether it is the same idea. Here are two screenshots, one at show level and one at season level. I simply replaced the usage of fanart with the use of the landscape posters:

[Image: screenshot010wr.th.png] [Image: screenshot000xo.th.png]

I can see if I can find my changes and post them here if you are interested.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.

[Image: badge.gif]
find quote
Eoghlear Offline
Member
Posts: 99
Joined: Aug 2009
Reputation: 0
Location: Netherlands
Post: #12
Montellese Wrote:Just did this myself. Go to the refocus skin folder and into the "720p" folder and open up the "HomeMenu.xml". Depending on what you exactly want look at the code from line 17 on. To add a direct "Movies" button insert the following:
Code:
<item id="1">
    <label>$LOCALIZE[342]</label>
    <onclick>ActivateWindow(MyVideoLibrary,movietitles)</onclick>
    <onclick>Dialog.Close(shutdownmenu)</onclick>
    <visible>Library.HasContent(movies)</visible>
</item>

You can get the similar codes for "Tv Shows" and "Music Albums" etc from the file "HomeSubMenu.xml" from line 21 on. Just look at what it says in the "ActivateWindow" command and you'll know which entry it is.

Works like a charm. One other question: do you know what lines to edit in order to get back to the home menu using the 'backspace key' at once in stead of getting through the movies and videolibrary menu's first?

[Image: widget]
find quote
Montellese Online
Team-XBMC Developer
Posts: 2,790
Joined: Jan 2009
Reputation: 20
Location: Switzerland
Post: #13
Eoghlear Wrote:Works like a charm. One other question: do you know what lines to edit in order to get back to the home menu using the 'backspace key' at once in stead of getting through the movies and videolibrary menu's first?

Unfortunately I don't as of yet but I inted to look for a solution myself if I find some spare time because it annoys me as well.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.

[Image: badge.gif]
find quote
dratstab Offline
Junior Member
Posts: 30
Joined: Oct 2009
Reputation: 0
Post: #14
Eoghlear Wrote:Works like a charm. One other question: do you know what lines to edit in order to get back to the home menu using the 'backspace key' at once in stead of getting through the movies and videolibrary menu's first?

I belive you need to add a ",return" in the ActivateWindow command:

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

Using XBMC since way back, XBMP days!
find quote
zecoj Offline
Junior Member
Posts: 11
Joined: Dec 2010
Reputation: 0
Post: #15
Montellese Wrote:As I have never used Alaska Revisited I can't tell you whether it is the same idea. Here are two screenshots, one at show level and one at season level. I simply replaced the usage of fanart with the use of the landscape posters:

[Image: screenshot010wr.th.png] [Image: screenshot000xo.th.png]

I can see if I can find my changes and post them here if you are interested.

I'd love to use this mod. Would you make it available for those interested?
find quote
Montellese Online
Team-XBMC Developer
Posts: 2,790
Joined: Jan 2009
Reputation: 20
Location: Switzerland
Post: #16
zecoj Wrote:I'd love to use this mod. Would you make it available for those interested?

Ok I took a quick look through the changes I made and located the following ones (hope these are all needed otherwise let me know):

LibraryVideoMenu.xml:
- Line 245:
Code:
<visible>Control.IsVisible(55) + [Container.Content(movies) | Container.Content(tvshows) | Container.Content(seasons)] + !ControlGroup(40).HasFocus()</visible>
- Line 259:
Code:
<visible>Control.IsVisible(52) + [Container.Content(movies) | Container.Content(tvshows) | Container.Content(seasons)] + !ControlGroup(40).HasFocus()</visible>

ViewsShared.xml:
- Line 112:
Code:
<visible>[Container.Content(movies) | Container.Content(tvshows) | Container.Content(seasons) | Container.Content(artists)] + !Window.IsActive(progressdialog)</visible>
- Line 139 - 141:
Code:
<texture background="true" diffuse="frames/wideFrameMask.png" fallback="special://skin/backgrounds/library/tvshowsNoFanartSmall.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" align="center">stretch</aspectratio>
<visible>Container.Content(tvshows) | Container.Content(seasons)</visible>
- Line 182 - 184:
Code:
<texture background="true" diffuse="frames/wideFrameMask.png" fallback="special://skin/backgrounds/library/tvshowsNoFanartSmall.png">$INFO[ListItem.Thumb]</texture>
<aspectratio scalediffuse="false" align="center">stretch</aspectratio>
<visible>Container.Content(tvshows) | Container.Content(seasons)</visible>

To use it go into your tv show/season view and activate the side menu. Under "choose viewtype" go for "slide". Then go back to the side menu and go all the way down and activate "use fanart". This should do the trick.

If someone could test these changes and report back that it works I'll post it in a new thread so that it is easier to find it.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.

[Image: badge.gif]
find quote
testmetest Offline
Member
Posts: 61
Joined: Apr 2009
Reputation: 0
Post: #17
dratstab Wrote:I belive you need to add a ",return" in the ActivateWindow command:

<onclick>ActivateWindow(MyVideoLibrary,movietitles,return)</onclick>
Thank you SO much!
find quote
Eoghlear Offline
Member
Posts: 99
Joined: Aug 2009
Reputation: 0
Location: Netherlands
Post: #18
dratstab Wrote:I belive you need to add a ",return" in the ActivateWindow command:

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

In the homemenu.xml? Will give it a try!
Edit: Works perfectly!!

[Image: widget]
(This post was last modified: 2010-12-28 20:55 by Eoghlear.)
find quote
zecoj Offline
Junior Member
Posts: 11
Joined: Dec 2010
Reputation: 0
Post: #19
Montellese Wrote:To use it go into your tv show/season view and activate the side menu. Under "choose viewtype" go for "slide". Then go back to the side menu and go all the way down and activate "use fanart". This should do the trick.

Thanks for the help, all well and good except it insisted on using vertical poster instead of fanart for and that made it look "deformed". Any idea? Cheers. Big Grin
find quote
kirillis Offline
Junior Member
Posts: 23
Joined: Jan 2011
Reputation: 0
Post: #20
ok, i got the tvshows and movie menu item on the homescreen now, but i cant find the control to hide the standard VIDEO option.. it´s in the home.xml? which version are you guys using btw? i´m using 0.8.9.5.


EDIT: found it, its a cotrol that directs to the homesubmenu.xml, its labeled 1120 for the music menu and 1110 for video.. in case someone is looking for this.
(This post was last modified: 2011-01-18 12:22 by kirillis.)
find quote
Post Reply