help with mod
#1
I doing some mods in Alaska and right now I'm stumped. What I'm trying to do is to remove the dimming affect from the movie poster view, tv shows landscape view, music wall view and settings view. Things I've tried, changing the color codes in the colors.xml file. Removing the filter and masks files from the back drops folder all of which have been unsuccessful. So any help would be appreciated.

thanks


Image
HTPC: Apex MI-008 | Foxconn H67S | Celeron G530 | G.SKILL 4GB | Crucial 64 SSD| Arctic Cooling | PicoPSU-160-XT
Reply
#2
IconDiffuse in the color XML.
Reply
#3
Thanks that worked. However, I do have another question. How do I do the same to the settings wall view?

Image
HTPC: Apex MI-008 | Foxconn H67S | Celeron G530 | G.SKILL 4GB | Crucial 64 SSD| Arctic Cooling | PicoPSU-160-XT
Reply
#4
Settings.xml -

PHP Code:
        <control type="image">
            <include>
Dimensions_Fullscreen</include>
            <
texture diffuse="special://skin/backdrops/mask_settings.png">common/white.png</texture>
            <
colordiffuse>BackgroundColor</colordiffuse>
        </
control>
        <
control type="image">
            <include>
Dimensions_Fullscreen</include>
            <
texture diffuse="special://skin/backdrops/mask_settings.png">special://skin/backdrops/filter.png</texture>
            
<colordiffuse>BackgroundFilterColor</colordiffuse>
        </
control
Reply
#5
Thanks again
HTPC: Apex MI-008 | Foxconn H67S | Celeron G530 | G.SKILL 4GB | Crucial 64 SSD| Arctic Cooling | PicoPSU-160-XT
Reply
#6
I have another question. I add the movie duration to the poster view but it's acting funny. The code I'm using is listed below and and it's working but as you can see the "MIN" is showing up twice. However, (This is the funny part) after I watch the movie the duration shows up correctly. I have tried removing "MIN" from the code but it goes from showing correctly to just showing only the time "115" and no "MIN".

I hope this make since.

Thanks

Code:
<control type="label">
<posx>345</posx>
<posy>460</posy>
<width>428</width>
<height>50</height>
<aligny>center</aligny>
<font>Font_Date</font>
<textcolor>PosterTitle</textcolor>
<label>$INFO[ListItem.Duration,] min</label>
<visible>Container.Content(movies)</visible>
<include>Animation_HiddenByInfo</include>
</control>

Image
HTPC: Apex MI-008 | Foxconn H67S | Celeron G530 | G.SKILL 4GB | Crucial 64 SSD| Arctic Cooling | PicoPSU-160-XT
Reply
#7
XBMC has probably scrapped the duration previously but now when you play the file it gets the correct duration (minus the MIN label).
Reply
#8
Yes. I'm not exactly sure what's causing it. I ended up borrowing this code from Amra's Big Alaska mod and it seems to be working now.

Code:
            <control type="label">
                <posx>345</posx>
                <posy>460</posy>
                <width>428</width>
                <height>50</height>
                <aligny>center</aligny>
                <font>Font_Date</font>
                <textcolor>PosterTitle</textcolor>
                <label>[b]$INFO[ListItem.Duration][/b]</label>
                <visible>substring(listitem.Duration,hrs)</visible>
                <visible>Container.Content(movies) + !IsEmpty(listitem.Duration)</visible>
                <include>Animation_HiddenByInfo</include>
            </control>
            <control type="label">
                <posx>345</posx>
                <posy>460</posy>
                <width>428</width>
                <height>50</height>
                <aligny>center</aligny>
                <font>Font_Date</font>
                <textcolor>PosterTitle</textcolor>
                <label>[b]$INFO[ListItem.Duration][/b]</label>
                <visible>substring(listitem.Duration,min)</visible>
                <visible>!substring(listitem.Duration,hrs)</visible>
                <visible>Container.Content(movies) + !IsEmpty(listitem.Duration)</visible>
                <include>Animation_HiddenByInfo</include>
            </control>
            <control type="label">
                <posx>345</posx>
                <posy>460</posy>
                <width>428</width>
                <height>50</height>
                <aligny>center</aligny>
                <font>Font_Date</font>
                <textcolor>PosterTitle</textcolor>
                <label>[b]$INFO[ListItem.Duration,, min][/b]</label>
                <visible>!substring(listitem.Duration,min)</visible>
                <visible>Container.Content(movies) + !IsEmpty(listitem.Duration)</visible>
                <include>Animation_HiddenByInfo</include>
            </control>
HTPC: Apex MI-008 | Foxconn H67S | Celeron G530 | G.SKILL 4GB | Crucial 64 SSD| Arctic Cooling | PicoPSU-160-XT
Reply
#9
Why does this happen I have a DVD in?

Image
HTPC: Apex MI-008 | Foxconn H67S | Celeron G530 | G.SKILL 4GB | Crucial 64 SSD| Arctic Cooling | PicoPSU-160-XT
Reply

Logout Mark Read Team Forum Stats Members Help
help with mod0