Hi!
I made this macro in the following way, but today I discovered a problem.
What is my intention - I would like to do something similar to a setlist, but triggered from a macro.
StaticPlayback1 on a separate page is a Cuelist for subsequent songs (I have duplicated the lower macros _song1..._song25 and only the StaticPlayback page changes)
I have added all Cuelists that are under this button in Playback Groups so that the rest are automatically released.
When I run the macro, the page changes, the Cuelist from StaticPlayback1 is launched, but the effect is as if Release was pressed twice and the devices return to the home position for a moment.
Nothing like this happens when I switch only between playbacks from the group - only when I add Playbacks.ReleasePlayback do such things happen?
Is there a way to fix this - I would like to get rid of the movement to the home position when switching, but in such a way as not to change the Power On/Release state
Code: Select all
<!-- Song 1 macro -->
<macro id="Avolites.Macros.Song1" name="_Song1">
<sequence>
<step>Playbacks.ReleasePlayback("Location=StaticPlaybacks,2",0,true)</step>
<step>Playbacks.ReleasePlayback("Location=StaticPlaybacks,3",0,true)</step>
<step>Playbacks.ReleasePlayback("Location=StaticPlaybacks,7",0,true)</step>
<step>Playbacks.ReleasePlayback("Location=StaticPlaybacks,8",0,true)</step>
<step>Playbacks.ReleasePlayback("Location=StaticPlaybacks,9",0,true)</step>
<step>Handles.StaticPlaybacks.ChangePage(0)</step>
<step>Playbacks.FirePlaybackAtLevel("Location=StaticPlaybacks,1", Math.AbsoluteAdjust(1), true)</step>
</sequence>
</macro>