![]() |
How to set a FXpreset ON at sampleset load? - Printable Version +- HomSpace Forum (https://homspace.nl/forum) +-- Forum: SamplerBox (https://homspace.nl/forum/forum-1.html) +--- Forum: Community (https://homspace.nl/forum/forum-2.html) +--- Thread: How to set a FXpreset ON at sampleset load? (/thread-167.html) |
How to set a FXpreset ON at sampleset load? - Cementimental - 13-07-25 Hi, I have FXpresets working great if I select them manually via the menu or web interface, but I can't figure out how to make a sample set which loads with the effect already switched on by default. I've tried setting %%fxpreset or %fxpreset - or both - in definition.txt but nothing seems to make the sample set load with the FX preset switched on. e.g. should this work as a definitions file? IsntEcho is the correct name of valid FXpreset in my FXpresets.csv Code: %%mode=keyb Not sure if it's related but I just observed that changing FXpresets in the menu seems a bit oddly behaved too - for example if I choose my echo or long reverb preset, it kind of gets stuck on them - changing to my simple overdrive preset does nothing, changing to 'None' doesn't turn them off, and only choosing 'Default' goes back to no fx. Any help much appreciated thanks!! RE: How to set a FXpreset ON at sampleset load? - hansehv - 13-07-25 Hi Cementimental, You may have discovered a bug ![]() You can try with the fxpreset definition name starting with a an uppercase and rest lowercase: Isntecho in your example or completely lowercase. Plse let me know the result ! Regarding the seemingly odd behaviour. Presets change the values defined in this preset. In other words: they add up = override only the parameters specified in it. If you have an Echo preset and a Modulate preset, loading them subsequently will give you a modulation with echo. If you want a "clean" Modulate after using the echo, you have the option to either:
And if you decide to set another sample set default you face serious work So option 2 seems extra, but will save a lot of headaches in the long run. Presets can be assigned to voices (multiple sounds within one sample set). When switching voices, the voice will adapt to the fxpreset assigned to his sound (according to %fxpreset on his own definition line). If there is no %fxpreset, it will fallback to the default. If you want to keep the current effects values when switching to this voice, you need None. Using fxpreset=default has the same effect as not specifying it (it is already default behaviour). Now what is the default: This is an addup of the box's fxpreset (defined in the configuration directory and has all presets to NO in the distribution) and the values defined in the %%fxpreset. Some notes on your example below
Hope this helps, Hans RE: How to set a FXpreset ON at sampleset load? - Cementimental - 14-07-25 (13-07-25, 21:19)hansehv Wrote: You may have discovered a bug I tried Isntecho (and I edited all the others match that format, case-wise) and yes it works as I expected now, presets load correctly with fxpresets engages. So it does seem there's some bug with CamelCase names. ![]() + thanks for the other info, useful to know. I will edit my settings accordingly ![]() |