For some reason i adjust my Echo settings to where i want them on the lowpass, highpass, beat and strength and randomly they just reset to the default settings. I'm saying randomly because i can't figure out why they would reset even tho i know i use multiple controllers - which could be the cause. 1 controller i had seem to trigger 'Mute Source' randomly as well and i mean after during a set after i have already made adjustments.
I don't know if other effects are affected in the same way cause i don't dable in other effects as much, but please add a feature to lock the settings made to the effects.
I don't know if other effects are affected in the same way cause i don't dable in other effects as much, but please add a feature to lock the settings made to the effects.
Inviato Fri 04 Oct 24 @ 8:39 pm
Shabba Khe wrote :
For some reason i adjust my Echo settings to where i want them on the lowpass, highpass, beat and strength and randomly they just reset to the default settings. I'm saying randomly because i can't figure out why they would reset even tho i know i use multiple controllers - which could be the cause. 1 controller i had seem to trigger 'Mute Source' randomly as well and i mean after during a set after i have already made adjustments.
I don't know if other effects are affected in the same way cause i don't dable in other effects as much, but please add a feature to lock the settings made to the effects.
I don't know if other effects are affected in the same way cause i don't dable in other effects as much, but please add a feature to lock the settings made to the effects.
(Update) Throwing out an observation that it's possible that changing between skins may be causing this as i played with 1 skin last night and it was good, but switched this morning to the default and it reset the effect again.
Inviato Sun 06 Oct 24 @ 8:49 pm
The visibility of the "Racks"/Panels in the default Performance skin is based on variables that get reset across sessions.
If you need to keep the selected Racks on skin loading, you need to edit the Performance.xml of the default skin and replace all $singlerack , $rack, $mix_rack, $fx_rack and $video_rack with @$singlerack , @$rack, @$mix_rack, @$fx_rack and @$video_rack , so add a @ before their names.
The @ declares that these variables are persistent, and saved in Settings for next session.
There is no other way other than editing the skin xml
If you need to keep the selected Racks on skin loading, you need to edit the Performance.xml of the default skin and replace all $singlerack , $rack, $mix_rack, $fx_rack and $video_rack with @$singlerack , @$rack, @$mix_rack, @$fx_rack and @$video_rack , so add a @ before their names.
The @ declares that these variables are persistent, and saved in Settings for next session.
There is no other way other than editing the skin xml
Inviato Mon 07 Oct 24 @ 2:33 pm
you could add to your keyboard oninit mapping to avoid delving into the skin xml
Also I use oninit to set up my effect on slots and effect beats for my commonly used effects
... & ( var $fx_rack 0 ? wait 1000ms & set $fx_rack 1 & load_skin : ) & ...
Also I use oninit to set up my effect on slots and effect beats for my commonly used effects
Inviato Mon 07 Oct 24 @ 2:40 pm
djdad wrote :
The visibility of the "Racks"/Panels in the default Performance skin is based on variables that get reset across sessions.
If you need to keep the selected Racks on skin loading, you need to edit the Performance.xml of the default skin and replace all $singlerack , $rack, $mix_rack, $fx_rack and $video_rack with @$singlerack , @$rack, @$mix_rack, @$fx_rack and @$video_rack , so add a @ before their names.
The @ declares that these variables are persistent, and saved in Settings for next session.
There is no other way other than editing the skin xml
If you need to keep the selected Racks on skin loading, you need to edit the Performance.xml of the default skin and replace all $singlerack , $rack, $mix_rack, $fx_rack and $video_rack with @$singlerack , @$rack, @$mix_rack, @$fx_rack and @$video_rack , so add a @ before their names.
The @ declares that these variables are persistent, and saved in Settings for next session.
There is no other way other than editing the skin xml
Thanks for this info at least it let me know that it's possible, but i'm not that tech savy to pull this off. I may try it when i get some time.
Inviato Thu 10 Oct 24 @ 11:43 pm