HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Chazrox
    3. Posts
    • Profile
    • Following 6
    • Followers 5
    • Topics 147
    • Posts 1,239
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: GUI Design for amp sim

      @Yarost You have a few errors showing regarding your VU meter functions. Have you checked that everything is declared properly?

      Also, I think there is an 'Enable all peak meters" predef that you might have to put in your projects settings.

      If somebody remembers what that is can you please share. ...

      EDIT:

      Enable Peak Meters:
      https://forum.hise.audio/post/109684

      posted in Presets / Scripts / Ideas
      ChazroxC
      Chazrox
    • RE: Envelope follower intensity

      @Ben-Catman you can use an 'add' node. By default its set to 0-1 but you can right click and change min-max properties to your needs.

      posted in ScriptNode
      ChazroxC
      Chazrox
    • RE: Snippet: link and control multiple knobs

      @ustk The values of the sliders not clicked all reset to zero when you adjust a slider in the same group. Is that whats meant to happen?

      for instance:
      Screenshot 2025-10-25 at 6.31.08 PM.png

      posted in Snippet Waiting Room
      ChazroxC
      Chazrox
    • RE: Convertings problems

      @hyperphonias np! 🙏 Have a great day!

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Convertings problems

      @hyperphonias

      I think you want:

      if (value)
      {
          yourEqName.setValue(Engine.doubleToString(value, 1));
      }
      
      // In your 'gain' button control callback
      
      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Filmstrip disappears when compiling or exporting plugin

      @Yinxi lol I like this one

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Preset Browser Laf || Multi-line?

      @treynterrio Did you already have a LAF going for column background? If you didnt, you will have to draw it again yourself because now you're taking over the look and feel of that section.

      start with :

      g.drawRect(obj.area); 
      
      // or
      g.drawRoundedRectangle( obj.area, 6, 1.0);
      
      //etc. 
      
      
      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Preset Browser Laf || Multi-line?

      @treynterrio You're welcome!

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Preset Browser Laf || Multi-line?

      @treynterrio

      in your "drawPresetBrowserColumnBackground" LAF function, add this and adjust to your liking.

         		if (obj.text == "Select a Column")
         			{
         				obj.text = "";		
         				g.setFont("Proggy", 14);
         				g.setColour(Colours.withAlpha(obj.textColour, 0.5));
         				g.drawMultiLineText("SELECT A CATEGORY\r\n\TO THE LEFT", [75,86], 100, "centred", 2.0);
         			}
         		if (obj.text == "Add a Category")
         			{
         						obj.text = "";				
         				g.setFont("Proggy", 10);
         				g.setColour(Colours.withAlpha(obj.textColour, 0.5));
         				g.drawMultiLineText("SELECT A BANK\r\n\TO THE LEFT\r\n\OR CREATE A NEW\r\n\ CATEGORY BELOW\r\n\(CLICK '+' SIGN)", [a[2]/2 - 40,a[3] / 2 - 30], 80, "centred", 2.0);
         			}
         		if (obj.text == "Add a Preset")	
         			{
         				obj.text = "";		
         				g.setFont("Proggy", 10);
         				g.setColour(Colours.withAlpha(obj.textColour, 0.5));
         				g.drawMultiLineText("SELECT A CATEGORY\r\n\TO THE LEFT\r\n\OR CREATE A PRESET BELOW (USE '+' SIGN)", [a[2]/2 - 40,a[3] / 2 - 30], 80, "centred", 2.0);
         			} 	
      
      
      posted in Scripting
      ChazroxC
      Chazrox
    • HAVE A GREAT DAY! ⚡ ⚡ ⚡

      Just thought I'd hop on and wish everyone a great day! If you see this, I hope you're doing great! ⚡ ⚡ ⚡

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Audio Spike when loading a Neural Network node.

      GOAT activity. ☝

      posted in ScriptNode
      ChazroxC
      Chazrox
    • RE: Knob Web Studio

      @tsempire You're killin it. 👏 !

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: AudioFiles

      @Christoph-Hart noted.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Knob Web Studio

      @tsempire you been goin innnnn! 👏 👏

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: AudioFiles

      @Christoph-Hart

      @Christoph-Hart said in AudioFiles:

      20-30MB worth of IR samples.

      I have 40mb worth and its been exporting and working fine. 👍
      I actually had more before cleaning up.
      Screenshot 2025-10-21 at 9.45.41 AM.png

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Arpeggiator Sliderpacks for GUI operation / Mono Legato

      @Proteus1 lol no worries! It happens. 🤛

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Arpeggiator Sliderpacks for GUI operation / Mono Legato

      @Proteus1 click on your slider pack then scroll all the way down on the property editor.

      I see it there in your picture:
      Screenshot 2025-10-21 at 12.39.50 AM.png

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Arpeggiator Sliderpacks for GUI operation / Mono Legato

      @Proteus1

      POINT 1:

      As far as the slider packs go, you have to assign them by index. Scroll down on the property editor.

      Screenshot 2025-10-20 at 3.35.08 PM.png

      or by by scripting:

      SliderPackProcessor.getSliderPack(int sliderPackIndex)
      

      POINT 2: There are a few threads on the forum already where people figured this out. If you do a quick search you should be able to find it.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Setting UI values from a combobox - doesn't fall through to linked processorId+parameterId ??

      @Orvillain I was gonna suggest to try that but like....nah that cant be it. haha.

      posted in General Questions
      ChazroxC
      Chazrox