This script processor has a network that consumes the parameters
-
iam working on a plugin, and when ever i compile, this gives an error that script processor has a network that consumes the parameter, last night it was fine the scrip compiled well, and the buttons interface was working fine until this morning, this error came again. does this error come after a value mismatch in knob data???
for (i = 0; i < 5; i++)
{
buttons[i] = Content.getComponent("Button" + i);
panels[i] = Content.getComponent("Panel" + i);
buttons[i].setControlCallback(onButtonControl); // this line give an error now.
}
inline function onButtonControl(component, value)
{
local idx = buttons.indexOf(component);
if(!value)
return;
currentComp = idx;
ScriptFX.setAttribute(0, idx / 4);
updateUI();
} -
@Jeetender best way to get help with this sort of thing is to post a snippet
-
@Jeetender This issue comes up every now and again, check here.