Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Chazrox
    3. Posts
    • Profile
    • Following 6
    • Followers 6
    • Topics 170
    • Posts 1,450
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: instrument plugin no sound

      @l8prod sus art 🤣

      posted in Bug Reports
      ChazroxC
      Chazrox
    • RE: Set Label Text on Preset Load?

      @David-Healey Thanks! I ended up figuring it out from an old post you advised on as well. lol. Attached the callback to a slider with 'save in preset' loaded that triggers the callback on preset load.

      posted in Scripting
      ChazroxC
      Chazrox
    • Set Label Text on Preset Load?

      Im trying to get the current user preset to show on my label when I load a preset in the stock preset browser.

      Desired action:

      1. load preset
      2. preset name drawn on label.

      I was trying setPostCallback() but Im not sure how that works exactly. Can anyone give me any tips please?

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Expansion wide preset search

      @David-Healey Killin it.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Asset Manager

      I feel like this is what everyone needs to fill in the gaps in development for some projects. 🔥 🔥

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Preset browser expansion installer

      Epic!

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Show value on knob, but not editable

      @David-Healey @svkpowa I was referring to this Spire example you posted which only needs one label no? js.

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Show value on knob, but not editable

      @svkpowa That was a major hack job tho tbh. You can do it a lot easier with script and a label. End user would never know the difference but just for your own sanity a simple script would have worked. There are enough posts about it floating around the forum to help you figure it out.

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: HISE Bootcamp - Full Course for Beginners

      @David-Healey Congrats! 🙏

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: MIDI device reselect bug?

      @dannytaurus second nature at this point.

      posted in Bug Reports
      ChazroxC
      Chazrox
    • RE: Design feedback - velocity indicators

      Looks great and makes sense to me. Tooltips for sure! 👍

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Colour Palette

      @dannytaurus I like this idea. I wouldn't mind it one bit! 🙏 ⚡

      posted in Feature Requests
      ChazroxC
      Chazrox
    • RE: Detect if Stereo or Multi-Output?

      I think you have to manually change the output amounts by connecting/disconnecting them via script using the routing manager api's.

      Do you already have something along the lines of this...

      
      const var routing = Synth.getRoutingMatrix("masterContainer"); 
      
      //this sets 12 outputs by default. 
      for(i=0; i < 12; i++)
      {
      	routing.addConnection(i,i); // 1 to 1 channel routing // Use this function to make connections. 
      	Console.print(i); // Check outputs.
      }
      
      

      See the docs for more options to clear and reset connections.

      https://docs.hise.dev/scripting/scripting-api/routingmatrix/index.html

      https://docs.hise.dev/scripting/scripting-api/routingmatrix/index.html

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Happy New Year! 🥳 🎉

      Happy New Year!

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Scriptnode filter.convolution – select External Audio File Slot from UI (ComboBox)?

      @David-Healey ahh duhh. long week. smh. I'll take 2 shirts please.

      posted in ScriptNode
      ChazroxC
      Chazrox
    • RE: Scriptnode filter.convolution – select External Audio File Slot from UI (ComboBox)?

      @filipalex96 fix your 'const var conv' to 'const var'

      Screenshot 2025-12-26 at 11.24.01 AM.png

      posted in ScriptNode
      ChazroxC
      Chazrox