XD
Just do 'File' -> 5th item 'Replace with clipboard content' and here you go :D
Best posts made by Dark Boubou
-
RE: placing preset list/output meter. samplemap and compressor?'s
-
RE: placing preset list/output meter. samplemap and compressor?'s
And if you want a preset navigator, it's not a combobox you have to use :D
-
A simple delete function?
Hum... Is there no way to delete simply a knob we added?
I have a lot of functions linked to knobs, I want removes knobs to change functions.
This is really labourious to try recognize what belongs to what. It shows me tons of error messages, it gets me really angry.
I guess you have added a function.
Where is it? -
RE: Example of how to control modulator intensity
This works too :)
OnInit:
const var knbPitch = Content.addKnob("pitch", 32, 0); knbPitch.setRange(-12, 12, 1); const var pitchMod = Synth.getModulator("Pitch Wheel Modulator");
OnControl:
case knbPitch: pitchMod.setIntensity(value);
-
RE: Enter data address in item (combobox)
Ah :) Problem solved! (Thanks D.Healey ^^ )
-
RE: Some indications to make small popup
Thank you so much Christoph!
Just have to adapt it now! Thank you thank you thank you! :)
Latest posts made by Dark Boubou
-
RE: i need a freelance developer for my plugin
Hahaha me too!
It's ambitious for people not really used to code, and compared with some others, HISE is far from the simplest VST creator ^^
So instead (because everyone here is yet very busy with their own code), you should have a look to Maize Sampler 2, very fast and simple to make a sample-based vst, or SynthEdit which is just a paradise of simplicity and unlimited creating tool for everyone, for synth-based VST.
But at some point you will realize that other editors are not as modular as HISE - since with HISE you code your own things how you want them to be.So maybe start with lighter, and then get ready to lose your hair xD
What's your VST about? -
Sort of 'main samples-start'?
It's a complex thing because of the loop lenghts and starting time, so I guess there's no solution,
But is it possible to have a function that makes the whole samplemap starts at a different point? -
RE: A-440 generator
I found something better than Synth.noteOffByEventId() !
Just have to assign the button to Sine Wave Generator, and then connect to 'gain'.
0=no volume, 1= volume :)
Thx :D -
RE: About labels -> get value
Nice!
And one more question:
If I use a personnal font stored in my computer, will it saves the font while exporting?
Should I put the font file somewhere in the Project Folder? -
About labels -> get value
Hey :) I did a long break :D
Well I have an interrogation.
I have a knob (Midi channel selecter), and next to, a label displaying the value selected by that knob.
But... the problem is that I don't know how about linking the value as the text.
I did this but of course it doesn't work:// [JSON MIDIDisplay] Content.setPropertiesFromJSON("MIDIDisplay", { "text": ScriptLabel.getValue(MidiChan) override "width": 99, "height": 34, "fontName": "Digital-7 Mono", "fontSize": 21, "multiline": false }); // [/JSON MIDIDisplay]
Well I don't understand that 'override' and even without it it doesnt' work :)
Perhaps should I do an OnControl function?
Thanks,
D.B. -
A-440 generator
Well I have a blank space on my GUI but I have already almost all functions possible, so I'm looking for a not very important thing: make an A-440 button generator, as on the Minimoog:
See there's an A-440 button :D
I have added a sine wave synth with my sampler but I don't know how to make it like this:
- Not affected by midi notes played
- No envelope at all: a single note played non-stop (The sound will be cut with the button)
I have yet an idea to cut the volume while clicing on the button on/off, but not for the two things just above.
Can I have your help?
Thanks.D.B.
-
RE: Example of how to control modulator intensity
Used a bit differently :P
I'm pretty sure you put the code in another interface by purpose ^^ -
RE: Example of how to control modulator intensity
This works too :)
OnInit:
const var knbPitch = Content.addKnob("pitch", 32, 0); knbPitch.setRange(-12, 12, 1); const var pitchMod = Synth.getModulator("Pitch Wheel Modulator");
OnControl:
case knbPitch: pitchMod.setIntensity(value);