I now have an XBOX I am using in my Car with XBMC. All works fine... However, since I do not have internet in my Car the Date and time are never accurate and are always displayed wrong on the Main menu as a result. Is there a way to turn off displaying Day/Date/Time on the main page?
I am not sure if this is a skin feature but I am using the standard confluence skin that comes with XBMC.
Thanks much for any help.
Remove "Showing Day/Date/Time" - Skin related? - Help Please
-
- Posts: 82
- Joined: Fri Jul 06, 2012 5:43 am
- Has thanked: 10 times
- Been thanked: 1 time
-
- Posts: 82
- Joined: Fri Jul 06, 2012 5:43 am
- Has thanked: 10 times
- Been thanked: 1 time
Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl
Thanks XBS !... I will look at that file and get back to you. 

- nidge
- Posts: 472
- Joined: Fri Jul 27, 2012 8:29 pm
- Location: Norfolk, United Kingdom
- Has thanked: 24 times
- Been thanked: 26 times
- Contact:
Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl
Hmm, a dashboard in the dashboard eh? Would like to see some pics of that 

http://www.theoriginalxboxshoppe.weebly.com
http://www.ebid.net/uk/stores/Computers-and-Consoles
Crystal Xbox v1.4, Xecuter 3, 500gb sata hard disk, 1ghz CPU, 128mb RAM, HD component 720p, blue LED's.
Crystal Xbox v1.4, Xecuter 3, 320gb sata hard disk, stock CPU, 128mb RAM, HD component 720p.
http://www.ebid.net/uk/stores/Computers-and-Consoles
Crystal Xbox v1.4, Xecuter 3, 500gb sata hard disk, 1ghz CPU, 128mb RAM, HD component 720p, blue LED's.
Crystal Xbox v1.4, Xecuter 3, 320gb sata hard disk, stock CPU, 128mb RAM, HD component 720p.
-
- Posts: 82
- Joined: Fri Jul 06, 2012 5:43 am
- Has thanked: 10 times
- Been thanked: 1 time
Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl
</control>
</include>
<include name="Clock">
<control type="label">
<description>low free memory label</description>
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>28</height>
<align>center</align>
<aligny>center</aligny>
<font>font12</font>
<textcolor>FFDD0000</textcolor>
<label>$LOCALIZE[158]: $INFO[System.FreeMemory]</label>
<visible>IntegerGreaterThan(system.memory(used.percent),90)</visible>
</control>
@XBS,
Do I simply delete the following line listed above :
<include name="Clock">
Thanks and sorry for being a newb!
@nidge
I will upload some video and pics soon. I have it running on a standard 7inch double din DVD in dash radio.
</include>
<include name="Clock">
<control type="label">
<description>low free memory label</description>
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>28</height>
<align>center</align>
<aligny>center</aligny>
<font>font12</font>
<textcolor>FFDD0000</textcolor>
<label>$LOCALIZE[158]: $INFO[System.FreeMemory]</label>
<visible>IntegerGreaterThan(system.memory(used.percent),90)</visible>
</control>
@XBS,
Do I simply delete the following line listed above :
<include name="Clock">
Thanks and sorry for being a newb!
@nidge
I will upload some video and pics soon. I have it running on a standard 7inch double din DVD in dash radio.
Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl
Do NOT delet that line or any of the <control> you quoted.
You want The control "group" right below that section . It looks like this.
I would just base it's visibilty on another internet required setting. Such as weather or RSS.
You could tie it to the weather setting by adding this line.
So it would look like this.
Now if you go to settings>skin>home window
You can toggle it on or off with the "show weather info" setting.
You want The control "group" right below that section . It looks like this.
Code: Select all
<control type="group">
<posx>160r</posx>
<posy>0</posy>
<animation effect="slide" start="0,0" end="-60,0" delay="0" time="300" condition="Window.IsVisible(MuteBug)">conditional</animation>
<animation effect="slide" start="0,0" end="210,0" delay="0" time="300" condition="Window.Next(Home) | Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation)">WindowClose</animation>
<animation effect="slide" start="210,0" end="0,0" delay="0" time="300" condition="Window.Previous(Home) | Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation)">WindowOpen</animation>
<control type="image">
<description>time background</description>
<posx>0</posx>
<posy>0</posy>
<width>150</width>
<height>35</height>
<texture flipx="true" border="32,0,0,0">header.png</texture>
</control>
<control type="label">
<description>time label</description>
<posx>30</posx>
<posy>0</posy>
<width>400</width>
<height>28</height>
<align>left</align>
<aligny>center</aligny>
<font>font12</font>
<textcolor>white</textcolor>
<label>$INFO[System.Time]</label>
</control>
</control>
You could tie it to the weather setting by adding this line.
Code: Select all
<visible>!Skin.HasSetting(homepageWeatherinfo)</visible>
So it would look like this.
Code: Select all
<control type="group">
<posx>160r</posx>
<posy>0</posy>
<animation effect="slide" start="0,0" end="-60,0" delay="0" time="300" condition="Window.IsVisible(MuteBug)">conditional</animation>
<animation effect="slide" start="0,0" end="210,0" delay="0" time="300" condition="Window.Next(Home) | Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation)">WindowClose</animation>
<animation effect="slide" start="210,0" end="0,0" delay="0" time="300" condition="Window.Previous(Home) | Window.IsVisible(FullscreenVideo) | Window.IsVisible(Visualisation)">WindowOpen</animation>
<visible>!Skin.HasSetting(homepageWeatherinfo)</visible>
<control type="image">
<description>time background</description>
<posx>0</posx>
<posy>0</posy>
<width>150</width>
<height>35</height>
<texture flipx="true" border="32,0,0,0">header.png</texture>
</control>
<control type="label">
<description>time label</description>
<posx>30</posx>
<posy>0</posy>
<width>400</width>
<height>28</height>
<align>left</align>
<aligny>center</aligny>
<font>font12</font>
<textcolor>white</textcolor>
<label>$INFO[System.Time]</label>
</control>
</control>
You can toggle it on or off with the "show weather info" setting.
-
- Posts: 82
- Joined: Fri Jul 06, 2012 5:43 am
- Has thanked: 10 times
- Been thanked: 1 time
Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl
Spongy...
Thank You
I really appreciate the help and the detailed explanation of why and how it works!
I will give this a go.
Thank You

I will give this a go.