FL right click on parameter - show automation

Hi,
I’m reviving this thread.

Has anyone else found a solution to this? I have had multiple users ask me to implement this in my plugin, but am unsure of any interface that allows me to expose the parameter to FL.

Would love any help :slight_smile:

cheers

afaik its not supported with JUCE, you could create your own fork but it would not be worth the effort for me personally

Take a look at AudioProcessorEditor::getHostContext(). This may return a pointer to a host context object.

If the host context is valid, AudioProcessorEditorHostContext::getContextMenuForParameter() can be used to retrieve the host context menu for a given parameter. You can then either show the native menu, or get a JUCE PopupMenu that contains equivalent items.

At the moment, this functionality is only supported in VST3 plugins.

5 Likes