HISE Logo Forum
    • Categories
    • Register
    • Login
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • ChazroxC

      Background Task || Help me understand this please.

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting
      1
      0 Votes
      1 Posts
      7 Views
      No one has replied
    • R

      Control velocity from each incoming midi note with a Knob / Slider?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      9 Views
      d.healeyD

      @Rognvald

      Ok let's say your knob is called knbVelocity and you have a reference to it in onInit

      const knbVelocity = Content.getComponent("knbVelocity");

      In the onNoteOn callback you can use the knob's value to set the Message's velocity.

      Message.setVelocity(knbVelocity.getValue());

      Ideally this should be done using two MIDI processors. The Interface script should be deferred - which means you won't be able to use setVelocity there. A second MIDI processor should be used for setting the velocity, and the knob on the GUI should be connected the knob of the second MIDI processor.

    • iamlampreyI

      Ableton Automation can't do math?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      56 Views
      ChazroxC

      @iamlamprey Looks like the value is being normalized somewhere.

    • CatABCC

      How can I make KeySwitch trigger only once?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      33 Views
      d.healeyD

      @CatABC Is it necessary to repeat the KS code in the two separate scripts? Can it not work with a single key switch script and a couple of MIDI muters? That might simplify things.

    • T

      SNEX Distortion parameter not responding to ScriptFX knob connection

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      60 Views
      T

      @ustk
      Thanks for your help. I set the AllowCompilation flag in the DSP Network’s properties, compiled the network, and exported the DLL. The effect now works — but I’m still getting the prompt:
      “You don’t need to wrap the root node. Just tick the AllowCompilation flag in the properties, save this network and export the DLL.”

      Do you know why the prompt keeps appearing even after I’ve done that?
      I appreciate any guidance.
      Thanks again!

      Best,

      Capture d'écran 2025-11-08 013223.png Capture d'écran 2025-11-08 014654.png Capture d'écran 2025-11-08 175324.png

    • ustkU

      Modulation Matrix issues and improvements

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      5
      2 Votes
      5 Posts
      187 Views
      dannytaurusD

      @ustk Awesome! 😂

    • D

      Unlocker - How to use?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      87 Views
      ustkU

      @Dan-Korneff Did the same, seems robust enough 👍

    • dannytaurusD

      TooltipPanel new Fade and ShowIcon data properties (PR help please!)

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      7
      0 Votes
      7 Posts
      82 Views
      dannytaurusD

      @ustk Thanks for the pointer. I added another commit other than the PR to ensure the new props are shown in the Data section of the UI.

    • ChazroxC

      Syntax Error ?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      5
      0 Votes
      5 Posts
      54 Views
      ChazroxC

      @Lindon I havent gotten that one much before. I get whats happening now. 🙏

    • dannytaurusD

      Randomise start point of LFO Modulator?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      41 Views
      dannytaurusD

      @Oli-Ullmann By "free-running" I mean not reset on NoteOn events. And yeah, I found the IgnoreNoteOn parameter right after my last post 😂

      Thanks anyway! 🙌

    • ChazroxC

      Setting ControlCallback w/ Loops ?

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      17
      0 Votes
      17 Posts
      67 Views
      Oli UllmannO

      @d-healey
      Yes, that's right! Thanks for the tip! :-)

    • OrvillainO

      User presets not showing up in exported plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      84 Views
      d.healeyD

      @Orvillain Have you enabled the global app data folder on MacOS in project preferences?

    • LindonL

      Setting slider pack value at position(index) when its in a ScriptProcessor....

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      57 Views
      LindonL

      @d-healey thanks. I ended up going back to Globals and FixObjectArrays as Im actually using values all over the place...., it makes me shiver a bit but hey .....

    • It_UsedI

      Hise can't save hr file with hxi metadata.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      13
      0 Votes
      13 Posts
      232 Views
      It_UsedI

      @d-healey yeah

    • pcs800P

      Muting bands in a script fx network

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      145 Views
      ustkU

      @resonant Not on happening on my end but, perhaps just interfacing a control.smoothed_parameter can help.

    • whereami518W

      Wavetable Synth Crash on note played

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      39 Views
      ChazroxC

      @whereami518 Do you have anything scripted in onNoteOn?

    • RetromelonR

      CableBox

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      18
      0 Votes
      18 Posts
      224 Views
      RetromelonR

      Hey @Orvillan,

      No big deal if I didn’t know how to post a snippet. Better to ask than mess around blindly, right? I’m really new to coding, mostly picking it up bit by bit.

      I love making my own tools and plugins, experimenting with sounds, and sharing my stuff for free with the community. I started with Synthedit, but it’s not really modernized, so that’s why I decided to switch to HISE.

      Honestly, I’m mainly a music producer, graphic designer, and sound engineer, and I want to put all of my passions together to create the plugins that I want to make. Since coding isn’t one of my skills, I have no choice but to learn it step by step to help me further with plugin development, since HISE requires some coding knowledge to work around.

    • DanHD

      License Manager (Wordpress) Deactivation help

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      175 Views
      It_UsedI

      @Christoph-Hart Thanks, I just don't know how to make my problem noticed, it doesn't bother me, but I had no other way out. I could write to you in private messages, but that's even worse than doing it in another post. I heard you, thanks again, and sorry again!

    • dannytaurusD

      Imgur not working in the UK is really starting to piss me off! 😂

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      2 Votes
      7 Posts
      81 Views
      dannytaurusD

      @Christoph-Hart 😂😂😂

    • S

      Compile errors on Ubuntu 24.04

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      15
      0 Votes
      15 Posts
      168 Views
      S

      @d-healey Thanks David - that worked and I was able to compile the DebugWithFaust version and run it....
      Now to try a ReleaseWith Faust.....
      Thanks again for your time, help and patience 😁