@Chazrox ok, that messed up my preset browser a bit. Do you know how I can get the column lines back? I tried using the draw function, but the lines aren't aligned properly.
Posts
-
RE: Preset Browser Laf || Multi-line?posted in Scripting
-
RE: Preset Browser Laf || Multi-line?posted in Scripting
@Chazrox how did you do that? I'm trying to change Add a Preset, Add a Category but I can't manage how I could do that
-
Can't Compile C++ effects in newest HISE branch anymore on MACposted in General Questions
Hi there, I've encountered a problem with compiling C++ modules inside of HISE in the newest branch on MAC.
here is the error:
Create files > Sorting include dependencies > Copying third party files > Compiling dll plugin > Re-saving file: /Users/ttt/Downloads/Griffin_ReverseDelays_2025-2/DspNetworks/Binaries/AutogeneratedProject.jucer > Finished saving: Visual Studio 2017 > Finished saving: Xcode (macOS) > Finished saving: Linux Makefile > Compiling Griffin_ReverseDelays ... > ** BUILD FAILED ** > CompileC /Users/ttt/Downloads/Griffin_ReverseDelays_2025-2/DspNetworks/Binaries/Builds/MacOSX/build/Griffin_ReverseDelays.build/Release/Griffin_ReverseDelays\ -\ Dynamic\ Library.build/Objects-normal/x86_64/Main.o /Users/ttt/Downloads/Griffin_ReverseDelays_2025-2/DspNetworks/Binaries/Source/Main.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Griffin_ReverseDelays - Dynamic Library' from project 'Griffin_ReverseDelays') > (1 failure) > > ----- xcbeautify -----I'm able to compile the effects in an older HISE version 4.0 but I can't export them as a Plugin and now I'm not able to compile these inside my project to use them in script node.
-
RE: Handling Unloaded Effects in MasterFX Script Without Errorsposted in General Questions
@HISEnberg thank you! I'll have a look now
-
Handling Unloaded Effects in MasterFX Script Without Errorsposted in General Questions
Hi there,
I’m working on a project where I have 3 HardcodedMasterFX modules. I have a total of 10 effects that can be loaded into these three modules via comboboxes in the UI.
My question is: How can I make sure that my control sliders still work without causing errors, even if a specific effect is mentioned in the script but hasn’t been loaded into the HardcodedMasterFX?
Right now, if the effect module isn’t loaded, the script throws an error because it can’t find the referenced module. Is there a way to check if a module exists before trying to access its parameters, or to make the script more flexible for such cases?
-
RE: need a perfect Pitch Shifterposted in General Questions
@griffinboy I haven't talked about "realtime" pitch shifting. The most important thing is that it sounds at least as good as the pitch modulation in HISE. That the pitch can glide up and down without artifacts or metallic overtones.
-
need a perfect Pitch Shifterposted in General Questions
Hi there, can anyone help me with a Pitch Shifter -24 semitones and +24 semitones. - goes slower with every semitones and + goes faster with every semitone. I need a clear pitch without a delay or metallic artifacts. C++ or RNBO
I need it for Pitch Modulation stuff
I would also pay for it
-
RE: Group Project: Reverse Delayposted in Presets / Scripts / Ideas
@griffinboy I would also be interested in the granular delay

-
RE: Group Project: Reverse Delayposted in Presets / Scripts / Ideas
@Orvillain I would be interested as well!
-
RE: Pitch Shifter (FAUST/RNBO/C++)posted in General Questions
@orange the pitch shift node is definitely better but there is a slight noise when playing some frequencies after 1.5 (but this can be fixed with a filter node straight after) and when I pitch down it destroys the entire sound and hise crashes.
-
RE: Pitch Shifter (FAUST/RNBO/C++)posted in General Questions
@orange no I'vent updated HISE for a couple months I should check that out
-
Pitch Shifter (FAUST/RNBO/C++)posted in General Questions
Hi there, does anyone have a good-sounding pitch shifter? I have a few Faust codes, but none of them sound good when you pitch high. I've tried two RNBO pitchers, but they have the same problem. I have some FAUST and RNBO effects to exchange. Thanks
-
RE: Pitch fxposted in General Questions
@HISEnberg Did you get the patch to work in hise? I get no mix or sound when I insert the patch into hise.
-
RE: presetbrowser searchbar visible in exported plugin on windowsposted in General Questions
@d-healey I've now updated HISE to the latest branch on windows and exported it again now it works
-
presetbrowser searchbar visible in exported plugin on windowsposted in General Questions
Hi there, I just exported my new plugin and tested it in FL Studio.I've noticed that the search bar in my preset browser is visible although he should be invisible. In the option it's set to false,. On Mac the searchbar isn't visible. is there anything else I could do to make it invisible?
thanks
-
RE: Preset Browser LAF (Add + Delete) Textposted in General Questions
@treynterrio here is the code I've used where I get Enter Preset Name on both options (Add + Delete)
laf.registerFunction("drawPresetBrowserDialog", function(g, obj) { var a = obj.area; var la = obj.labelArea; var h = 40; g.setColour(0xFF000000); g.fillRect([a[0] - 50, a[1] - 25, a[2] + 100, a[3] + 50]); g.setFont("arial", 13); g.setColour(0xFF000000); g.drawAlignedText("", [a[0], 50, a[2], 25], "centred"); if (obj.labelArea[2] != 0) { g.setColour(0xFFFFFFFF); g.fillRoundedRectangle([la[0] - 0, la[1], la[2] + 0, la[3]], 0); } else { g.drawAlignedText(obj.text, [a[0], a[1] + 40, a[2], 20], "centred"); } g.fillAll(noColour); g.setColour(0xFF000000); g.fillRoundedRectangle(obj.area, 0.0); g.setColour(0xFF141414); g.fillRoundedRectangle(obj.labelArea, 0.0); g.setColour(0xFFFFFFFF); g.setFont("Arial",16); g.drawAlignedText("Enter Preset Name :", removeFromTop(obj.area, 40), "centred"); -
RE: Preset Browser LAF (Add + Delete) Textposted in General Questions
@treynterrio I have made the two sentences visible again but I still don't understand in which obj.area (Are you sure you want to delete this file ?) is located

-
Preset Browser LAF (Add + Delete) Textposted in General Questions
Hi there, I'm struggling to set the Text in my Preset Folder when I click Add (Enter Preset Name) and/or Delete (Do you really want to delete this preset?)
I've managed to change it BUT it says on both Enter Preset Name or when I delete it it shows nothing.
Here is an example:


Does anyone know how I can fix this?