hi i wrote a another post but i think i figured out what i want to do like i said im new to this changing stuff but what i want to do is create a pad effect that im able to change the effect if i want to with the effect_select but when i push the pad it to do the effect i pick vs it keep going back to to the list
Inviato Sun 27 Oct 19 @ 5:40 pm
Not entirely sure I understood what you meant .. but perhaps effect_select +1
And shift + pad : effect_select -1
That way you can "scroll" effect (up/down... )
And shift + pad : effect_select -1
That way you can "scroll" effect (up/down... )
Inviato Sun 27 Oct 19 @ 6:03 pm
I think he wants one pad to select the effect and to turn it on/off.
Inviato Sun 27 Oct 19 @ 6:37 pm
yes there are strange effects with effect_select and default/inherent parameters in scripts as effect_select need no parameter at all to open popup
you can create both pad and padshift named `get_effect_name`
with the script for pad :
get_effect_name & param_equal "" ? effect_select : effect_active
and the script for shift + pad
effect_select
this way, pad with no name will open selector
pad with effect selected will activate/desactivate the effect
right click or shift pad will open selector
note : asis the script is related to slot 1 and similar to the one slot effect select
you can create both pad and padshift named `get_effect_name`
with the script for pad :
get_effect_name & param_equal "" ? effect_select : effect_active
and the script for shift + pad
effect_select
this way, pad with no name will open selector
pad with effect selected will activate/desactivate the effect
right click or shift pad will open selector
note : asis the script is related to slot 1 and similar to the one slot effect select
Inviato Mon 28 Oct 19 @ 4:33 am
yes that is what i was trying to get at lol i want basically a to replace the pad fx with my own and change them when i want sorry for not clearly explaning my self i will try out that code thank
Inviato Mon 28 Oct 19 @ 5:18 pm
there just one problem i did it but it only changes the 1st one i wanted to map out all 8 like that and also kindly if anymore help is there away to get it to show the current effect at the time and changes the name when i change the effect
Inviato Mon 28 Oct 19 @ 5:53 pm