Function

Playbacks.Editor.CueSelection.SelectAll

Void Playbacks.Editor.CueSelection.SelectAll(Handle handle)
API https://api.avolites.com/15.0/api/Playbacks.Editor.CueSelection.SelectAll.html
description Selects all the cues in the supplied playback.
namespace Playbacks.Editor.CueSelection
parameter handle ( Handle ) : the playback handle.
return value Void
Example in

Playback - Set all playback cues' fade-in time:

<macro id="Wiki.Macros.AllCuesFadeintime3" name="Cue Fade-In Time 3s">
  <sequence>
    <step>ActionScript.SetProperty("Playbacks.Editor.SelectedPlayback", handle:"Location=Playbacks,1,1")</step>
    <step>Playbacks.Editor.CueSelection.SelectAll(handle:"Location=Playbacks,1,1")</step>
    <step>ActionScript.SetProperty("Playbacks.Editor.Times.CueFadeInTime", time:3.0)</step>
  </sequence>
</macro>
Also used in
Remarks