Hey Ive made my vst and tried to compile it on xcode but always end up getting these errows how di fix it

Posts
-
When I try to compile on Xcode I Get these errorsposted in General Questions
-
RE: Combobox not syncing Presets properlyposted in Scripting
I don't want the user to see the combobox it's just to have presets stored correctly
-
RE: Combobox not syncing Presets properlyposted in Scripting
@David-Healey If product update means adding new presets to the preset browser than yes, that's what I mean. The code doesn't work

-
Combobox not syncing Presets properlyposted in Scripting
Hey So I use a combobox to load all my samplemaps in my preset browser, but when I add more presets it desyncs the previous presets 2026-05-12 13-52-40.mkv
-
RE: How can I bring a 3rd party font into my HISE Project and apply it to the preset browser and labels and comboboxes?posted in Scripting
@David-Healey I've loaded it but It's not showing up in the font selector

-
RE: How can I bring a 3rd party font into my HISE Project and apply it to the preset browser and labels and comboboxes?posted in Scripting
@David-Healey Where because it isn't built into the HISE official standalone
-
RE: How can I bring a 3rd party font into my HISE Project and apply it to the preset browser and labels and comboboxes?posted in Scripting
@David-Healey So using Engine.loadFontAs() work if I put it in the script box on everything I set to the Default font name?
-
How can I bring a 3rd party font into my HISE Project and apply it to the preset browser and labels and comboboxes?posted in Scripting
I want to have a font that I had downloaded online and I want to put it in the preset browser, hise labels, and my combo boxes
-
RE: How to add Images to Preset Bank?posted in General Questions
@David-Healey Nope, didn't work I tried this as well and it didnt work
const var laf = Engine.createGlobalScriptLookAndFeel();
const var myImage = Image.load("{PROJECT_FOLDER}Images/BASSLBL.png");
laf.registerFunction("drawPresetBrowserListItem", function(g, obj)
{
if (obj.text == "Bass")
{
g.drawImage("BASSLBL.png",
[0, 0, 50, 50],
0, 0);
}
}); -
RE: How to add Images to Preset Bank?posted in General Questions
@duma if (columnIndex == targetColumn
&& itemText == "MyPreset")
{
g.drawImage(myImage, ...);
} -
RE: How to add Images to Preset Bank?posted in General Questions
@David-Healey would this be correct? ```if (columnIndex == targetColumn
&& itemText == "MyPreset")
{
g.drawImage(myImage, ...);
} -
RE: How to add Images to Preset Bank?posted in General Questions
@David-Healey What command must I use??
-
RE: How to add Images to Preset Bank?posted in General Questions
@David-Healey I don't have the money for a patreon how else can I do it??
-
How to add Images to Preset Bank?posted in General Questions
Re: preset browser expansion column images
So I watched Davids video on expansion column Images but I want to learn how I can add images to my Preset Browser where all the Categories. Would I need to do the same thing as David did for the expansion column images??
-
RE: I keep getting this error when I try to compile my plugin, how do I fix it?posted in General Questions
@David-Healey no but what file am i supposed to open that is the file i can use to convert the vst in vs2026
-
RE: I keep getting this error when I try to compile my plugin, how do I fix it?posted in General Questions
@David-Healey Yes how do I compile the vst in visual studio
