2012-01-04, 03:02
The date format is correct that way, separator (dash, dot or slash) and order of day, month & year differ depending on your region settings.
`Black Wrote:No they should not give the same results, it's correct on your screenshot.
<region name="Central Europe" locale="DE">
[b]<dateshort>YYYY-MM-DD</dateshort>[/b]
<datelong>DDDD, D MMMM YYYY</datelong>
<time symbolAM="" symbolPM="">H:mm:ss</time>
<tempunit>C</tempunit>
<speedunit>kmh</speedunit>
<timezone>CET</timezone>
</region>
`Black Wrote:Hm what's the error there? Wrong format?
nessus Wrote:@ronie the code that you give me (<visible>SringCompare(Window(Home).Property(NextAi red.Status),foo)</visible>) is not working the way i want except if i am doing something wrong. I want to separate only the "Cancelled/Ended" shows from the "Returning Series", "Final Season" etc. Is that possible ?.this should be all you need then:
<visible>!IsEmpty(Window(Home).Property(NextAired.NextDate))</visible>
ronie Wrote:this should be all you need then:
Code:<visible>!IsEmpty(Window(Home).Property(NextAired.NextDate))</visible>
Cancelled/Ended shows won't have a 'NextDate' so it's easiest just to check for that.
ronie Wrote:yeah, dateshort and datelong should have the same day, month, year order.
imo, it should be changed to:
<dateshort>DD-MM-YYYY</dateshort>
unless i'm missing something...
<control type="group">
<visible>SubString(Window(Home).Property(NextAired.Status),Canceled)</visible>
<!-- Put everything for canceled shows here -->
</control>
<control type="group">
<visible>!SubString(Window(Home).Property(NextAired.Status),Canceled)</visible>
<!-- Put everything for shows which are not canceled here -->
</control>
nessus Wrote:No. Hitchers code is not working too. Actually i have not any results at all.
Any other ideas guys ?
Edit: Sorry if this is stupid question bu to clarify this, the %d stand as it is or do i have to change it with some numbers ?