Hi!
I have this script here that that works part of the time and I'm not sure why. Sometimes it kicks over to the reset at the end but most of the time it mutes the way I expect.
I'm trying to make a trigger that mutes track 5, 6, and 7 OR mutes any soloed tracks from 5, 6, and 7 AND deletes 5, 6, and 7 if I hold the button down.
Here is the code below, am I on the right track?
`
Track 5
select
if mode == play
mute
else if mode == mute
endif
Track 6
if mode == play
mute
else if mode == mute
endif
Track 7
if mode == play
mute
else if mode == mute
endif
End
label sustain
if sustainCount = 2
Track 5
reset
Track 6
reset
Track 7
reset
endif
end`