I am trying to get the animation of one scene to play out as I take a new scene. For example, I take a bug then I want that bug to move over when I take a lower third. Likewise I want to take a lower third then play the exit animation of that lower third as the intro animation of a new one plays. I am told this is achieved through scripting. Here is my sample script:
**This is all under the OnSceneOnline Scripting window**
dim Controller as xpAnimController
dim oFrameBuffer, sFrameBuffer as Integer
dim oLayer, sLayer as Integer
OnlineScene.GetOnline (oFrameBuffer, oLayer)
Self.GetOnline (sFrameBuffer, sLayer)
if (OnlineScene.Name="TB_NewTxt_NewHeader") and (oFrameBuffer = sFrameBuffer) then
if Self.GetAnimControllerByName("3Headers1", controller) then Controller.PlayRange (40,80)
end if
Now I'm not sure if I have errors in my code or if I'm going about it wrong. The above text is located in the scene "TB_NewTxt_NewHeader" and the scene I want it to effect as I take it is "3_Headers_1"
The only script currently in 3_Headers1 is in the OnScene scripting window and it is: Self.SceneDirector.PlayRange(0,40)
Can anyone help me here?