
Best posts made by pelle
-
Loading Presets with a ComboBox
Hello everyone,
I have tried loading user presets via a combobox but every time HISE crashes... does anyone know why?This is my script
// PRESETS /////////////////////// const var Presets = Content.getComponent("Presets"); var menuItems = []; const var x = Engine.getUserPresetList(); for (i in x) menuItems.insert(-1, i); menuItems = menuItems.join("\n"); Presets.set("items", menuItems); inline function onPresetsControl(component, value) { Engine.loadUserPreset(Presets.getItemText() + ".preset"); }; Content.getComponent("Presets").setControlCallback(onPresetsControl);
Thanks
-
RE: Custom Sample Import Window
@DabDab Thanks!!! It works!
Do you know how to move the buttons?
-
RE: RNBO
Hi, I've tested RNBO last week, is really easy to use, you can check this vidseo:
https://www.youtube.com/watch?v=64dTcwnP40oBest,
F.
Latest posts made by pelle
-
Modifying the Knob Filmstrip Image via Script
Hi everyone,
I’m working on an animation that reacts to the keyboard and I've used some sliders to track and update the current frame. I’d like to change the knob filmstrip image from my script. Is this possible? If not, are there any alternative approaches you’d recommend?
I’ve tried swapping the slider with an Image object, but when the animation runs at higher speeds I sometimes see a "Missing" placeholder instead of the expected frame. Any suggestions to avoid this issue would be greatly appreciated.
Thanks in advance for your help,
F.
-
Customizing Sample Import Window Aesthetics
Hi everyone,
I was wondering if it's possible to customize the aesthetics of the sample import pop-up windows. Specifically, I'd like to either remove or replace the 'i' icon, and also modify the color scheme.
Thanks for your help! -
Is It Possible to Create an FX Plugin That Replaces Input Audio Based on Intensity?
Hi everyone,
I’m wondering if it’s possible to develop an FX plugin that detects the intensity (volume/dynamics) of an incoming audio signal and, based on that, triggers and replaces it with a predefined audio file.
The idea is that instead of just layering or triggering a sample (like in a drum replacer), the original input audio would be completely swapped out with the triggered file, depending on its intensity.
Thanks in advance,
-
RE: Shape Fx - pops and clicks
@DanH Thank you so much! I owe you a beer or a coffee!
;)
-
RE: Shape Fx - pops and clicks
@orange Yes I've used the routing matrix, I'll show you the complete routing scheme
-
Shape Fx - pops and clicks
Hello everyone,
I’ve noticed that in my plugin, when I toggle the ShapeFx on and off, it generates clicks and pops, even with no sound playing. This happens after the plugin is exported. I have four different ShapeFx effects that I toggle using a knob. I already tried using just one effect and changing the settings, but that made it worse. What can I do?
I also noticed that when I turn off a processor, the samples appear visually “trapped” in the buffer. I’ve attached a photo for reference.
-
RE: Click And Pop Sounds On Preset Change!!!
I've solved it setting the bias knobs of the Shape Fx to 0.0
-
RE: multi instrument.
@Robert-Puza If you want to switch instruments, you can use the sample map switching API connected to a UI callback. For more details, you can check out this video tutorial: https://www.youtube.com/watch?v=eQ7YvIeS5lY