@d-healey I am using Content.createLocalLookAndFeel();
Tried your method and it worked, thank you very much

Best posts made by CatABC
-
RE: How to draw the rename secondary confirmation window in PresetBrowserDialog?
-
When I clicking this button, a bug occurs
This prevents me from using this feature properly -
RE: Directly fade in and out samples from two samplers on one MIDI note?
@d-healey OK, thank you for your guidance. I think I can achieve the effect I want in the near future.
-
RE: Setting the alpha of a color individually?
@d-healey Ahaha,god,It's so simple
Feeling mine so stupid。,Thanks very much David, you solved my problem again. -
RE: User-defined background?
@Oli-Ullmann Yes, thank you very much for your help.
-
RE: How to set the text color of Combobox?
@mmprod They are universal, you just use LAF
-
RE: How to set the text color of Combobox?
@Oli-Ullmann cool,I don't know what I did wrong, my
g.setColour();
didn't work, but I deleted all the code and rewrote it according to the code snippet you gave, and it worked. I want to give you a hug to express my endless gratitude.
-
How to customize the sound library location interface?
How to customize the sound library location interface?
The button is too small, I wish it was bigger
Latest posts made by CatABC
-
RE: How do I connect a knob to a CC controller using code?
@VirtualVirgin Cool, thanks for your suggestion, it's very useful
-
RE: How do I connect a knob to a CC controller using code?
@d-healey Thanks a lot for the tip, I succeeded,
Treat you to watermelon, even though it's just an Emoji,But I really mean it.
local number = Message.getControllerNumber(); if (number == 1) { local ccValue = Message.getControllerValue(); Console.print(ccValue); local inputValue = ccValue / 127; Console.print(inputValue); knb1.setValue(inputValue); }
-
RE: HISE supports gif images
@dannytaurus For example, if I want to show the atmosphere of a PAD sound, I can use a dynamic picture of rain or waterfall, which will make you feel more vivid.
-
How do I connect a knob to a CC controller using code?
How do I connect a knob to a CC controller using code?
-
RE: HISE supports gif images
@LozPetts Thank you for the information. My idea is that if HISE can support dynamic images by itself, some image displays will become more vivid.
-
HISE supports gif images
When will the HISE image component support gif images?
-
RE: How to draw the rename secondary confirmation window in PresetBrowserDialog?
@d-healey I am using Content.createLocalLookAndFeel();
Tried your method and it worked, thank you very much -
How to draw the rename secondary confirmation window in PresetBrowserDialog?
How to draw the rename secondary confirmation window in PresetBrowserDialog?
if (obj.text == "Are you sure you want to replace the file ?") { obj.text = "replace the file"; g.fillAll(0x88000000); if(obj.over) g.fillAll(0x22000000); if(obj.down) g.fillAll(0x22000000); g.setFont("myhtw17", 25.0); g.setColour(Colours.white); g.drawAlignedText(obj.text, obj.area, "centred"); }
This hasn't changed anything
-
RE: How do I switch presets in the Preset Browser using buttons?
@d-healey Nice! I will try it. Thank you for providing me with learning materials.
-
How do I switch presets in the Preset Browser using buttons?
How can I use a button to switch presets in the preset browser and display the preset name in a Label?