Hello,
Since your Newsticker system is using the CII Gateway we can use CII Scripts to trigger the scene director of the scene that is online.
dim scene1 as xpScene
dim anim as xpSceneDirector
dim output as xpOutputFramebuffer
Engine.GetOutputFramebuffer(0, output)
output.getSceneOnLayer(0, scene1)
scene1.getSceneDirectorByName("SceneDirector1", anim)
anim.playrange(0, 200)
This script should be copied to this location:
XPression > Edit > Scripting > CII > OnPageRead
(This script will trigger the scene director of the scene on XPression output 1 - layer 0 whenever a CII Page Read command is received)
There are two variables you may want to change in the script:
Engine.GetOutputFramebuffer(
0, output)
- The 0 in the brackets refers to which output the engine will look for the online scene (0 = output #1, 1 = output #2)
output.getSceneOnLayer(
0, scene1)
- The 0 in the brackets refers to the layer of the output the engine will look for the online scene (0 refers to layer zero, 1 refers to layer one, etc..)
Note that this script is only tested to work on systems running XPression 5.15 build 2561 and higher.
#XPression