Page 1 of 1

trouble with my store/recall.

Posted: 30 Apr 2012 14:32
by lewisedwards
hi folks,

just in the smack bang middle of getting my lemur template done for my up coming festival gigs this year [45 days left from the first, oooh, but whos counting ;)], and have a question to have help on.

with my template im doing store and recall for nearly each effect. more so the ones with have a few controls on, just to save time.
originally these had multislider and split the midi. but prefer to use separate multisliders so i can have bipolar etc. but on doing this it knocks out my store recall methods and cant think of a way around this.
i used the tutorial from the jazzmutant website. then changed the things i needed.

but just need some help with it. the template is provided.

cheers

Re: trouble with my store/recall.

Posted: 08 May 2012 11:02
by lewisedwards
anyone?

Re: trouble with my store/recall.

Posted: 08 May 2012 15:44
by Macciza
Hi
I think you buggered up how it steps through the presets vector
try this in your recall action function - you had it all wrong . . .
decl i;
for (i=0; i<9; i++)
{
mode.x = presets[index*9+i];
coarse.x = presets[index*9+i];
cutoff.x = presets[index*9+i];
dmix.x = presets[index*9+i];
colour.x = presets[index*9+i];
amnt.x = presets[index*9+i];
hmix.x = presets[index*9+i];
ratio.x = presets[index*9+i];
fback.x = presets[index*9+i];
}

cheers
MM

Re: trouble with my store/recall.

Posted: 08 May 2012 15:52
by lewisedwards
super sexy. thats awesome. many thanks for this.