Hey guys,
Hope you are doing well.
In the "Group Insert FX" I am using a filter which controls the modulator for the AHDSR.
However I have 6 different groups and I would like to affect them all using a loop of course.
The code I am using doesn't do nothing when the loop is included. By removing the loop the script works fine for targeted group only...
on ui_control ($FilterAttack)
$group_counter:=1
while($group_counter < $ALL_GROUPS)
set_engine_par($ENGINE_PAR_ATTACK, $FilterAttack,$group_counter,1,-1)
set_control_par_str(get_ui_id($FilterAttack_label),$CONTROL_PAR_TEXT, get_engine_par_disp($ENGINE_PAR_ATTACK,$group_counter,1,-1)& " Ms")
inc($group_counter)
end while
end on