How should I save my Sampler Presets and how can I access them later?
-
@d-healey can you give me an example for this case?
-
@treynterrio If you have a variable called sampler1 then trying to use Sampler1 somewhere else won't work because you don't have a variable called Sampler1.
-
@d-healey that means I've to paste the inline function of the combobox to the inline function of the Sampler1 that I'm already using?
-
@treynterrio I don't know what you mean.
-
@d-healey Since I have already used sample1 it doesn't work properly? So do I have to add the part to my existing Sampler1 function?
-
@treynterrio I think you are misunderstanding.
You have a variable called
sampler1
.You are trying to reference it with
Sampler1.asSampler()
. That won't work because you have spelt it differently. You need to spell it the same way,sampler1.asSampler()
. Or you need to change the name of your variable toSampler1
. -
@d-healey Ok this line was the problem ```
code_textconst var Sampler1 = Synth.getChildSynth("Sampler1");
-
This post is deleted!