Table of Contents

Example

Playback - Record and set userNumber

by: question by Sebastian Beutel, solution: Gregory Haynes, June 2018
published: http://forum.avolites.com/viewtopic.php?f=20&t=5783
description: records a playback with a fixed userNumber

Snippet only, just for documentation.

functions

affected properties

Code

<step>Playbacks.StoreCue("PlaybackWindow", 1000, false)</step>
<step>Handles.SetSourceHandle("PlaybackWindow", 1000)</step>
<step>ActionScript.SetProperty("Handles.CurrentUserNumber", userNumber:10000)</step>
<step>Handles.SetUserNumber()</step>
<step>Handles.ClearSelection()</step>

Explanation

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

This stores a playback and sets its usernumber. As mentioned in the forum this isn't possible in one go - hence, at first the playback is stored to a specific loaction, and then the handle in this location is set to a particular usernumber.

How to use it

Snippet only - to be used in a larger context.