HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Chazrox
    3. Posts
    • Profile
    • Following 4
    • Followers 1
    • Topics 55
    • Posts 425
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: How to use CSS pan button with HISE

      @DabDab That would be cool. 👍

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Bypass Mac Security for DEMO'ing

      @orange Sweet. Thanks! We'll give this a try again tomorrow! 🙏

      posted in General Questions
      ChazroxC
      Chazrox
    • Bypass Mac Security for DEMO'ing

      I've seen somewhere on the forum a method to bypass Mac security using the command prompt dragging the plugin onto it.... Im trying to have a friend demo my plugin but we're stuck trying to get passed security the security block. Thanks in advance if you can help!

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: How to use CSS pan button with HISE

      @Gab Woah that was pretty smooth.... You're gewwd. 👏

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Knob Filmstrip wont rotate

      @d-healey I followed along and tried to replicate this and I noticed since 'show text box' is still ticked, the text box resizes and covers the knob when you recompile. So its good when you first resize the knob because the text box somehow keeps its smaller scale and is out of the way, but when you recompile that thing covers the whole button.

      posted in Bug Reports
      ChazroxC
      Chazrox
    • RE: My HISE choir

      @Simon Wow thats pretty impressive. I can only imagine the work on this. 👏 👏

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: R/L seperated sample loop points...

      Gettin crazy with the cheez wiz.

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Issues with Presets Using CurveEQ in Effect Slots

      @bendurso said in Issues with Presets Using CurveEQ in Effect Slots:

      Mm no idea hehe.

      🤣

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Adding a distortion knob

      @pcs800 I was saying similar things when I first came here. My advice is buckle down and learn a few things. HISE is very non-coder-user-friendly but a little bit of coding can take you a long way. All of the advanced features REQUIRE code. Subscribe to @d-healey 's Patreon and Youtube channel. You'll learn everything you need to get started! It helps so much, I have it programmed into my stream deck. lol.

      Screenshot 2025-05-02 at 11.29.17 AM.png

      When I first started I programmed all of these script "templates" to my stream deck controller so whenever I needed to "code", I just pressed one of these buttons with pre-saved scripts. These are basic and I can write them all from scratch now but this helped me out big time when I was just starting.

      Just sharing my personal noob-journey. lol. Keep going, learn, learn, learn. Good Luck! Happy Hising!

      @griffinboy the first plugin im releasing is a 24Channel Drum Machine w/ 9 Samplers and 3 Send FX + Comp/EQ settings for every channel. Ambitious?? AF! lol....I learned very fast that I had jumped in on the deep end but I didnt quit and now its done. Took me 4 months but Thanks to everyones help here on the forum we got there! Mind you, I came here with ZERO coding experience! 😢 <--Me when I first got here. lol

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Issues with Presets Using CurveEQ in Effect Slots

      @bendurso Dont mean to crowd you're post but im just curious...What does "FollowWorkspace" even do?

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Look and Feel value display issue

      @d-healey 🙏

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Look and Feel value display issue

      @Lindon Sweet. Thanks!

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Cost Of Operations?: License Fees?

      @HISEnberg Good read. 👍

      posted in General Questions
      ChazroxC
      Chazrox
    • RE: Is there a way to limit the scope of variables declared in a loop?

      @VirtualVirgin said in Is there a way to limit the scope of variables declared in a loop?:

      solution to limiting the scope of the variable to just the loop

      'local' means that its only local to that scope and should be able to use it again within another scope separately. If its being called outside of this inline function, you might have it declared somewhere else.

      When something like this is happening to me I use this and 'find all occurrences' of whatever you searching for. Its good just to be sure. (right click in the code editor to show this list)
      Screenshot 2025-05-01 at 8.32.49 PM.png

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Look and Feel value display issue

      @hyperphonias You could do this. Just write the .set("text" directly in the control callback for the knob. Thats unless you need it that way specifically. You're missing the name of your knob in the function (and a couple little things) which is why the knob isnt triggering the function. See below:

      After your LAF section, delete what you have there now and try this.

      const var ThresholdKnob = Content.getComponent("ThresholdKnob");
      const var LabelThreshold = Content.getComponent("LabelThreshold");
      
      inline function onThresholdKnobControl(component, value)
      {
      	if (value)
      	{
      		LabelThreshold.set("text", Math.round(value));
      	}	
      };
      Content.getComponent("ThresholdKnob").setControlCallback(onThresholdKnobControl);
      

      Can somebody tell me how to show the output in this format "00.00"?
      I only used Math.round to cut down the number of digits because its neater but I know its not ideal.

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Look and Feel value display issue

      @hyperphonias Whats your function? I think you're just missing a few things. Drop a snippet.

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Decibels --> Paint Routine 'Alpha'?

      @Chazrox gottem.

      const var Image8 = Content.getComponent("Image8");
      const var t4 = Engine.createTimerObject();
      const var InGain = Synth.getEffect("InGain");
      t4.setTimerCallback(function()
      {	
      	var v4 = InGain.getCurrentLevel([0,1]);
      	v4 = Engine.getDecibelsForGainFactor(v4);
      	if (v4 > -12)
      	{
      	Image8.setAlpha(v4 * v4 / 101);		
      	}
      	
      });
      
      t4.startTimer(11);
      

      Forum - Meter Image Working.gif

      posted in Scripting
      ChazroxC
      Chazrox
    • RE: Delay Tempo Sync

      @Tangerine_Sounds def gonna check this out..

      btw. Yeah default tempo is 120. There's this if you want to see Hise tempo information.

      Screenshot 2025-04-30 at 11.07.50 PM.png

      posted in Scripting
      ChazroxC
      Chazrox
    • Decibels --> Paint Routine 'Alpha'?

      Can someone help me with this paint routine? I just want to paint a panel and use 'decibelsForGainFactor' for Alpha values in my paint routine.

      I just want to to work like this, when the decibels are > -10db and < -12db, the panel blinks.

      Like one of these....
      Screenshot 2025-04-30 at 8.11.43 PM.png

      I dont need the peak meter, I just need this part to blink when it hits target level/threshold.
      Its just a rectangle behind the meter.
      Screenshot 2025-04-30 at 8.51.16 PM.png

      posted in Scripting
      ChazroxC
      Chazrox