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

    Posts

    Recent Best Controversial
    • RE: Script Oscilloscope Buffer Size

      @ustk ahh. makes sense. Thank you.

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Script Oscilloscope Buffer Size

      @ustk That was exactly what I needed. Thank You! As far as the dynamic part goes, I tried to create a reg for buffer length and change the value with a knob but im not getting any change.

      const var Knob4 = Content.getComponent("Knob4");
      
      reg bufferLengthNOW = 0;
      
      db.setRingBufferProperties(
      {
      	"BufferLength": bufferLengthNOW,
      	"NumChannels": 1
      });
      
      db2.setRingBufferProperties(
      {
      	"BufferLength": bufferLengthNOW,
      	"NumChannels": 1
      });
      
      
      include("LafOscilloscope.js");
      
      inline function onKnob4Control(component, value)
      {
      	if (value)
      	{
      		bufferLengthNOW = value;
      		FloatingTile1.sendRepaintMessage();
      	}
      };
      
      Content.getComponent("Knob4").setControlCallback(onKnob4Control);
      
      
      posted in Scripting
      ChazroxC
      Chazrox
    • Script Oscilloscope Buffer Size

      How can I increase the length of the buffer size of my oscilloscope inside of my scriptFX node?

      I change the number and its good for a little while until it decides to change back to default value "8192" again. Can I script this in onInit somehow to be a larger size?

      Screenshot 2026-05-05 at 1.38.59 AM.png

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Can we detect DAW marker points?

      @Lindon Still a good read either way. Good stuff to know. 🤛

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Can we detect DAW marker points?

      @Lindon Wow. Sick info. Thanks! This is all brand new to me. I'll give it a good read.

      posted in Scripting
      ChazroxC
      Chazrox
    • Can we detect DAW marker points?

      Is there a way that HISE can get a DAW's timeline marker/s information?

      I want to be able to access the names of the marker points and be able to trigger them similar to the plugin SETLIST.

      posted in Scripting
      ChazroxC
      Chazrox
    • 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