Hi Leute,
Ich habe irgenwie eine Blockade ?!! Ich möchte wenn ich eine Ansich wechsel eine Animation starten.
Also wenn ich mit
oder
die Ansicht veränder, soll diese starten.
Jetzt dacht ich mir ich löse das in MyVideoNav.xml so:
PHP
<control type="image">
<visible>Control.IsVisible(50)</visible>
<width>1920</width>
<height>1080</height>
<texture background="true">background.png</texture>
<animation time="500" effect="fade" start="100" end="0" tween="cubic" easing="in">WindowOpen</animation>
<animation time="100" effect="fade" start="0" end="0" tween="cubic" easing="in">WindowClose</animation>
<animation time="500" effect="fade" start="100" end="0" tween="cubic" easing="in">Visible</animation>
<animation time="100" effect="fade" start="0" end="0" tween="cubic" easing="in">Hidden</animation>
</control>
<control type="image">
<visible>Control.IsVisible(51)</visible>
<width>1920</width>
<height>1080</height>
<texture background="true">background.png</texture>
<animation time="500" effect="fade" start="100" end="0" tween="cubic" easing="in">WindowOpen</animation>
<animation time="100" effect="fade" start="0" end="0" tween="cubic" easing="in">WindowClose</animation>
<animation time="500" effect="fade" start="100" end="0" tween="cubic" easing="in">Visible</animation>
<animation time="100" effect="fade" start="0" end="0" tween="cubic" easing="in">Hidden</animation>
</control>
Alles anzeigen
Dies funktioniert leider aber nicht. Die WindowOpen geschichte geht ganz gut, diese soll starten wenn ich vom Home.xml zu MyVideo.xml wechsel das geht. (Das hat den Hintergrund das man den Aufbau z.B.: bei der Posteransicht nicht sieht, sprich das die Cover net nacheinander eingeblendet werden)
So wenn nun die View gewechselt wird staret die Animation bei der View ID=50 schon aber bei der ID=51 nicht. Komisch oder?