[MOD] Native Media Flagging / Conditional Weather / Multiplex TV Posters - ModPack

  Thread Rating:
  • 3 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Closed
eumel Offline
Alaska Group
Posts: 280
Joined: Jun 2009
Location: Germany
Post: #181
Filter Button in the MusicNav Menu, to find fast an Interpret or Album
Video

open MyMusicNav.xml
add after:
Code:
<control type="grouplist" id="7000">
    <include>Animation_MediaMenuSlide</include>
    <include>Objects_MediaMenuGroup</include>
that:
Code:
<control type="button" id="19">
    <label>587</label>
        <include>Objects_MediaMenuButton</include>                    
</control>
find
rausch101 Offline
Fan
Posts: 580
Joined: Sep 2006
Reputation: 1
Location: Washington D.C.
Post: #182
El Massman Wrote:with the native flagging, is it affected by having divx in the file name? i can't get it to pick up anything with a divx/xvid codec and was wondering if it's because they all have it in the file name?

regards,

mass

oh, and +1 on removing the infinite scrolling

This is currently my only issue at all. Are you using a third party media info generator, or the built-in xbmc scrapers?
find
El Massman Offline
Senior Member
Posts: 118
Joined: Mar 2009
Reputation: 0
Post: #183
rausch101 Wrote:This is currently my only issue at all. Are you using a third party media info generator, or the built-in xbmc scrapers?

i've tried using both. nfo's generated by EMM and straight scraping from XBMC. turns out it's only under the film section. tv section picks up codecs but films wont. i'm running on OS X. could it be an issue with running on macs?


EDIT: Ok, upon further inspection it turns out it's the flags for audio and video. they're only not working on showcase, multiplex and info. they actually show up just fine in list mode.

Q6600, ASUS P5W, 6GB DDR2 and 2.5TB RAID running Mac OS X 10.5.5 and XBMC
xbox v1.0 (softmod) XBMC Dash
(This post was last modified: 2009-07-01 17:40 by El Massman.)
find
ccMatrix Offline
Alaska Group
Posts: 470
Joined: Oct 2008
Post: #184
The latest movies/episodes are fun but I wish that the position of it could be configured. I have a lot of background images which have actors in it and now all the faces are hidden by the latest movies/episodes thumbs/posters Sad . It would be nice if I could move them to the bottom or the center (depending on mainmenu location).
find
ck_xbmc Offline
Junior Member
Posts: 28
Joined: Jul 2009
Reputation: 0
Post: #185
zag2me Wrote:The Top 100 tunes, and recently added albums/recently played albums don't show up properly in library mode.

Can this be fixed? They work fine in the normal Auriga in full mode(not slim).

[Image: image1o.jpg]


I see the same behaviour after doing a music serach.

1) The artists contain the serach string is displayed correctly.

2) Where the search string matches a song, only the track time is diaplyed (right justified).


3) When an album name contain the search string is found, only the first 9 characters are displayed (right justified).

Hope this can get fixed.
find
uncola Offline
Member
Posts: 71
Joined: Apr 2008
Reputation: 0
Post: #186
I just built a new HTPC and I noticed that while unzipping the mediapart2.rar into my aeon_mod folder.. I had to overwrite some files.. am I doing it wrong?
I unzip both media rars into the aeon_mod folder..
find
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #187
I don't know if I'm missing checking a setting but how can I have curtains for TVshows and backdrops for movies?
find
mindweaver Offline
Posting Freak
Posts: 998
Joined: Jan 2004
Reputation: 1
Location: Sweden
Post: #188
PainToad Wrote:You have to turn backgrounder to false in all of the movie/tv related thumbs.

How do I do that?
find
ccMatrix Offline
Alaska Group
Posts: 470
Joined: Oct 2008
Post: #189
I found a small bug in the season list. It will say just SEASON for the all season element. The reason is that ListItem.Season is empty for that element.

Fix: change the following code:
Code:
<control type="label">
    <label>[UPPERCASE]$INFO[ListItem.TVShowTitle] - SEASON $INFO[ListItem.Season][/UPPERCASE]</label>
    <include>MultiplexPosterLabel</include>
    <visible>Container.Content(seasons) + Skin.HasSetting(tvpostermultiplex)</visible>
</control>

to:
Code:
<control type="label">
    <label>[UPPERCASE]$INFO[ListItem.TVShowTitle] - SEASON $INFO[ListItem.Season][/UPPERCASE]</label>
    <include>MultiplexPosterLabel</include>
    <visible>Container.Content(seasons) + Skin.HasSetting(tvpostermultiplex) + !isEmpty(ListItem.Season)</visible>
</control>
<control type="label">
    <label>[UPPERCASE]$INFO[ListItem.TVShowTitle] - ALL SEASONS[/UPPERCASE]</label>
    <include>MultiplexPosterLabel</include>
    <visible>Container.Content(seasons) + Skin.HasSetting(tvpostermultiplex) + isEmpty(ListItem.Season)</visible>
</control>
find
PainToad Offline
Senior Member
Posts: 217
Joined: Aug 2008
Reputation: 0
Post: #190
mindweaver Wrote:How do I do that?

Open the xml for the page that is giving you the flickering, then search for backgrounder, set the thumb ones to false.
find
Thread Closed