Stut notes within scale?

So lets say I have this pattern:

d1 
$ stutWith 5 (1/8) (|+ n 1)
$ n (scale "minor" "0")
# s "supersaw"

How can I make the "stutters" adhere to the the scale?
I tried a bunch of stuff to no avail.

Try putting the stutWith inside the scale like this:

d1 
$ n (scale "minor" $ stutWith 5 (1/8) (|+ 1) "0")
# s "supersaw"
4 Likes

Yes! Thank you

1 Like