Example ====== Set Autoload to Go on Target on a specific list ====== ^ 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 [[https://www.facebook.com/groups/1811437589141428/posts/4021046281513870|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).** {{tag>Cuelist Autoload GoOnTarget}} ==== functions ==== * [[:macros:function:Playbacks.Editor.SelectCueFromViewing]] * [[:macros:function:Playbacks.Editor.Autoload.SetPlaybackAutoload]] * [[:macros:function:Menu.ExitRootOrLatched]] ===== Code ===== Playbacks.Editor.SelectCueFromViewing() Playbacks.Editor.Autoload.SetPlaybackAutoload("cueListHandleUN=2", 2, 0) Menu.ExitRootOrLatched() ===== Explanation ===== This explains the functional steps within the sequence. For all the other XML details please refer to [[:macros:formats_and_syntax#xml_format|Formats and syntax]] * ''Playbacks.Editor.SelectCueFromViewing()'' defines the currently selected cue to be worked on * ''Playbacks.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 ===== How to use it ===== - create some macros with the cuelist usernumbers which you want to point to - [[:macros:deploying|make the macros available]] - when you want to create an Autoload, simply click in the Autoload cell of the cue and fire a macro ~~DISCUSSION~~