addToMacroControl instead of frontend macros
-
Is there anyway to use addToMacroControl with Macro Modulation Sources of frontend macros? I essentially want to assign the macros using buttons - not the frontend controls, but I can't seem to get it to work. Here's what I've tried:
const var Button2 = Content.getComponent("Button2"); const var slider1 = Content.getComponent("slider1"); inline function onButton2Control(component, value) { if(value == 1) { slider1.addToMacroControl(0); } }; Content.getComponent("Button2").setControlCallback(onButton2Control);
-
anyone? :)