Remove "Showing Day/Date/Time" - Skin related? - Help Please

If you need any help with XBMC4XBOX, such as installing or using the software, please post it in here.
Post Reply
psychotron
Posts: 82
Joined: Fri Jul 06, 2012 5:43 am
Has thanked: 10 times
Been thanked: 1 time

Remove "Showing Day/Date/Time" - Skin related? - Help Please

Post by psychotron »

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.
User avatar
xbs
Posts: 292
Joined: Thu Jul 05, 2012 3:22 pm
Location: Portugal
Has thanked: 29 times
Been thanked: 22 times

Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl

Post by xbs »

Look in the includes.xml and deleted (or comment <!-- -->) the clock includes.
Skins: SLik JX720 MS_Redux Mosaic
Utils: HeXEn
github.com/xbs08/
psychotron
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

Post by psychotron »

Thanks XBS !... I will look at that file and get back to you. :)
User avatar
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

Post by nidge »

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

Post by psychotron »

</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.
User avatar
Spongy
Posts: 97
Joined: Sun Jul 08, 2012 5:11 am
Has thanked: 16 times
Been thanked: 18 times

Re: Remove "Showing Day/Date/Time" - Skin related? - Help Pl

Post by Spongy »

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.

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

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>
Now if you go to settings>skin>home window
You can toggle it on or off with the "show weather info" setting.
psychotron
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

Post by psychotron »

Spongy...

Thank You :) I really appreciate the help and the detailed explanation of why and how it works!

I will give this a go.
Post Reply