afraid it would be quite some time before i would get a chance to work on the MLR script again - just too many projects waiting, including more teletype grid studies…
looking at the old MLR script i posted here it should be pretty straightforward to modify it to have independent clock for each track if you are willing to clock it externally. metro script just triggers script 1, which then loops through advancing each track:
#1
L 0 3: A I; SCRIPT 3
and looks like scripts 5, 6, 7 are not used (if i’m looking at the right version). so what you could do instead is use external triggers into inputs 1, 5, 6, 7 and modify the scripts as follows:
#1
A 0; SCRIPT 3
#5
A 1; SCRIPT 3
#6
A 2; SCRIPT 3
#7
A 3; SCRIPT 3
you could also refactor it so you can use trigger inputs 1-4, you’ll have to move scripts 2-4 to 5-7 and update all the script references.
could also probably refactor it to still use the internal clock. and if you just want independent divisions of the main clock do something like:
#1
EVERY 1: A 0; SCRIPT 3
EVERY 4: A 1; SCRIPT 3
EVERY 7: A 2; SCRIPT 3
EVERY 13: A 3; SCRIPT 3