Hallo.
Ich will den genialen Alarm Code von reazorFX aus dem Musik OSD Threat auch verwenden. Da gibt es ja einige Einsatzmöglichkeiten z.b. Kann man, wenn man den Partymode nutzt und erstmal in der Playlist landet, einen Alarm einbauen, der nach 10sec nix tun in den Fullscreen wechselt. Das geht ja relativ "einfach", aber wenn man das auf ein include mit einem Image (ohne <window id="">) beziehen möchte, dann geht das nicht.
Erläuterung:
Ich habe mir in den Homescreen eine Image gelegt, welches ein Bild anzeigt, was auf dem Server liegt. Wenn der Server nicht an ist, hab ich ein fallback und weiß der Server ist aus.
Nun möchte ich aber eine automatische Aktualisierung dieses Image haben. Wenn ich den alarm auf den ganzen Homescreen lege, geht das, da es ja ein <window> Tag ist. Ich möchte aber nicht den ganzen Homescreen aktualisieren lassen.
Wie stelle ich das beim meinem Image an?
Danke!
Gruß
bg
Edit:
hier noch der code aus meine NasStaus.xml
<includes>
<include name="HomeNasStatus" id="1160">
<control type="group">
<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="120,0" delay="0" time="300" condition="!Control.IsVisible(1163)">conditional</animation>
<animation effect="slide" start="0,0" end="550,0" delay="0" time="300">WindowClose</animation>
<animation effect="slide" start="550,0" end="0,0" delay="600" time="300">WindowOpen</animation>
<control type="image">
<description>NAS status background</description>
<include>dialogeffect</include>
<posx>500r</posx>
<posy>0</posy>
<animation effect="slide" start="0,0" end="0,0" delay="0" time="300" condition="Window.IsVisible(MuteBug)">conditional</animation>
<width>220</width>
<height>35</height>
<texture flipx="true" border="32,0,0,0">header.png</texture>
</control>
<control type="image">
<description>NAS status Label</description>
<include>dialogeffect</include>
<posx>482r</posx>
<posy>9</posy>
<animation effect="slide" start="0,0" end="0,0" delay="0" time="300" condition="Window.IsVisible(MuteBug)">conditional</animation>
<texture fallback="ServerOff.png">z:\ServerOn.png</texture>
</control>
<control type="label">
<posx>470r</posx>
<posy>2</posy>
<width>100</width>
<height>28</height>
<font>font12</font>
<animation effect="slide" start="0,0" end="0,0" delay="0" time="300" condition="Window.IsVisible(MuteBug)">conditional</animation>
<label>NAS</label>
</control>
<control type="label">
<posx>530r</posx>
<posy>2</posy>
<width>100</width>
<height>28</height>
<font>font12</font>
<animation effect="slide" start="0,0" end="0,0" delay="0" time="300" condition="Window.IsVisible(MuteBug)">conditional</animation>
<animation effect="fade" delay="700" time="800">WindowOpen</animation>
<textcolor>green</textcolor>
<label>OK</label>
<visible>System.HasNetwork</visible>
</control>
</control>
</include>
</includes>
Alles anzeigen
in der includes.xml steht dann
und in der home.xml
so ist das bildchen in den confluence mod oben rechts neben das Wetter eingebunden (wobei ich den code gerade etwas angepasst habe, da man das Wetter auch ausblenden kann, dann rutscht die NasStatus anzeige nach rechts zur Uhr. die datei liegt aber aufm htpc und nicht an meinem Arbeitsrechner an dem ich gerade sitze )
edit: hab mal den aktuellen code gepostet.