Hello everone,
I am looking for a way to add a note to a cue via a macro or plugin. But so that the old note is not deleted and the new note is added.
something like that:
local currentNote = Cmd("Note Sequence 6 Cue 1 'get note'") or ""
local newNote = currentNote .. " add note"
Cmd("Note Sequence 6 Cue 1 '" .. newNote .. "'")
Thanks!!