1 Button + 2 sampleMaps
-
Hey Gang,
I've got an orchestral instrument Im working on. I'd like a button to load Single Instrument vs Ensemble Instrument.
For example...
I have a Violin. I'd like a button that, when clicked on, loads a samplemap containing the Violin Ensemble. When the button is clicked off, it loads the Single Violin samplemap. This will go on for each instrument.
Im positive I am overlooking something easy. Anybody able to help?
-
in your button call back...
if(value) { mySampler.loadSampleMap( "SingleViolin"); }else{ mySampler.loadSampleMap( "ViolinEnsemble"); }
-
@Lindon I forgot the ELSE function. Forehead slap...
Thanks.