That’s what I was trying to clarify. The problem is, it seems kind of wasteful to have to create a one line script that just has:
DEL 10: SCRIPT 7
Just so you can insure that there is a delay between the initial trigger and its processing. It’s not uncommon for modules to have issues with the timing between a gate and the change in a CV, and I was seeing them without the delay so figure I need to stall the acquisition of the input CV. Problem is, every other part of the script is dependent on having that input CV so it all needs to be delayed, not just the first command.
I suppose another approach would be to push all the commands in the script on the S stack and then do:
DEL 10: S.ALL
Though that eats up the stack so you pretty much can’t use it for anything else.
Also, does this work and treat the whole line as one “command” that will be delayed in toto?
DEL 10: A IN; B + 1 B
??