Summary description for EffectQueue
to run the effect
EffectQueue takes an arbitrary amount of effects that will be fired "one at a time".
With EffectQueue you can easily create animations with storylines and other similar interactive experiences.
1:
2:
3: <p><gaia:Button ID="zButtonFire" runat="server" Text="Click here" OnClick="zButtonFire_Click" />
4: to run the effect</p>
5:
6: <gaia:Window
7: ID="zWindow"
8: Caption="EffectQueue"
9: runat="server"
10: Minimizable="false"
11: Maximizable="false"
12: Draggable="true"
13: Closable="false"
14: OpacityWhenMoved="1"
15: Resizable="false"
16: CenterInForm="true"
17: Width="480"
18: Visible="true"
19: Height="200"
20: >
21: <h1>Create Queues of Effects</h1>
22: <p>EffectQueue takes an arbitrary amount of effects that will be fired
23: "one at a time".</p><br />
24: <gaia:LinkButton
25: ID="zFireEffect"
26: runat="server"
27: Text="Click here to run the effect"
28: OnClick="zFireEffect_Click" />
29:
30: <p>
31: With EffectQueue you can easily create animations with storylines and
32: other similar interactive experiences.
33: </p>
34:
35: </gaia:Window>
36:
37: