[WIP] Metropolis skin

  Thread Rating:
  • 5 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
asha_man Offline
Junior Member
Posts: 47
Joined: Feb 2011
Reputation: 1
Post: #591
(2012-03-15 23:19)jabba_29 Wrote:  Movie sets are available on the home/start screen when you highlight movies then arrow right.
I think you need to switch sets on if you've upgrade to a RC as I think sets are not default.

allowing sets and making use of the moviesets script are two separate things. The script shows information when you highlight the set, and a little poster for each movie in the set.
Currently it shows no information when i highlight a set and just has a single poster.

[Image: all-banner@2x.jpg]
find quote
Amra Offline
Cimmerian
Posts: 452
Joined: Jun 2009
Reputation: 9
Location: Metropolis
Post: #592
(2012-03-15 18:12)stoli Wrote:  Can I also get the Leather files? I had to remove them from the repo submission.

Thanks,

Sent you a PM with the link.
find quote
ialand Offline
Senior Member
Posts: 231
Joined: May 2011
Reputation: 0
Post: #593
This has VERY quickly become one of my favorite skins. But a small request? Option to flip the contents of the left/right bottom corners? So Date/Time is in the left and other info in the right? (It's my compulsive lefthandness.. it's a curse at times Smile )
find quote
karnage1020 Offline
Junior Member
Posts: 7
Joined: Nov 2006
Reputation: 0
Post: #594
(2012-03-15 22:55)asha_man Wrote:  In the next release will you be adding watchlist and movieset support?

Yes. This skin is awesome, but with watchlist support it would be pretty much perfect!!
find quote
Amra Offline
Cimmerian
Posts: 452
Joined: Jun 2009
Reputation: 9
Location: Metropolis
Post: #595
stoli,

I noticed something with the show video path instead of mpaa rating option you added that when I toggle it on it works as intended but then when I try to turn it off I am unable to and Metropolis will still continue to show the video path. I was able to fix this by editing the CustomSettings.xml file as follows:

At line 1611 change this:
Code:
                    <control type="radiobutton" id="1015">
                        <include>SettingsLabel</include>
                        <label>$LOCALIZE[31429]</label>
                        <onclick>Skin.SetBool(ShowVideoPath)</onclick>
                        <selected>Skin.HasSetting(ShowVideoPath)</selected>
                    </control>

to the following:
Code:
                    <control type="radiobutton" id="1015">
                        <include>SettingsLabel</include>
                        <label>$LOCALIZE[31429]</label>
                        <onclick>Skin.SetBool(ShowVideoPath)</onclick>
                        <onclick>Skin.ToggleSetting(ShowVideoPath)</onclick>
                        <selected>Skin.HasSetting(ShowVideoPath)</selected>
                    </control>

Please double check me on that before adding the fix to Metropolis but it does seem to correct it on my end.
Hope that helps... Amra

[EDIT] Sorry I didn't catch it in time but I think the "<onclick>Skin.SetBool(ShowVideoPath)</onclick>" line needs to be removed from the second code section above. See my post below.
(This post was last modified: 2012-03-20 21:35 by Amra.)
find quote
wints Offline
Senior Member
Posts: 146
Joined: Apr 2011
Reputation: 0
Post: #596
Yeah just found this skin and using it and loving it please keep up the good work

Cinema Room HTPC with XBMC Frodo RC1~Epson TW3200~Yamaha RX-V765~Sky+HD~Monitor Audio 250's Front & Centre~Monitor Audio RXFX Rears~BK XXLS400 Sub~Harmony-One


find quote
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 30
Location: Florida
Post: #597
@Amra - good catch. Updated and pushed to Git.
find quote
Amra Offline
Cimmerian
Posts: 452
Joined: Jun 2009
Reputation: 9
Location: Metropolis
Post: #598
(2012-03-20 21:15)stoli Wrote:  @Amra - good catch. Updated and pushed to Git.

Just double checked that again & I am now thinking that you may need to remove the "<onclick>Skin.SetBool(ShowVideoPath)</onclick>" line in the code I posted and just use the Skin.ToggleSetting line only. Sorry about that, I'm having a brain fart kind of a day.
find quote
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 30
Location: Florida
Post: #599
No problem - I only changed the toggle action.
find quote
Amra Offline
Cimmerian
Posts: 452
Joined: Jun 2009
Reputation: 9
Location: Metropolis
Post: #600
@stoli

I apologize if I'm bugging you with all this but I recently updated my HTPC to Eden and am finally getting around to checking out Metropolis on Eden. Thanks again for updating & continuing it.

Anyway I noticed that the default home screen (Includes_Home1.xml) isn't working the same in Eden as it had in Dharma in regards to the "Submenu" & "Menu" help text appearing & disappearing when needed. I was able to track it down and fixed it by changing all instances of the following in the Includes_Home1.xml file:

Change "ControlGroup(9001)HasFocus()" and "!ControlGroup(9001)HasFocus()"

to "ControlGroup(9001).HasFocus()" and "!ControlGroup(9001).HasFocus()" respectively.

Basically, it appears that Eden needs that period in there for it to work even though it worked fine in Dharma. Hope that helps & OBVIOUSLY double check me on that as I am prone to brain farts, as previously demonstrated.
(This post was last modified: 2012-03-21 14:46 by Amra.)
find quote
Post Reply