Example
| by: | Sebastian Beutel, March 2025 |
|---|---|
| published: | here |
| description: | Create an autoload on the selected cuelist cue, pointing to a specific cuelist, with 'Press Go on Target' |
| remarks: | idea by Pontus Wallin in Facebook |
It seems that currently (Titan 17/Titan 18) Autoloads with Go on Target release the target if not used in subsequent cues. This has been reported and will be fixed. Consider recording and using a macro instead (connect to other cuelist and hit Go, or press the other cuelist's go button).
<?xml version="1.0" encoding="utf-8"?> <avolites.macros> <macro id="Wiki.Macros.SetAutoload.CL2Go" name="Set Autoload to CL2 Go"> <sequence> <step>Playbacks.Editor.SelectCueFromViewing()</step> <step>Playbacks.Editor.Autoload.SetPlaybackAutoload("cueListHandleUN=2", 2, 0)</step> <step>Menu.ExitRootOrLatched()</step> </sequence> </macro> </avolites.macros>
This explains the functional steps within the sequence. For all the other XML details please refer to Formats and syntax
Playbacks.Editor.SelectCueFromViewing() defines the currently selected cue to be worked onPlaybacks.Editor.Autoload.SetPlaybackAutoload(“cueListHandleUN=2”, 2, 0) sets the Autolod to point to Cuelist UN 2 with “Go” as Autoload type (set by the number 2)Menu.ExitRootOrLatched() exits the Set Autoload menu