Preset browser open to show presets
-
So far, 100% of the people I have had test my plugin, think at first that there are no presets, because it opens looking like this.
They do not realize they need to click factory presets, then the product name, then they'll see presets.
How do I get the preset browser to open, showing presets, by default?
Here's my code.Content.makeFrontInterface(1000, 818);
//! fltPresetBrowser
const var fltPresetBrowser = Content.getComponent("fltPresetBrowser");//! btnToggleBrowser
const var btnToggleBrowser = Content.getComponent("btnToggleBrowser");
btnToggleBrowser.setControlCallback(onbtnToggleBrowserControl);inline function onbtnToggleBrowserControl(component, value)
{
fltPresetBrowser.set("visible", value);
} -
-
@d-healey
Can you point me to something that tells me what LAF is? -
@d-healey
Look and feel, got it.
I'll figure it out -
In this video I'm talking about "global" look and feel because that's all we had back then, but these days you should use "local" look and feel for most things - I use this in the second video.
I have several more laf videos on my channel and I have a full video on customising the preset browser using laf at my Patreon page
-
@d-healey Thanks