Hi,
I have a scene with some textobjects:
dim Engine as new xpEngine
dim Scene as xpScene
Dim TextObj As xpTextObject
Engine.LoadProject("c:demo.xpf")
Engine.GetSceneByName("scene1", Scene)
Scene.GetObjectByName "textdata1",TextObj)
TextObj.Text="Hi there"
Scene.SetOnline 0, 0
'do some delay (eg 5 sec)
Delay(5000)
'now change the textobject
Scene.GetObjectByName "textdata1",TextObj)
TextObj.Text="Some data"
This is work, but i need to apply some transition (fade) when change the content of textobject.
How can I use transition when the scene is already online?
Thanks in advance
Elias