Matt, if you need a next take item to start just after the current one goes off then organize the items into a Sequencer's group and run it in the Timed (Per Item) mode, - as Vincent advises. Just make sure your scene's duration is what you'd like, that is as long as from the beginning till the last animation controller's last frame (not necessarily key frame).
Also, you may want to get some fun from using RossTalk(TM) protocol.
- Place Offline Event wherever you want in Scene Director.
- Check if your system has .NET Framework installed.
- Configure XPression to receive Smart-GPI commands:
- Go to Hardware Setup menu --> GPI Boards tab
- Press Add, and choose Smart GPI
- Set TCP mode
Insert the following script for onOffline event:
dim msg as String
msg = "NEXT" + ControlChars.CrLf
Dim tcpClient As New System.Net.Sockets.TcpClient()
tcpClient.Connect("127.0.0.1", 7788)
Dim networkStream As System.Net.Sockets.NetworkStream = tcpClient.GetStream()
If networkStream.CanWrite And networkStream.CanRead Then
Dim sw As System.IO.StreamWriter
Try
sw = New System.IO.StreamWriter(networkStream)
sw.Write(msg)
sw.Flush()
Catch ex As System.Exception
End Try
End If
tcpClient.Close()
Enjoy :)
#XPression