Noob just trying to change a parameters range.
Hey everyone,
I'm just trying to change the sync rate range of the LFO device from the Max4Live essentials pack. At the moment it goes between 1/48 and 16 bars, but I'd like to extend that 16 to 1024. I've gone into the patch, and have changed the 'rate' knob's parameter range in the inspector, but it doesn't seem to be as simple as that.
Does anybody know how I should go about doing this?
Cheers,
Adam
Hi ADAMIM,
changing the Enum/Range is the correct first step. but if you look what's happening further down the patch you'll see that the index send from the [live.dial] is send into a [coll] object inside the subpatcher [p sync] called [coll bbu]. It is there where the index gets translated into a Bars/Beats/Units value to which the [phasor] will be locked to.
What you have to do is to open the text editor of [coll bbu] and add the values you want to use. I.e:
17, "32 0 0";
18, "64 0 0";
19, "128 0 0";
...
and click save when closing the coll-text-editor.
That should do the trick.
Cheers,
Jan
Perfect! Thank you!