Hi i use this pad xml for stems Fx . How i can make blink led when pad function is active ? thankss
<?xml version="1.0" encoding="UTF-8"?>
<page name="Stems Pad Fx">
<pad1 name="`var 'stemsfx' ? get_text "Voc Echo 1" : get_text "Voc Cut 1/4bt"`" color="color 'yellow'">var 'stemsfx' ? padfx "echo" 50% 1bt "stemfx:vocal" : padfx "Cut" 100% 0.25bt "stemfx:vocal""
</pad1>
<pad2 name="`var 'stemsfx' ? get_text "Intr Echo Out 1bt" : get_text "Voc Cut 1/2bt"`" color="color '#53DFA7'">var 'stemsfx' ? padfx "echo out" 40% 1bt "stemfx:MeloRhythm" : padfx "Cut" 100% 0.5bt "stemfx:vocal""</pad2>
<pad5 name="Voc Reverb" color="color '#53DFA7'">padfx "reverb" 40% 70% "stemfx:vocal" :</pad5>
<pad4 name="Instr Braker" color="color "RED"">toggle "brakestems" & slip_mode on & padfx_single 'brakestart' 25% 'stemfx:meloRhythm' & wait 1bt & slip_mode off</pad4>
<pad3 name="Voc Cut 1bt" color="color '#53DFA7'">padfx "Cut" 100% 1bt "stemfx:vocal""</pad3>
<pad8 name="Instru Echo 1bt" color="color 'red'">padfx "echo out" 50% 1bt "stemfx:melorhythm"</pad8>
<pad7 name="Vocal Breaker" color="color 'blue'">toggle "brakestems1" & slip_mode on & padfx_single 'brakestart' 20% 'stemfx:vocal' & wait 1bt & slip_mode off</pad7>
<pad6 name="Echo Melody 1bt" color="color 'RED'">padfx "echo out" 50% 1bt "stemfx:Melody"</pad6>
<param1 />
<param2 />
<shift_pad1 name="EFFECT OFF">effect_stems "vocal" off</shift_pad1>
<shift_pad3 name="Flan" color="color 'green'">down ? on & set 'VoxFXcount' `var 'VoxFXcount' ? get_var "VoxFXcount" & param_add 1 : get_text '1' & param_cast val` & effect_stems 'vocal' on & padfx 'flanger' 0.5 0.65 0.7 0.5 & padfx 'phaser' 0.5 0.65 0.75 0.5 0.5 : off & effect_active 'phaser' off & effect_active 'flanger' off & get_var "VoxFXcount" & param_equal 1 ? effect_stems 'vocal' off & set 'VoxFXcount' `get_var "VoxFXcount" & param_add -1` : set 'VoxFXcount' `get_var "VoxFXcount" & param_add -1`</shift_pad3>
<shift_pad7 />
<shift_pad2 />
<menu>Stem Creator Tool =[Open_stem_creator]</menu>
</page>
Posted Wed 03 Apr 24 @ 1:39 pm
Normally the "led" of the Pad follows the true/false of the action=", but in your case you can add query="" in your xml
E.g.
E.g.
<pad5 name="Voc Reverb" color="color '#53DFA7'" query="padfx "reverb" 40% 70% "stemfx:vocal" ? blink : off">padfx "reverb" 40% 70% "stemfx:vocal" </pad5>
Posted Wed 03 Apr 24 @ 2:07 pm
thanks!! works ok.
Posted Wed 03 Apr 24 @ 7:04 pm
djdad wrote :
Normally the "led" of the Pad follows the true/false of the action=", but in your case you can add query="" in your xml
E.g.
E.g.
<pad5 name="Voc Reverb" color="color '#53DFA7'" query="padfx "reverb" 40% 70% "stemfx:vocal" ? blink : off">padfx "reverb" 40% 70% "stemfx:vocal" </pad5>
is possible blink action in another color? thanks
Posted Thu 04 Apr 24 @ 3:34 pm
J@vierC wrote :
is possible blink action in another color? thanks
my controller is a denon Prime Go and blink is red and barely visible.
djdad wrote :
Normally the "led" of the Pad follows the true/false of the action=", but in your case you can add query="" in your xml
E.g.
E.g.
<pad5 name="Voc Reverb" color="color '#53DFA7'" query="padfx "reverb" 40% 70% "stemfx:vocal" ? blink : off">padfx "reverb" 40% 70% "stemfx:vocal" </pad5>
is possible blink action in another color? thanks
my controller is a denon Prime Go and blink is red and barely visible.
Posted Fri 05 Apr 24 @ 10:59 am
Yes, you can have any color you want. You define colors in color="" and you blink or turn on/off in query=""
So , as an example,
color="play ? color 'green' : color 'red'" and query="play ? on : blink"
Will be red solid when playing and blink green when not.
So , as an example,
color="play ? color 'green' : color 'red'" and query="play ? on : blink"
Will be red solid when playing and blink green when not.
Posted Fri 05 Apr 24 @ 1:54 pm
sorry i dont understand.... i like when action of the pad is not active lite in red and when press the pad and the action assigned is active blink in another color , green .
<pad6 name="Echo Melody 1bt" color="color 'blue'" query="padfx "echo out" 50% 1bt "stemfx:Melody" ? blink : off">padfx "echo out" 50% 1bt "stemfx:Melody"</pad6>
Posted Sat 06 Apr 24 @ 9:34 pm
Try ...
<pad6 name="Echo Melody 1bt" color="padfx 'echo out' 50% 1bt 'stemfx:Melody' ? color 'green' : color 'red''" query="padfx 'echo out' 50% 1bt 'stemfx:Melody' ? blink : on">padfx 'echo out' 50% 1bt 'stemfx:Melody'</pad6>
Posted Sun 07 Apr 24 @ 8:06 am
thanks works !!
Posted Mon 08 Apr 24 @ 10:40 am