Customize Midi Learn and Macro Panel
-
How to Customize Text and Looks of Midi Learn & Macro Panel ?
-
@dabdab I don't think there are any look and feel functions for the MIDI Learn panel so you'd need to do it through C++.
-
@d-healey OH.. No prob.
Tweaking C++ is easier to me than writing Javascript. I am very bad in Javascripting
-
The strings for the right click menu popup are
"drawPopupMenuBackground"
and"drawPopupMenuItem"
eg:
laf.registerFunction("drawPopupMenuBackground", function(g, obj) { g.setColour(0xFF222222); g.fillRoundedRectangle([0, 0, obj.width, obj.height], 4.0); g.setColour(Colours.lightgrey); g.drawRoundedRectangle([0, 0, obj.width, obj.height], 4.0, 1); });
-
@iamlamprey said in Customize Midi Learn and Macro Panel:
laf.registerFunction("drawPopupMenuBackground", function(g, obj)
{
g.setColour(0xFF222222);
g.fillRoundedRectangle([0, 0, obj.width, obj.height], 4.0);g.setColour(Colours.lightgrey); g.drawRoundedRectangle([0, 0, obj.width, obj.height], 4.0, 1);
});
Yup I know. But I want to change Min Max Slider Type, and Menu names (Source,parameters etc) & Button.
-
@dabdab Ah sorry I misunderstood, I think David's right there
-
@iamlamprey said in Customize Midi Learn and Macro Panel:
@dabdab Ah sorry I misunderstood, I think @d-healey right there
Thank you @Tania-Ghosh for helping me to modify the C++