• past months work

    10
    3 Votes
    10 Posts
    223 Views
    N

    @David-Healey ill search that tysm🫡😊

  • Reverse and DELAY Pitch

    2
    0 Votes
    2 Posts
    169 Views
    Oli UllmannO

    @ENIGMAONTHETRACK
    @HISEnberg was kind enough to implement a reverse delay in Max that you can use via RNBO in HISE. :-)

    Follow this link to find the code and everything you need to know about it:
    https://forum.hise.audio/topic/11445/free-reverse-delay-built-in-rnbo?_=1761381056172

  • Exported Plugin Works in HISE but Not in the DAW

    5
    0 Votes
    5 Posts
    83 Views
    YinxiY

    @David-Healey it worked, thanks for your help

  • Play an Audio File?

    8
    0 Votes
    8 Posts
    217 Views
    dannytaurusD

    @veryveryhaps The Audio Loop Player responds to MIDI like any other sound generator.

    If you only want to trigger it from the UI try playNoteFromUI. It's meant for triggering sound generators from UI elements. It simulates pressing a key on the virtual keyboard.

    There's also the cunningly-slightly-differently-named noteOffFromUI to stop playback.

    As for pausing playback and continuing from the same point, I'm not sure.

    const var loopNote = 60; const var channel = 1; inline function onPlayButton(component, value) { if (value) // button ON Synth.playNoteFromUI(channel, loopNote, 127); else // button OFF Synth.noteOffFromUI(channel, loopNote); } Content.getComponent("Button1").setControlCallback(onPlayButton);
  • Help! Automation image painting in panel

    5
    0 Votes
    5 Posts
    226 Views
    dannytaurusD

    @David-Healey Yeah, me too. But I thought for someone learning how to do the basics of optimising repetitive code into loops, I would just show the basic method.

    @goldee What David means, if we're talking about the same thing, is that you can get an array of components and loop through them directly, instead of fetching each one by name.

    const panels = Content.getAllComponents("instimg_pnl\\d+"); for (panel in panels) { panel.loadImage("{PROJECT_FOLDER}" + panel.getId() + ".png", "img"); panel.setPaintRoutine(function(g) { var a = this.getLocalBounds(0); g.drawImage("img", a, 0, 0); }); }
  • EHX Freeze pedal with scriptnode

    5
    0 Votes
    5 Posts
    249 Views
    J

    @ustk Ah I see. I have a working algorythm in Pure Data, is there a way to implement that in HISE as script och c++ code? In PlugData (a flavor of PD), you can export C++ code.

  • Display slider value with custom font, size, and position

    7
    0 Votes
    7 Posts
    795 Views
    ustkU

    Strange the slider value popup is not already in the LAF function list...

  • Standalone Crashing on Mac

    Unsolved
    1
    0 Votes
    1 Posts
    89 Views
    No one has replied
  • Host DAW for Pre-Compiled Plugin Version Constantly Crashing

    2
    0 Votes
    2 Posts
    69 Views
    David HealeyD

    @veryveryhaps Use the standalone version of HISE, and definitely compile it yourself, you don't need be particularly smart to do it, it's like everything - it's hard until it becomes easy.

    I show you all the steps in the free Bootcamp: https://audiodevschool.com/courses/hise-bootcamp/

  • Duplicate UI Elements without Keyboard?

    5
    0 Votes
    5 Posts
    116 Views
    V

    Nevermind, I think I fixed it! Thank you for the help!

  • Odd complied behavior of VST3 in DAW

    9
    0 Votes
    9 Posts
    424 Views
    dannytaurusD

    @JamesC Do you think it was a bug, or user error?

    If you can reproduce it in a minimal project and post a snippet, we could look into it further.

  • Understanding fundamental "bridging" between Scriptnote and Module Tree

    1
    0 Votes
    1 Posts
    65 Views
    No one has replied
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    1 Views
  • How to add an element after onInit

    3
    0 Votes
    3 Posts
    111 Views
    ustkU

    @daniloprates I don't think the dynamic component feature is ready yet.

    One way you can do is have a common parent panel, then add child panels to it dynamically following the layout your expansion requires. A child panel can be turned to any component like slider, label, or any more complex widget

  • Prevent Waveform Floating Tile paths clipping at the tile bounds

    1
    4 Votes
    1 Posts
    74 Views
    No one has replied
  • Trouble exporting audio files

    9
    0 Votes
    9 Posts
    268 Views
    T

    @David-Healey I solved it. I'm not sure what the problem was. It was all mono. I spent some time trying to narrow down exactly which sample was causing the issue, but it seemed to vary. In the end, I completely recreated and reconfigured the sample map. Thanks so much for your help, it showed me where to look.

  • I need help with export setup wizard and Visual Basic community 2026.

    3
    0 Votes
    3 Posts
    213 Views
    B

    @David-Healey Sorry, i misspoke! Yes, of course. I installed Visual Studio 2026 and have an iso for Visual Studio 2022. Thank you for the help. I'll get right to it! And i'll be checking out your HISE Tutorials as well! Thank you!

    Greets,
    Bolle

  • Silent Note (F3), Ghost Note Trigger on UI Focus, and Strum Start Delay

    Solved
    3
    0 Votes
    3 Posts
    158 Views
    M

    @David-Healey Thank you 🙌 It worked!! And also big thank you for all the other help and detailed tutorials on Youtube.

    Happy New Year to you, your family, and everyone here in the HISE community! Here is to a great 2026. 🥳🎆

  • exporting an older plugin i made no matter what i do?

    9
    0 Votes
    9 Posts
    294 Views
    David HealeyD

    @cemeterychips You need to recompile HISE using the version of the source that you have

  • This topic is deleted!

    16
    0 Votes
    16 Posts
    40 Views

27

Online

2.2k

Users

13.5k

Topics

117.4k

Posts