HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Dark Boubou
    • Profile
    • Following 0
    • Followers 0
    • Topics 21
    • Posts 87
    • Groups 0

    Dark Boubou

    @Dark Boubou

    9
    Reputation
    673
    Profile views
    87
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Website soundcloud.com/mooggy-vjn
    Location Paris, France

    Dark Boubou Unfollow Follow

    Best posts made by Dark Boubou

    • RE: placing preset list/output meter. samplemap and compressor?'s

      XD
      Just do 'File' -> 5th item 'Replace with clipboard content' and here you go :D

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • 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

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • 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?

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • RE: Need help with sampler...

      Thank you so muck D.Healey!

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • RE: There's a snake in my flute!

      omg bravo D.Healey!

      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • 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);
      
      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • RE: Example of how to control modulator intensity

      :D Thanks!

      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • RE: Enter data address in item (combobox)

      Ah :) Problem solved! (Thanks D.Healey ^^ )

      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • RE: Some indications to make small popup

      Thank you so much Christoph!
      Just have to adapt it now! Thank you thank you thank you! :)

      posted in Scripting
      Dark BoubouD
      Dark Boubou

    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?

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • 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?

      posted in General Questions samplestart samplemap
      Dark BoubouD
      Dark Boubou
    • 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

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • 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?

      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • 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.

      posted in Scripting label getvalue
      Dark BoubouD
      Dark Boubou
    • RE: A-440 generator

      Thanks I'll try that :)

      posted in General Questions
      Dark BoubouD
      Dark Boubou
    • 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:

      Moog

      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.

      posted in General Questions sine wave generator a-440
      Dark BoubouD
      Dark Boubou
    • RE: There's a snake in my flute!

      omg bravo D.Healey!

      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • 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 ^^

      posted in Scripting
      Dark BoubouD
      Dark Boubou
    • 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);
      
      posted in Scripting
      Dark BoubouD
      Dark Boubou