arp reset on certain arp notes?
-
Is it possible to have the arp reset button trigger when the arp hits certain notes?
-
@BWSounds
You can use theArp.getAttribute(Arp.CurrentValue) & Arp.getAttribute(Arp.NumStepSlider);in combination to set some conditions.
Get a reference to the Arp as "sliderPackProcessor"
const var ArpSP = Synth.getSliderPackProcessor("Arp");Create a reference to one of the slider pack indexes

const SPData = ArpSP.getSliderPack(0);Check the conditions in the DisplayCallback from
SPData.setDisplayCallback(function()... -
@ulrik
Awesome!