Well, I don’t want it off, just paused, which that stop sign icon indicates, then you just hit play again and it continues. Plus you can use the insert (stop sign icon) as a visual aid when in auto/live assist and you can drop them at various points in the playlist so you know when you should stop/pause to talk or something. Makes it easy and helpful for 2 things at once.
Yes, but you can’t place multiple stop points in a playlist! As a visual aid! Both those you mention do it, but can only be done one at a time and there is no visual for if it is even there or not! This way, you can place multiple stop points with a visual indicator in the playlist. It makes it SOOO much easier!
Well, I guess wherever you have highlighted a track, or like what happens when you drag a song into the playlist and it makes a highlight line to show you where it will be placed, if you know what I mean? . Same way.
Otherwise at the end of playlist is fine, because then you can always move it to the position you want.
This is what I was afraid of. But impossible, alas, as you cannot access the selected item from within a script (long-time request of mine, but technical reasons impede).
… might be possible, but hey: before you insert an item at the end and bustle around with the mouse to drag it to the desired position, you can easily insert the break via the menu …
Tondose, at the end is good enough, at least it’s something easier. the main point being able to assign in to ta a command to be able to use it on StreamDeck button or even program a cart button on a D&R Airlite
procedure OnExecuteCommand(Command:string);
var
bi: IBreakPlaylistItem;
begin
if Command = 'INSERT BREAK' then
begin
bi := Factory.CreateBreakPlaylistItem;
CurrentPlaylist.BeginUpdate;
try
CurrentPlaylist.Insert(CurrentPlaylist.GetNextIndex, bi);
finally
CurrentPlaylist.EndUpdate;
end;
end;
end;
begin
end.
Copy this into a text file with the extension .mls an install it as a background script. Launching the command INSERT BREAK will then trigger the desired action.
Wow! Cool! I knew you could do it!
Tondose is #1 !!
Thanks!
So just to clarify, when you play this command through a button on the StreamDeck, it does indeed add a Stop Break right after the currently playing song. It does not add it to the bottom or top of the playlist, which is cool!