Table of Contents

Example

Cuelist - Jump to specific cue

by: Alex del Bondio, Dec 2019
published: here
description: jump to a specific cue within a cuelist

These macros a just an addition to the factory macro “Go To My Cue 1”.

functions

Code

gotomycue.xml
<?xml version="1.0" encoding="utf-8"?>
<avolites.macros>
 
 
  <macro id="adb.Macros.GotoMyCue50" name="Goto My Cue 50">
    <sequence>
      <step>CueLists.SetNextCue(this,50.0)</step>
      <step>CueLists.Play(this)</step>
    </sequence>
  </macro>
  <macro id="adb.Macros.GotoMyCue100" name="Goto My Cue 100">
    <sequence>
      <step>CueLists.SetNextCue(this,100.0)</step>
      <step>CueLists.Play(this)</step>
    </sequence>
  </macro>
  <macro id="adb.Macros.GotoMyCue200" name="Goto My Cue 200">
    <sequence>
      <step>CueLists.SetNextCue(this,200.0)</step>
      <step>CueLists.Play(this)</step>
    </sequence>
  </macro>
</avolites.macros>

Explanation

This explains the functional steps within the sequence. For all the other XML details please refer to Formats and syntax

How to use it