HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • O

      Package Fails gives user an error

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      40 Views
      O

      @d-healey I followed this method . Everything is working on my end except for one thing: the installer always shows 0 KB for the size of my data package. The samples are over 2GB but appears as 0 KB on the installer

    • MorphoiceM

      Multichannel state of things

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      3 Votes
      2 Posts
      24 Views
      lijas90L

      @Morphoice What was in this post worked for me.
      https://forum.hise.audio/topic/7488/multi-channel-multi-output-help/9

    • OrvillainO

      CSS :nth-child() supported???

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      2
      0 Votes
      2 Posts
      10 Views
      Felix WF

      Yes, it seems it doesn't support it.

      besides
      I would also like to request CSS animation functionality.😆

      @keyframes

      @Christoph-Hart

    • Oli UllmannO

      HISE as a 3D renderer

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      22
      6 Votes
      22 Posts
      1k Views
      Oli UllmannO

      @ulrik
      Great, thank you! :-)

    • dannytaurusD

      Finally compiling HISE locally on new MacBook! 🙌

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      4 Votes
      2 Posts
      25 Views
      ChazroxC

      @dannytaurus Yee! My macbook pro is maxed out so im good too but I’ve used a friends older slower computer for HISE and his is so slow I would’ve quit by now 😂. Great tools make a huge difference! Congrats!

    • N

      can we make delay node in script fx?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      87 Views
      ulrikU

      @Adam_G Did you enable the "allow compilation"?

      Skärmavbild 2025-11-30 kl. 17.38.35.png

      Here it compiles to a dll

    • D

      xcpretty Not Detected After Install on macOS Tahoe M1: Compiling Fails in HISE Export

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      32
      0 Votes
      32 Posts
      198 Views
      d.healeyD

      @DJJD12345 said in xcpretty Not Detected After Install on macOS Tahoe M1: Compiling Fails in HISE Export:

      Termail said this:

      How did you download the HISE source code?

    • B

      Custom reactive audio animation

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      61 Views
      ustkU

      @bwoogie Use a split node with two chains inside that will be your dry chain and your bands chain. In the band chain, insert another split with as many chains as you want bands inside. End that bands chain with a clear node so it’s not adding to the original dry chain signal of the outer split.
      In all "chain bands" place a filter and a global cable

    • dannytaurusD

      Can we draw panels out of the bounds of the plugin?

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

      @dannytaurus yes, if the menu list is longer than the ui it will be drawn outside of it, like in your image.

    • LindonL

      Globals, arrays and objects....

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      43 Views
      LindonL

      @Lindon nope that aint it...something else is broken...

      and its a line in my code..so that is the solution... just need to refer to Globals explicitly

    • Felix WF

      From vocals to musical instruments

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      104 Views
      Felix WF

      @Chazrox 😹

    • JulesVJ

      Scheduled knob task after initialization

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      94 Views
      JulesVJ

      @dannytaurus said in Scheduled knob task after initialization:

      @JulesV Interesting! What's the use case for this, if you don't mind me asking?

      It can actually be used for other purposes.

      But in my case, I'm actually using it for a bug workaround. When I buld a complex custom node with 23 parameters and use it in HardcodedFX, I noticed that in one parameter, the knob, wasn't getting its value during plugin initialization.

      However, after init, when the knob is tweaked, the value is updated. That's why I chose this method. Creating a custom node with fewer parameters isn't a problem, by the way. As the number of parameters increases in custom nodes, the problems increase.

    • lijas90L

      Script FX audio preview in HISE: is it possible?

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

      @lijas90 I usually chuck an Audio Loop Player in the module tree because it allows drag and drop of audio files to test with.

    • Felix WF

      Sampler.setSoundPropertyForSelection(); seems to have a bug.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      9
      0 Votes
      9 Posts
      148 Views
      Felix WF

      @Felix-W said in Sampler.setSoundPropertyForSelection(); seems to have a bug.:

      @CatABC said in Sampler.setSoundPropertyForSelection(); seems to have a bug.:

      @ulrik

      @d-healey said in Sampler.setSoundPropertyForSelection(); seems to have a bug.:

      @CatABC Use constants instead of magic numbers

      Sadly, I tried using constants, but the problem persists. Also, if I swap the positions of HIGH_KEY and LOW_KEY, and need to move the smaller value to the larger value, the contradiction still occurs.

      const var ComboBox1 = Content.getComponent("ComboBox1"); const var ROOT = 2; const var LOW_KEY = 3; const var HIGH_KEY = 4; const var C1 = 36; const var D1 = 38; const var E1 = 40; const var B3 = 71; inline function onComboBox1Control(component, value) { Sampler.selectSounds("C3"); if (value == 1) { Sampler.setSoundPropertyForSelection(ROOT, C1); Sampler.setSoundPropertyForSelection(HIGH_KEY, C1); Sampler.setSoundPropertyForSelection(LOW_KEY, C1); } if (value == 2) { Sampler.setSoundPropertyForSelection(ROOT, D1); Sampler.setSoundPropertyForSelection(HIGH_KEY,D1); Sampler.setSoundPropertyForSelection(LOW_KEY, D1); } if (value == 3) { Sampler.setSoundPropertyForSelection(ROOT, E1); Sampler.setSoundPropertyForSelection(HIGH_KEY,E1); Sampler.setSoundPropertyForSelection(LOW_KEY, E1); } if (value == 4) { Sampler.setSoundPropertyForSelection(ROOT, B3); Sampler.setSoundPropertyForSelection(LOW_KEY, B3); Sampler.setSoundPropertyForSelection(HIGH_KEY, B3); } }; Content.getComponent("ComboBox1").setControlCallback(onComboBox1Control);

      Ultimately, I set up two methods to call different methods depending on whether the value in the combobox increases or decreases.😹

      Wow, this method is so cool! Thank you for the code comments; they really enlightened me.

    • E

      How to add a new tab ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      46 Views
      d.healeyD

      @Elisee18 I have an old video showing a method of doing this (it requires scripting)

      https://youtu.be/_s7LTRz8pEc

    • A

      Modules Not Nesting In Containers

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

      @Ajak said in Modules Not Nesting In Containers:

      the windows are driving me mad

      You can build out your module tree in the sidebar, you don't need to open the windowed view.

    • pcs800P

      Splitting incoming signal

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      169 Views
      LindonL

      @pcs800 well 95 samples would make hardly any difference at all... whats the measured latency of your plugin?

      oh hang on youve already said:

      95.9ms, that's great. But how do I get the plugin to report that to the daw?

      Go read what @ustk said above.....

    • ulrikU

      Using Bang and Blend nodes

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      6
      0 Votes
      6 Posts
      234 Views
      LindonL

      @HaizalD3 bot.

    • L

      All Exports and Compilations Crashing

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      129 Views
      L

      @d-healey Ah!! Well that can't be good. Sorry about the speakers. I'll have a read of the documentation and get to grips with scriptnode first, I've taken up more than enough of your time. Thank you very much for all your help.

    • ulrikU

      scroll event for script panel mouse callback

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      26
      7 Votes
      26 Posts
      8k Views
      HISEnbergH

      @HISEnberg Friendly bump on this !!