XBMC Community Forum
[WIP] Metropolis skin - 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: Metropolis (/forumdisplay.php?fid=162)
+---- Thread: [WIP] Metropolis skin (/showthread.php?tid=99317)



RE: [WIP] Metropolis skin - asha_man - 2012-03-15 23:31

(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.


RE: [WIP] Metropolis skin - Amra - 2012-03-16 23:45

(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.


RE: [WIP] Metropolis skin - ialand - 2012-03-18 04:29

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 )


RE: [WIP] Metropolis skin - karnage1020 - 2012-03-20 10:56

(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!!


RE: [WIP] Metropolis skin - Amra - 2012-03-20 20:25

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.


RE: [WIP] Metropolis skin - wints - 2012-03-20 20:50

Yeah just found this skin and using it and loving it please keep up the good work


RE: [WIP] Metropolis skin - stoli - 2012-03-20 21:15

@Amra - good catch. Updated and pushed to Git.


RE: [WIP] Metropolis skin - Amra - 2012-03-20 21:33

(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.


RE: [WIP] Metropolis skin - stoli - 2012-03-20 21:49

No problem - I only changed the toggle action.


RE: [WIP] Metropolis skin - Amra - 2012-03-21 14:44

@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.