[HELP!] Adding diffused header images for Jexx X
#1
I have been adding images to the headers in PM3.HD to all of my windows to match their purpose. I have had success on all windows except for settings. I can get my image on the main settings screen, but I can not get my images for the 8 different section screens. I am editing settingscatergory.xml and have used the following...

<control type="image">
<posx>640</posx>
<posy>0</posy>
<width>640</width>
<height>105</height>
<aspectratio align="right">keep</aspectratio>
<texture diffuse="Wide_Icon_Diffuse.png">settings1.jpg</texture>
<visible>Control.HasFocus(Videossettings)</visible>
<include>Window_OpenClose_Animation</include>
</control>

The problem is that when I duplicate the code for the next section (ie. music settings), it will continue to show my image from videossettings on all 8 windows. I figured I could add in 8 different controls with specific images for each, but I don't think I have the <visible> correct right now.

my xml
http://pastebin.com/m27949ad


Any help with what I should be putting inside <visible> to fix the image issue would be a great help!
Reply
#2
instead of
<visible>Control.HasFocus(Videossettings)</visible>
you need
<visible>Window.IsVisible(VideosSettings)</visible>
there us a list of individual window names here
http://wiki.xbmc.org/?title=Window_IDs
Reply
#3
Worked like a charm. I knew it was something simple.

Thanks again for your quick response!
Reply

Logout Mark Read Team Forum Stats Members Help
[HELP!] Adding diffused header images for Jexx X0