Page 1 of 1

Replacing a playback on the playback window

Posted: 11 May 2025, 10:33
by daanvg98
Hi,

I am trying to replace a playback on the playbacks window. Right now I use this command line:

<step pause="0.01">Playbacks.StoreCue("PlaybackWindow", 331, false)</step>

But titan says the playback allready in use, which is true. I tried using a different command from this site: https://api.avolites.com/11.0/Playbacks ... ckCue.html but als without succes. Does anyone have a fix for this?

Thanks

Re: Replacing a playback on the playback window

Posted: 12 May 2025, 11:06
by Gregory
Playbacks.ReplacePlaybackCue should be the correct function for what you have described. For example:

Code: Select all

Playbacks.ReplacePlaybackCue(userNumber:1, false)

This seems to do what I would expect, I had two dimmers with the first recorded in the playback, with the only the second dimmer in the programmer calling that replace function removed the first dimmer from the playback and added the second. The second parameter relates to only changing values which are already in the playback so in most cases I would expect false is what would be required. I'm testing in version 18 but I don't expect this has changed much since version 11.

Re: Replacing a playback on the playback window

Posted: 12 May 2025, 14:12
by daanvg98
Thats works great! Thanks!