Add Knob as child in Panel Script (Solved)
-
Can anyone show me how to Create Knob in Panel with script please ?
Thank you in advance :) -
@sakorada I'm not in front of my computer for a proper snippet, but you need to do that:
Content.setPropertiesFromJSON( "myKnob", { parentComponent: "myPanel" });
-
@ustk said in Add Knob as child in Panel Script:
Content.setPropertiesFromJSON( "myKnob", {
parentComponent: "myPanel"
});thank you !
Will this work with multiple components or i have to do each one ? -
@sakorada it's for each one
-
@ustk Thank you for help :)