[MOD] Showcase View with integrated Multiplex images

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
reaven Offline
Skilled Skinner
Posts: 1,101
Joined: May 2009
Reputation: 20
Post: #81
Quote:Go into advanced options and disable 'Default Icons For Media Flags'
that will do it too.
find quote
paul Offline
Posting Freak
Posts: 2,772
Joined: Oct 2008
Reputation: 4
Location: Planet Earth
Post: #82
mcborzu Wrote:Anyone get this...
[Image: xbmc.png]

One of the flags shows up right under the title.
Yeh i got the same problem and have not tried to add this mod to my existing skin as yet
so it's nothing you have done wrongSmile

XBMC Frodo 12 - Windows 7 - Asrock Ion 330HT - Aeon Nox
find quote
Sranshaft Online
Posting Freak
Posts: 1,335
Joined: Dec 2008
Reputation: 19
Location: Melbourne, Australia
Post: #83
Aye. I have 'Default Icons' turned off so I hadn't noticed that. I'll have a quick look and update as soon as I have a fix.

Thanks go out to Devilrejects for providing the mirror. Big Grin
find quote
Sranshaft Online
Posting Freak
Posts: 1,335
Joined: Dec 2008
Reputation: 19
Location: Melbourne, Australia
Post: #84
Okay I found the problem. Open the Includes_MediaFlags.xml file and scroll down to and select:

Code:
<control type="group">
            <visible>Window.IsActive(25) + Control.IsVisible(57) + !Skin.HasSetting(nomediaflags) + Container.Content(movies) + ![Control.HasFocus(60) | Control.HasFocus(94)]</visible>
            <include>Animation_CommonFade</include>
            <control type="group">
                    <control type="image">
                        <include>Furniture_ShowcaseMediaFlagsVars</include>
                        <texture>flags/defaultscreen.png</texture>
                        <visible>!Control.IsVisible(80) + !Skin.HasSetting(nodefaultflags)</visible>
                    </control>
                </control>
            <control type="group">
                <posx>720</posx>
                <include>Furniture_StudioIcons</include>

And replace it with:

Code:
<control type="group">
            <visible>Window.IsActive(25) + Control.IsVisible(57) + !Skin.HasSetting(nomediaflags) + Container.Content(movies) + ![Control.HasFocus(60) | Control.HasFocus(94)]</visible>
            <include>Animation_CommonFade</include>
            <control type="group">
            <posx>720</posx>
                <control type="image">
                    <include>Furniture_ShowcaseMediaFlagsVars</include>
                    <texture>flags/defaultscreen.png</texture>
                    <visible>!Control.IsVisible(81) + !Skin.HasSetting(nodefaultflags)</visible>
                </control>

Save the file and restart / reload XBMC. That should solve the issue.
(This post was last modified: 2009-05-20 20:24 by Sranshaft.)
find quote
reaven Offline
Skilled Skinner
Posts: 1,101
Joined: May 2009
Reputation: 20
Post: #85
It was the flag position ??
find quote
Sranshaft Online
Posting Freak
Posts: 1,335
Joined: Dec 2008
Reputation: 19
Location: Melbourne, Australia
Post: #86
No, it was the default icon sitting outside in an extra group control. I believe I was starting to separate the studios into an xml of their own so I would only have to update once instead of changing the studio coding 3 times (for Showcase, List and Multiplex views).
find quote
Post Reply